Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit dded122

Browse files
committed
1.19.0
1 parent 7a25f14 commit dded122

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.19.0
2+
* Add additional_processor_response to transaction
3+
14
## 1.18.1
25
* Allow payee_email to be passed in options params for Transaction create
36

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "braintree",
3-
"version" : "1.18.1",
3+
"version" : "1.19.0",
44
"description" : "A library for integrating with Braintree.",
55
"keywords" : ["payments"],
66
"homepage" : "http://github.com/braintree/braintree_node",

spec/integration/braintree/transaction_gateway_spec.coffee

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ describe "TransactionGateway", ->
438438
assert.isFalse(response.success)
439439
assert.equal(response.transaction.amount, '2000.00')
440440
assert.equal(response.transaction.status, 'processor_declined')
441+
assert.equal(response.transaction.additionalProcessorResponse, '2000 : Do Not Honor')
441442

442443
done()
443444

src/braintree.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ connect = (config) ->
2121
new BraintreeGateway(new Config(config))
2222

2323
exports.connect = connect
24-
exports.version = '1.18.1'
24+
exports.version = '1.19.0'
2525
exports.Environment = Environment
2626
exports.errorTypes = errorTypes
2727

0 commit comments

Comments
 (0)