Received: by mail.netbsd.org (Postfix, from userid 605) id 33A5D84FCE; Sun, 22 Aug 2021 14:53:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6D2EE84E6A for ; Sun, 22 Aug 2021 14:53:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 71Uaree3B8cq for ; Sun, 22 Aug 2021 14:53:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9CC0C84E62 for ; Sun, 22 Aug 2021 14:53:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95F0DFA97; Sun, 22 Aug 2021 14:53:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1629644020141270" MIME-Version: 1.0 Date: Sun, 22 Aug 2021 14:53:40 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/finance/ruby-braintree To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210822145340.95F0DFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1629644020141270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Aug 22 14:53:40 UTC 2021 Modified Files: pkgsrc/finance/ruby-braintree: Makefile PLIST distinfo Log Message: finance/ruby-braintree: update to 4.4.0 4.2.0 (2021-06-21) * Add default? to PaymentMethodNonce (thanks @klouvas) * Add error code TaxAmountIsRequiredForAibSwedish for attribute tax_amount in transaction key for AIB:Domestic Transactions in Sweden 4.3.0 (2021-07-15) * Add a log message to the ArgumentError at TransactionGateway.find * Add exchange_rate_quote_id to Transaction.create * Add error code ExchangeRateQuoteIdTooLong to Transaction * Add the following fields to ApplePayCard and GooglePayCard: - commercial - debit - durbin_regulated - healthcare - payroll - prepaid - product_id - country_of_issuance - issuing_bank * Add the following fields to PayPalDetails: - tax_id - tax_id_type 4.4.0 (2021-08-05) * Sanitize encrypted_card_data logs * Add LocalPaymentExpired and LocalPaymentFunded webhook notification support To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/finance/ruby-braintree/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/finance/ruby-braintree/PLIST cvs rdiff -u -r1.9 -r1.10 pkgsrc/finance/ruby-braintree/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1629644020141270 Content-Disposition: inline Content-Length: 3474 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/finance/ruby-braintree/Makefile diff -u pkgsrc/finance/ruby-braintree/Makefile:1.8 pkgsrc/finance/ruby-braintree/Makefile:1.9 --- pkgsrc/finance/ruby-braintree/Makefile:1.8 Thu Jun 3 14:44:21 2021 +++ pkgsrc/finance/ruby-braintree/Makefile Sun Aug 22 14:53:40 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2021/06/03 14:44:21 taca Exp $ +# $NetBSD: Makefile,v 1.9 2021/08/22 14:53:40 taca Exp $ -DISTNAME= braintree-4.1.0 +DISTNAME= braintree-4.4.0 CATEGORIES= finance MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/finance/ruby-braintree/PLIST diff -u pkgsrc/finance/ruby-braintree/PLIST:1.7 pkgsrc/finance/ruby-braintree/PLIST:1.8 --- pkgsrc/finance/ruby-braintree/PLIST:1.7 Thu Jun 3 14:44:21 2021 +++ pkgsrc/finance/ruby-braintree/PLIST Sun Aug 22 14:53:40 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2021/06/03 14:44:21 taca Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/08/22 14:53:40 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/LICENSE ${GEM_LIBDIR}/braintree.gemspec @@ -59,6 +59,8 @@ ${GEM_LIBDIR}/lib/braintree/granted_paym ${GEM_LIBDIR}/lib/braintree/graphql_client.rb ${GEM_LIBDIR}/lib/braintree/http.rb ${GEM_LIBDIR}/lib/braintree/local_payment_completed.rb +${GEM_LIBDIR}/lib/braintree/local_payment_expired.rb +${GEM_LIBDIR}/lib/braintree/local_payment_funded.rb ${GEM_LIBDIR}/lib/braintree/local_payment_reversed.rb ${GEM_LIBDIR}/lib/braintree/merchant.rb ${GEM_LIBDIR}/lib/braintree/merchant_account.rb @@ -225,10 +227,13 @@ ${GEM_LIBDIR}/spec/unit/braintree/error_ ${GEM_LIBDIR}/spec/unit/braintree/errors_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/http_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/local_payment_completed_spec.rb +${GEM_LIBDIR}/spec/unit/braintree/local_payment_expired_spec.rb +${GEM_LIBDIR}/spec/unit/braintree/local_payment_funded_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/merchant_account_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/modification_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/payment_method_nonce_details_payer_info_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/payment_method_nonce_details_spec.rb +${GEM_LIBDIR}/spec/unit/braintree/payment_method_nonce_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/payment_method_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/paypal_account_spec.rb ${GEM_LIBDIR}/spec/unit/braintree/resource_collection_spec.rb Index: pkgsrc/finance/ruby-braintree/distinfo diff -u pkgsrc/finance/ruby-braintree/distinfo:1.9 pkgsrc/finance/ruby-braintree/distinfo:1.10 --- pkgsrc/finance/ruby-braintree/distinfo:1.9 Thu Jun 3 14:44:21 2021 +++ pkgsrc/finance/ruby-braintree/distinfo Sun Aug 22 14:53:40 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2021/06/03 14:44:21 taca Exp $ +$NetBSD: distinfo,v 1.10 2021/08/22 14:53:40 taca Exp $ -SHA1 (braintree-4.1.0.gem) = 49efcce0554c5835000b5ddcb9832dc66b40bfca -RMD160 (braintree-4.1.0.gem) = 5cc65ec52167d51dd68eb15c99c50c1e4032b50d -SHA512 (braintree-4.1.0.gem) = 597142b5ec9319562fef420020c8c70a14b54071386e81ee5ef684ead88f54c36fcd44490da540b55ef911fdedd2e8c496991c4c6cb5b88255114b050e461c56 -Size (braintree-4.1.0.gem) = 222208 bytes +SHA1 (braintree-4.4.0.gem) = 74178edcc626d12f36625c09869536e3b34863eb +RMD160 (braintree-4.4.0.gem) = 34e1d21d6c8dab91fd0c077800017860ea9ebb36 +SHA512 (braintree-4.4.0.gem) = 62ddd01df2b7c988c26c810c2f323b9fff40f427641a54bfdba738948a7011dc6fec8a4f5fe1f750e473bbfa10e0731e507b9d4ed5e01fb162b49c994c1d2214 +Size (braintree-4.4.0.gem) = 223744 bytes --_----------=_1629644020141270--