From 1fa9027b07ec37506c0203e91ec6da7dd1ba7d1b Mon Sep 17 00:00:00 2001 From: Michael Broshi Date: Tue, 10 Mar 2026 20:23:06 -0400 Subject: [PATCH] Bump version to 18.4.2 --- CHANGELOG.md | 5 +++++ VERSION | 2 +- lib/stripe/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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