pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/finance/ruby-braintree
Module Name: pkgsrc
Committed By: taca
Date: Tue Oct 28 13:52:46 UTC 2025
Modified Files:
pkgsrc/finance/ruby-braintree: Makefile PLIST distinfo
Log Message:
finance/ruby-braintree: update to 4.33.0
4.31.0 (2025-10-06)
* Add Bank Account Instant Verification Gateway with JWT creation support
* Add ACH mandate support to transactions with ach_mandate_text and
ach_mandate_accepted_at fields in us_bank_account
* Add InstantVerificationAccountValidation method to
UsBankAccountVerification::VerificationMethod
* Add ach_reject_reason to Transaction
* Add sender and receiver to transfer in Transaction
* Add is_device_token to ApplePayCard and ApplePayDetails
4.32.0 (2025-10-23)
* Add payment_account_reference to Transaction::ApplePayDetails,
Transaction::GooglePayDetails, Transaction::CreditCardDetails, and
CreditCardVerification
* Add processing_merchant_category_code in Transaction
* Add missing transfer validation error codes in Transaction
* Replace libxml-ruby with nokogiri to address JRuby incompatability
4.33.0 (2025-10-25)
* Switch from libxml-ruby to Nokogiri to allow use with JRuby.
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/finance/ruby-braintree/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/finance/ruby-braintree/PLIST
cvs rdiff -u -r1.33 -r1.34 pkgsrc/finance/ruby-braintree/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/finance/ruby-braintree/Makefile
diff -u pkgsrc/finance/ruby-braintree/Makefile:1.30 pkgsrc/finance/ruby-braintree/Makefile:1.31
--- pkgsrc/finance/ruby-braintree/Makefile:1.30 Mon Aug 11 15:11:45 2025
+++ pkgsrc/finance/ruby-braintree/Makefile Tue Oct 28 13:52:46 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.30 2025/08/11 15:11:45 taca Exp $
+# $NetBSD: Makefile,v 1.31 2025/10/28 13:52:46 taca Exp $
-DISTNAME= braintree-4.30.0
+DISTNAME= braintree-4.33.0
CATEGORIES= finance
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
Index: pkgsrc/finance/ruby-braintree/PLIST
diff -u pkgsrc/finance/ruby-braintree/PLIST:1.21 pkgsrc/finance/ruby-braintree/PLIST:1.22
--- pkgsrc/finance/ruby-braintree/PLIST:1.21 Mon Aug 11 15:11:45 2025
+++ pkgsrc/finance/ruby-braintree/PLIST Tue Oct 28 13:52:46 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.21 2025/08/11 15:11:45 taca Exp $
+@comment $NetBSD: PLIST,v 1.22 2025/10/28 13:52:46 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/LICENSE
${GEM_LIBDIR}/braintree.gemspec
@@ -16,6 +16,9 @@ ${GEM_LIBDIR}/lib/braintree/apple_pay_ca
${GEM_LIBDIR}/lib/braintree/apple_pay_gateway.rb
${GEM_LIBDIR}/lib/braintree/apple_pay_options.rb
${GEM_LIBDIR}/lib/braintree/authorization_adjustment.rb
+${GEM_LIBDIR}/lib/braintree/bank_account_instant_verification_gateway.rb
+${GEM_LIBDIR}/lib/braintree/bank_account_instant_verification_jwt.rb
+${GEM_LIBDIR}/lib/braintree/bank_account_instant_verification_jwt_request.rb
${GEM_LIBDIR}/lib/braintree/base_module.rb
${GEM_LIBDIR}/lib/braintree/bin_data.rb
${GEM_LIBDIR}/lib/braintree/client_token.rb
@@ -188,11 +191,10 @@ ${GEM_LIBDIR}/lib/braintree/webhook_test
${GEM_LIBDIR}/lib/braintree/webhook_testing_gateway.rb
${GEM_LIBDIR}/lib/braintree/xml.rb
${GEM_LIBDIR}/lib/braintree/xml/generator.rb
-${GEM_LIBDIR}/lib/braintree/xml/libxml.rb
+${GEM_LIBDIR}/lib/braintree/xml/nokogiri.rb
${GEM_LIBDIR}/lib/braintree/xml/parser.rb
${GEM_LIBDIR}/lib/braintree/xml/rexml.rb
${GEM_LIBDIR}/lib/ssl/api_braintreegateway_com.ca.crt
-${GEM_LIBDIR}/lib/ssl/securetrust_ca.crt
${GEM_LIBDIR}/spec/fixtures/files/bt_logo.png
${GEM_LIBDIR}/spec/fixtures/files/gif_extension_bt_logo.gif
${GEM_LIBDIR}/spec/fixtures/files/malformed_pdf.pdf
@@ -201,6 +203,7 @@ ${GEM_LIBDIR}/spec/integration/braintree
${GEM_LIBDIR}/spec/integration/braintree/address_spec.rb
${GEM_LIBDIR}/spec/integration/braintree/advanced_search_spec.rb
${GEM_LIBDIR}/spec/integration/braintree/apple_pay_spec.rb
+${GEM_LIBDIR}/spec/integration/braintree/bank_account_instant_verification_spec.rb
${GEM_LIBDIR}/spec/integration/braintree/braintree_gateway_spec.rb
${GEM_LIBDIR}/spec/integration/braintree/client_api/client_token_spec.rb
${GEM_LIBDIR}/spec/integration/braintree/client_api/spec_helper.rb
@@ -255,6 +258,8 @@ ${GEM_LIBDIR}/spec/ssl/geotrust_global.c
${GEM_LIBDIR}/spec/ssl/privateKey.key
${GEM_LIBDIR}/spec/unit/braintree/address_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/apple_pay_card_spec.rb
+${GEM_LIBDIR}/spec/unit/braintree/bank_account_instant_verification_gateway_spec.rb
+${GEM_LIBDIR}/spec/unit/braintree/bank_account_instant_verification_jwt_request_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/base_module_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/client_token_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/configuration_spec.rb
@@ -326,6 +331,7 @@ ${GEM_LIBDIR}/spec/unit/braintree/transa
${GEM_LIBDIR}/spec/unit/braintree/transaction/paypal_details_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/transaction/sepa_direct_debit_account_details_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/transaction/visa_checkout_card_details_spec.rb
+${GEM_LIBDIR}/spec/unit/braintree/transaction_ach_mandate_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/transaction_gateway_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/transaction_search_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/transaction_spec.rb
@@ -339,7 +345,7 @@ ${GEM_LIBDIR}/spec/unit/braintree/valida
${GEM_LIBDIR}/spec/unit/braintree/venmo_profile_data_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/visa_checkout_card_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/webhook_notification_spec.rb
-${GEM_LIBDIR}/spec/unit/braintree/xml/libxml_spec.rb
+${GEM_LIBDIR}/spec/unit/braintree/xml/nokogiri_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/xml/parser_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/xml/rexml_spec.rb
${GEM_LIBDIR}/spec/unit/braintree/xml_spec.rb
Index: pkgsrc/finance/ruby-braintree/distinfo
diff -u pkgsrc/finance/ruby-braintree/distinfo:1.33 pkgsrc/finance/ruby-braintree/distinfo:1.34
--- pkgsrc/finance/ruby-braintree/distinfo:1.33 Mon Aug 11 15:11:45 2025
+++ pkgsrc/finance/ruby-braintree/distinfo Tue Oct 28 13:52:46 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.33 2025/08/11 15:11:45 taca Exp $
+$NetBSD: distinfo,v 1.34 2025/10/28 13:52:46 taca Exp $
-BLAKE2s (braintree-4.30.0.gem) = 29661f8c530d3c4c7570963333897d7e234cd7f46715f7050dbcb380d03f254b
-SHA512 (braintree-4.30.0.gem) = 1b8cf5818b4c2b215f46f4695acc8ccf9cdaff46a3e402b3c081b2e9df8fc6f0fad995bef243e2f66c7adf7959717b770afb7c70c9e183fc667c8fd93b600aa5
-Size (braintree-4.30.0.gem) = 270848 bytes
+BLAKE2s (braintree-4.33.0.gem) = 090585cde19bdf89f14e3c28ab81d9ed338f32b583195e73e09c8f3e1fab4a69
+SHA512 (braintree-4.33.0.gem) = ce7e95fc71e70a9ba439555118d5d52cf070593a74122547643cb3f00fb56373270af641a39625a0ac3fb08f69616dafb8efbb9d59ebe45d0d11c36ea8273937
+Size (braintree-4.33.0.gem) = 275968 bytes
Home |
Main Index |
Thread Index |
Old Index