Skip to content

Commit d76bd0f

Browse files
committed
Bump version to 18.0.0
1 parent 04d1313 commit d76bd0f

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
# Changelog
2+
## 18.0.0 - 2025-11-18
3+
This release changes the pinned API version to `2025-11-17.clover`.
4+
5+
* [#1729](https://github.com/stripe/stripe-ruby/pull/1729) Update generated code
6+
* ⚠️ Remove support for `gt`, `gte`, `lt`, and `lte` on `V2::Core::EventListParams` in favor of `created`.
7+
* [#1727](https://github.com/stripe/stripe-ruby/pull/1727) Update v2 array parameter serialization to use indexed format
8+
- `Retrieve` and `List` calls for `/v2` endpoints now use indexed format (e.g., `?include[0]=foo&include[1]=bar`) instead of repeated parameter format (e.g., `?include=foo&include=bar`) when communicating with the Stripe API. This may break any unit tests that expect the latter behavior when setting up a mock server. Instead, they should now expect the former.
9+
* [#1725](https://github.com/stripe/stripe-ruby/pull/1725) Update generated code
10+
* Add support for new resources `Tax::Association` and `Terminal::OnboardingLink`
11+
* Add support for `find` method on resource `Tax::Association`
12+
* Add support for `create` method on resource `Terminal::OnboardingLink`
13+
* Add support for `payment_method_configuration` on `BillingPortal::Configuration::Feature::PaymentMethodUpdate`
14+
* Add support for `transaction_id` on `Charge::PaymentMethodDetail::Ideal`, `PaymentAttemptRecord::PaymentMethodDetail::Ideal`, and `PaymentRecord::PaymentMethodDetail::Ideal`
15+
* Add support for `created` on `CustomerCustomerBalanceTransactionListParams` and `InvoicePaymentListParams`
16+
* Add support for `account_numbers` on `FinancialConnections::Account`
17+
* Change type of `FinancialConnections::Session.client_secret` from `string` to `nullable(string)`
18+
* Add support for `fraud_risk` on `Issuing::AuthorizationCreateParams::RiskAssessment`
19+
* Add support for `latest_fraud_warning` on `Issuing::Card`
20+
* Add support for `hooks` on `PaymentIntentCaptureParams`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentIncrementAuthorizationParams`, `PaymentIntentUpdateParams`, and `PaymentIntent`
21+
* Add support for `mb_way` and `twint` on `Refund::DestinationDetail`
22+
223
## 17.2.0 - 2025-11-05
324
* [#1721](https://github.com/stripe/stripe-ruby/pull/1721) Update generated code
425
* Add support for `capture_method` on `PaymentIntent::PaymentMethodOption::CardPresent`, `PaymentIntentConfirmParams::PaymentMethodOption::CardPresent`, `PaymentIntentCreateParams::PaymentMethodOption::CardPresent`, and `PaymentIntentUpdateParams::PaymentMethodOption::CardPresent`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17.2.0
1+
18.0.0

lib/stripe/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Stripe
4-
VERSION = "17.2.0"
4+
VERSION = "18.0.0"
55
end

0 commit comments

Comments
 (0)