diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d1eb74f1..c86db0a9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## 18.4.2 - 2026-03-10 +* [#1811](https://github.com/stripe/stripe-ruby/pull/1811) Retry on Net::HTTPFatalError + - Fixes a bug where `Net::HTTPFatalError` errors were being thrown and not retried (unlike other 5xx responses from the Stripe API) + + ## 18.4.1 - 2026-03-06 * [#1805](https://github.com/stripe/stripe-ruby/pull/1805) Add Stripe-Request-Trigger header * [#1803](https://github.com/stripe/stripe-ruby/pull/1803) Add agent information to UserAgent diff --git a/VERSION b/VERSION index de473bd69..e5096b2fc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -18.4.1 +18.4.2 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index b3da947d9..4ec0df909 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "18.4.1" + VERSION = "18.4.2" end