Skip to content

Commit 1842335

Browse files
committed
Bump version to 18.6.0-alpha.2
1 parent 064649e commit 1842335

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 18.6.0-alpha.2 - 2025-09-17
4+
5+
* [#2404](https://github.com/stripe/stripe-node/pull/2404) Update generated code for private-preview
6+
* Add support for `retrieve` method on resource `V2.Core.ClaimableSandbox`
7+
* Add support for `month_of_year` on `V2.Billing.Cadence#create.billing_cycle.month` and `V2.Billing.Cadence.billing_cycle.month`
8+
* Add support for `claimed_at`, `expires_at`, `sandbox_details`, and `status` on `V2.Core.ClaimableSandbox`
9+
* Remove support for `api_keys` on `V2.Core.ClaimableSandbox`
10+
* Change type of `V2.Core.ClaimableSandbox.claim_url` from `string` to `nullable(string)`
11+
* Add support for new value `current_billing_period_end` on enums `V2.Billing.Intent#create.actions[].deactivate.effective_at.type` and `V2.Billing.IntentAction.deactivate.effective_at.type`
12+
* Add support for `will_activate_at` and `will_cancel_at` on `V2.Billing.PricingPlanSubscription.servicing_status_transitions` and `V2.Billing.RateCardSubscription.servicing_status_transitions`
13+
* Add support for `category` and `priority` on `V2.Billing.ServiceAction#create.credit_grant_per_tenant`, `V2.Billing.ServiceAction#create.credit_grant`, `V2.Billing.ServiceAction.credit_grant_per_tenant`, and `V2.Billing.ServiceAction.credit_grant`
14+
* Change `V2.Billing.LicenseFee#update.display_name` to be optional
15+
* Add support for `invoices` on `EventsV2BillingCadenceBilledEvent`
16+
* Add support for thin events `V2CoreClaimableSandboxClaimedEvent`, `V2CoreClaimableSandboxExpiredEvent`, `V2CoreClaimableSandboxExpiringEvent`, and `V2CoreClaimableSandboxSandboxDetailsOwnerAccountUpdatedEvent` with related object `V2.Core.ClaimableSandbox`
17+
* Remove support for thin event `V2BillingCadenceErroredEvent` with related object `V2.Billing.Cadence`
18+
319
## 18.6.0-alpha.1 - 2025-08-27
420
* [#2393](https://github.com/stripe/stripe-node/pull/2393) Use the right API version 2025-08-27.preview
521
* [#2390](https://github.com/stripe/stripe-node/pull/2390) Update generated code for private-preview

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.6.0-alpha.1
1+
18.6.0-alpha.2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stripe",
3-
"version": "18.6.0-alpha.1",
3+
"version": "18.6.0-alpha.2",
44
"description": "Stripe API wrapper",
55
"keywords": [
66
"stripe",

src/stripe.core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function createStripe(
5959
platformFunctions: PlatformFunctions,
6060
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6161
): typeof Stripe {
62-
Stripe.PACKAGE_VERSION = '18.6.0-alpha.1';
62+
Stripe.PACKAGE_VERSION = '18.6.0-alpha.2';
6363
Stripe.API_VERSION = ApiVersion;
6464
Stripe.USER_AGENT = {
6565
bindings_version: Stripe.PACKAGE_VERSION,

0 commit comments

Comments
 (0)