Skip to content

Commit 58f9a96

Browse files
authored
Release stripe v12 (#2204)
* chore(release): publish packages - stripe_platform_interface@12.0.0 * chore: update readme * chore(release): publish packages - stripe_android@12.0.0 * chore(release): publish packages - stripe_ios@12.0.0 * chore: update readme for mobile packages * chore(release): publish packages - stripe_js@7.0.0 * chore: update readme stripe js * chore(release): publish packages - flutter_stripe_web@7.0.0 * chore: add readme for stripe web * chore(release): publish packages - flutter_stripe@12.0.0 * chore:add readme for flutter stripe * chore: update deps (even though we use overrides)
1 parent 89f45e1 commit 58f9a96

File tree

14 files changed

+257
-13
lines changed

14 files changed

+257
-13
lines changed

CHANGELOG.md

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,158 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2025-08-25
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`flutter_stripe` - `v12.0.0`](#flutter_stripe---v1200)
19+
20+
---
21+
22+
#### `flutter_stripe` - `v12.0.0`
23+
24+
- **FIX**: add missing param to method channel (#2181).
25+
26+
27+
## 2025-08-25
28+
29+
### Changes
30+
31+
---
32+
33+
Packages with breaking changes:
34+
35+
- There are no breaking changes in this release.
36+
37+
Packages with other changes:
38+
39+
- [`flutter_stripe_web` - `v7.0.0`](#flutter_stripe_web---v700)
40+
41+
---
42+
43+
#### `flutter_stripe_web` - `v7.0.0`
44+
45+
- **FIX**: Remove empty bank parameter from iDEAL payments to comply with Stripe API changes (#2186).
46+
47+
48+
## 2025-08-25
49+
50+
### Changes
51+
52+
---
53+
54+
Packages with breaking changes:
55+
56+
- There are no breaking changes in this release.
57+
58+
Packages with other changes:
59+
60+
- [`stripe_js` - `v7.0.0`](#stripe_js---v700)
61+
- [`flutter_stripe_web` - `v6.5.2`](#flutter_stripe_web---v652)
62+
63+
Packages with dependency updates only:
64+
65+
> 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.
66+
67+
- `flutter_stripe_web` - `v6.5.2`
68+
69+
---
70+
71+
#### `stripe_js` - `v7.0.0`
72+
73+
- **FIX**: Remove empty bank parameter from iDEAL payments to comply with Stripe API changes (#2186).
74+
75+
76+
## 2025-08-25
77+
78+
### Changes
79+
80+
---
81+
82+
Packages with breaking changes:
83+
84+
- There are no breaking changes in this release.
85+
86+
Packages with other changes:
87+
88+
- [`stripe_ios` - `v12.0.0`](#stripe_ios---v1200)
89+
- [`flutter_stripe` - `v11.5.2`](#flutter_stripe---v1152)
90+
91+
Packages with dependency updates only:
92+
93+
> 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.
94+
95+
- `flutter_stripe` - `v11.5.2`
96+
97+
---
98+
99+
#### `stripe_ios` - `v12.0.0`
100+
101+
102+
## 2025-08-25
103+
104+
### Changes
105+
106+
---
107+
108+
Packages with breaking changes:
109+
110+
- There are no breaking changes in this release.
111+
112+
Packages with other changes:
113+
114+
- [`stripe_android` - `v12.0.0`](#stripe_android---v1200)
115+
- [`flutter_stripe` - `v11.5.2`](#flutter_stripe---v1152)
116+
117+
Packages with dependency updates only:
118+
119+
> 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.
120+
121+
- `flutter_stripe` - `v11.5.2`
122+
123+
---
124+
125+
#### `stripe_android` - `v12.0.0`
126+
127+
128+
## 2025-08-25
129+
130+
### Changes
131+
132+
---
133+
134+
Packages with breaking changes:
135+
136+
- There are no breaking changes in this release.
137+
138+
Packages with other changes:
139+
140+
- [`stripe_platform_interface` - `v12.0.0`](#stripe_platform_interface---v1200)
141+
- [`flutter_stripe_web` - `v6.5.2`](#flutter_stripe_web---v652)
142+
- [`flutter_stripe` - `v11.5.2`](#flutter_stripe---v1152)
143+
144+
Packages with dependency updates only:
145+
146+
> 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.
147+
148+
- `flutter_stripe_web` - `v6.5.2`
149+
- `flutter_stripe` - `v11.5.2`
150+
151+
---
152+
153+
#### `stripe_platform_interface` - `v12.0.0`
154+
155+
- **FIX**: #2173 add billing address config to google pay (#2192).
156+
157+
6158
## 2025-05-26
7159

8160
### Changes

example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
flutter_stripe: ^10.2.0
14-
flutter_stripe_web: ^5.1.0
13+
flutter_stripe: ^12.0.0
14+
flutter_stripe_web: ^7.0.0
1515
pay: ^3.2.1
1616
http: ^1.1.0
1717
font_awesome_flutter: ^10.6.0

packages/stripe/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 12.0.0
2+
3+
**Breaking changes**
4+
- This package now supports and requires Freezed v3
5+
- Breaking change due to sync with Stripe React Native's (v0.50.1) new architecture.
6+
- Remove Sofort payment method as Stripe does not support it anymore
7+
8+
**Features**
9+
- Paymentsheet now supports link display parameters
10+
- Paymentsheet can now be configured with a map of paymentmethods for future usage
11+
12+
**Fixes**
13+
- #2173 add billing address config to google pay
14+
- #2185 blank screen paypal payment on iOS
15+
- #2176 support Klarna on the web
16+
- #2005 card details not supported on android
17+
- #2180 collect bank account token failing due to missing parameter
18+
119
## 11.5.1
220
- retain compatibility with older Flutter versions #2132
321

packages/stripe/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_stripe
22
description: Flutter library for Stripe. Supports PaymentSheets, Apple & Google Pay, SCA, PSD2 and much more.
3-
version: 11.5.1
3+
version: 12.0.0
44
homepage: https://github.com/flutter-stripe/flutter_stripe
55
repository: https://github.com/flutter-stripe/flutter_stripe
66

@@ -22,9 +22,9 @@ dependencies:
2222
flutter:
2323
sdk: flutter
2424
meta: ^1.8.0
25-
stripe_android: ^11.5.0
26-
stripe_ios: ^11.5.0
27-
stripe_platform_interface: ^11.5.1
25+
stripe_android: ^12.0.0
26+
stripe_ios: ^12.0.0
27+
stripe_platform_interface: ^12.0.0
2828
dev_dependencies:
2929
flutter_test:
3030
sdk: flutter

packages/stripe_android/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 12.0.0
2+
3+
**Breaking changes**
4+
- This package now supports and requires Freezed v3
5+
- Breaking change due to sync with Stripe React Native's (v0.50.1) new architecture.
6+
- Remove Sofort payment method as Stripe does not support it anymore
7+
8+
**Features**
9+
- Paymentsheet now supports link display parameters
10+
- Paymentsheet can now be configured with a map of paymentmethods for future usage
11+
12+
**Fixes**
13+
- #2173 add billing address config to google pay
14+
- #2185 blank screen paypal payment on iOS
15+
- #2176 support Klarna on the web
16+
- #2005 card details not supported on android
17+
- #2180 collect bank account token failing due to missing parameter
18+
119
## 11.5.0
220
Align with Stripe React Native [0.43.0](https://github.com/stripe/stripe-react-native/releases/tag/v0.43.0):
321

packages/stripe_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stripe_android
22
description: Stripe platform implementation for Android
3-
version: 11.5.0
3+
version: 12.0.0
44
repository: https://github.com/flutter-stripe/flutter_stripe
55
homepage: https://pub.dev/packages/flutter_stripe
66

packages/stripe_ios/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 12.0.0
2+
3+
**Breaking changes**
4+
- This package now supports and requires Freezed v3
5+
- Breaking change due to sync with Stripe React Native's (v0.50.1) new architecture.
6+
- Remove Sofort payment method as Stripe does not support it anymore
7+
8+
**Features**
9+
- Paymentsheet now supports link display parameters
10+
- Paymentsheet can now be configured with a map of paymentmethods for future usage
11+
12+
**Fixes**
13+
- #2173 add billing address config to google pay
14+
- #2185 blank screen paypal payment on iOS
15+
- #2176 support Klarna on the web
16+
- #2005 card details not supported on android
17+
- #2180 collect bank account token failing due to missing parameter
18+
119
## 11.5.0
220
Align with Stripe React Native [0.43.0](https://github.com/stripe/stripe-react-native/releases/tag/v0.43.0):
321

packages/stripe_ios/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stripe_ios
22
description: Stripe platform implementation for iOS
3-
version: 11.5.0
3+
version: 12.0.0
44
repository: https://github.com/flutter-stripe/flutter_stripe
55
homepage: https://pub.dev/packages/flutter_stripe
66

packages/stripe_js/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 7.0.0
2+
3+
**Breaking changes**
4+
- This package now supports and requires Freezed v3
5+
6+
**Fixes**
7+
- #2176 support Klarna on the web
8+
- #2180 collect bank account token failing due to missing parameter
9+
- #2186 remove empty bank parameter from iDEAL payments to comply with Stripe API changes
10+
111
## 6.4.0
212
- Use latest platform interface
313

packages/stripe_js/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stripe_js
22
description: Stripe.js bindings for dart. This package is used by Stripe web so that the Stripe js sdk can be invoked directly.
3-
version: 6.4.0
3+
version: 7.0.0
44
homepage: https://github.com/flutter-stripe/flutter_stripe
55

66
environment:

0 commit comments

Comments
 (0)