Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,74 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2025-11-15

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_stripe` - `v12.1.1`](#flutter_stripe---v1211)

---

#### `flutter_stripe` - `v12.1.1`


## 2025-11-15

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_stripe_web` - `v7.1.1`](#flutter_stripe_web---v711)

---

#### `flutter_stripe_web` - `v7.1.1`


## 2025-11-15

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`stripe_platform_interface` - `v12.1.1`](#stripe_platform_interface---v1211)
- [`flutter_stripe_web` - `v7.1.1`](#flutter_stripe_web---v711)
- [`flutter_stripe` - `v12.1.1`](#flutter_stripe---v1211)

Packages with dependency updates only:

> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.

- `flutter_stripe_web` - `v7.1.1`
- `flutter_stripe` - `v12.1.1`

---

#### `stripe_platform_interface` - `v12.1.1`

- FIX: #2064 crash collect bankaccounttoken


## 2025-10-28

### Changes
Expand Down
5 changes: 5 additions & 0 deletions packages/stripe/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 12.1.1

**Fixes**
- 2064 crash collect bankaccounttoken

Check warning on line 4 in packages/stripe/CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Typo CI

bankaccounttoken

"bankaccounttoken" is a typo. Did you mean "unaccountable"?

## 12.1.0

**Features**
Expand Down
4 changes: 2 additions & 2 deletions packages/stripe/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_stripe
description: Flutter library for Stripe. Supports PaymentSheets, Apple & Google Pay, SCA, PSD2 and much more.
version: 12.1.0
version: 12.1.1
homepage: https://github.com/flutter-stripe/flutter_stripe
repository: https://github.com/flutter-stripe/flutter_stripe

Expand All @@ -24,7 +24,7 @@ dependencies:
meta: ^1.8.0
stripe_android: ^12.1.0
stripe_ios: ^12.1.0
stripe_platform_interface: ^12.1.0
stripe_platform_interface: ^12.1.1
dev_dependencies:
flutter_test:
sdk: flutter
Expand Down
5 changes: 5 additions & 0 deletions packages/stripe_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 12.1.1

**Fixes**
- 2064 crash collect bankaccounttoken

## 12.1.0

**Features**
Expand Down
2 changes: 1 addition & 1 deletion packages/stripe_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stripe_platform_interface
description: Platform interface for stripe sdk
version: 12.1.0
version: 12.1.1
repository: https://github.com/flutter-stripe/flutter_stripe
homepage: https://pub.dev/packages/flutter_stripe

Expand Down
5 changes: 5 additions & 0 deletions packages/stripe_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 7.1.1

**Fixes**
- 2064 crash collect bankaccounttoken

## 7.1.0

**Features**
Expand Down
2 changes: 1 addition & 1 deletion packages/stripe_web/lib/src/web_stripe.dart
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ class WebStripe extends StripePlatform {
@override
Future<FinancialConnectionTokenResult> collectBankAccountToken({
required String clientSecret,
CollectBankAccountTokenParams? params,
required CollectBankAccountTokenParams params,
}) {
throw WebUnsupportedError.method('collectBankAccountToken');
}
Expand Down
4 changes: 2 additions & 2 deletions packages/stripe_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_stripe_web
description: Stripe sdk bindings for the Flutter web platform. This package contains the implementation of the platform interface for web.
version: 7.1.0
version: 7.1.1
homepage: https://github.com/flutter-stripe/flutter_stripe

environment:
Expand All @@ -13,7 +13,7 @@ dependencies:
flutter_web_plugins:
sdk: flutter
freezed_annotation: ^3.1.0
stripe_platform_interface: ^12.1.0
stripe_platform_interface: ^12.1.1
stripe_js: ^7.1.0
web: ^1.0.0

Expand Down
Loading