Skip to content
152 changes: 152 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,158 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2025-08-25

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_stripe` - `v12.0.0`](#flutter_stripe---v1200)

---

#### `flutter_stripe` - `v12.0.0`

- **FIX**: add missing param to method channel (#2181).


## 2025-08-25

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_stripe_web` - `v7.0.0`](#flutter_stripe_web---v700)

---

#### `flutter_stripe_web` - `v7.0.0`

- **FIX**: Remove empty bank parameter from iDEAL payments to comply with Stripe API changes (#2186).


## 2025-08-25

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`stripe_js` - `v7.0.0`](#stripe_js---v700)
- [`flutter_stripe_web` - `v6.5.2`](#flutter_stripe_web---v652)

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` - `v6.5.2`

---

#### `stripe_js` - `v7.0.0`

- **FIX**: Remove empty bank parameter from iDEAL payments to comply with Stripe API changes (#2186).


## 2025-08-25

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`stripe_ios` - `v12.0.0`](#stripe_ios---v1200)
- [`flutter_stripe` - `v11.5.2`](#flutter_stripe---v1152)

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` - `v11.5.2`

---

#### `stripe_ios` - `v12.0.0`


## 2025-08-25

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`stripe_android` - `v12.0.0`](#stripe_android---v1200)
- [`flutter_stripe` - `v11.5.2`](#flutter_stripe---v1152)

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` - `v11.5.2`

---

#### `stripe_android` - `v12.0.0`


## 2025-08-25

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`stripe_platform_interface` - `v12.0.0`](#stripe_platform_interface---v1200)
- [`flutter_stripe_web` - `v6.5.2`](#flutter_stripe_web---v652)
- [`flutter_stripe` - `v11.5.2`](#flutter_stripe---v1152)

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` - `v6.5.2`
- `flutter_stripe` - `v11.5.2`

---

#### `stripe_platform_interface` - `v12.0.0`

- **FIX**: #2173 add billing address config to google pay (#2192).


## 2025-05-26

### Changes
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_stripe: ^10.2.0
flutter_stripe_web: ^5.1.0
flutter_stripe: ^12.0.0
flutter_stripe_web: ^7.0.0
pay: ^3.2.1
http: ^1.1.0
font_awesome_flutter: ^10.6.0
Expand Down
18 changes: 18 additions & 0 deletions packages/stripe/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 12.0.0

**Breaking changes**
- This package now supports and requires Freezed v3
- Breaking change due to sync with Stripe React Native's (v0.50.1) new architecture.
- Remove Sofort payment method as Stripe does not support it anymore

**Features**
- Paymentsheet now supports link display parameters
- Paymentsheet can now be configured with a map of paymentmethods for future usage

**Fixes**
- #2173 add billing address config to google pay
- #2185 blank screen paypal payment on iOS
- #2176 support Klarna on the web
- #2005 card details not supported on android
- #2180 collect bank account token failing due to missing parameter

## 11.5.1
- retain compatibility with older Flutter versions #2132

Expand Down
8 changes: 4 additions & 4 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: 11.5.1
version: 12.0.0
homepage: https://github.com/flutter-stripe/flutter_stripe
repository: https://github.com/flutter-stripe/flutter_stripe

Expand All @@ -22,9 +22,9 @@ dependencies:
flutter:
sdk: flutter
meta: ^1.8.0
stripe_android: ^11.5.0
stripe_ios: ^11.5.0
stripe_platform_interface: ^11.5.1
stripe_android: ^12.0.0
stripe_ios: ^12.0.0
stripe_platform_interface: ^12.0.0
dev_dependencies:
flutter_test:
sdk: flutter
Expand Down
18 changes: 18 additions & 0 deletions packages/stripe_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 12.0.0

**Breaking changes**
- This package now supports and requires Freezed v3
- Breaking change due to sync with Stripe React Native's (v0.50.1) new architecture.
- Remove Sofort payment method as Stripe does not support it anymore

**Features**
- Paymentsheet now supports link display parameters
- Paymentsheet can now be configured with a map of paymentmethods for future usage

**Fixes**
- #2173 add billing address config to google pay
- #2185 blank screen paypal payment on iOS
- #2176 support Klarna on the web
- #2005 card details not supported on android
- #2180 collect bank account token failing due to missing parameter

## 11.5.0
Align with Stripe React Native [0.43.0](https://github.com/stripe/stripe-react-native/releases/tag/v0.43.0):

Expand Down
2 changes: 1 addition & 1 deletion packages/stripe_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stripe_android
description: Stripe platform implementation for Android
version: 11.5.0
version: 12.0.0
repository: https://github.com/flutter-stripe/flutter_stripe
homepage: https://pub.dev/packages/flutter_stripe

Expand Down
18 changes: 18 additions & 0 deletions packages/stripe_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 12.0.0

**Breaking changes**
- This package now supports and requires Freezed v3
- Breaking change due to sync with Stripe React Native's (v0.50.1) new architecture.
- Remove Sofort payment method as Stripe does not support it anymore

**Features**
- Paymentsheet now supports link display parameters
- Paymentsheet can now be configured with a map of paymentmethods for future usage

**Fixes**
- #2173 add billing address config to google pay
- #2185 blank screen paypal payment on iOS
- #2176 support Klarna on the web
- #2005 card details not supported on android
- #2180 collect bank account token failing due to missing parameter

## 11.5.0
Align with Stripe React Native [0.43.0](https://github.com/stripe/stripe-react-native/releases/tag/v0.43.0):

Expand Down
2 changes: 1 addition & 1 deletion packages/stripe_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stripe_ios
description: Stripe platform implementation for iOS
version: 11.5.0
version: 12.0.0
repository: https://github.com/flutter-stripe/flutter_stripe
homepage: https://pub.dev/packages/flutter_stripe

Expand Down
10 changes: 10 additions & 0 deletions packages/stripe_js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 7.0.0

**Breaking changes**
- This package now supports and requires Freezed v3

**Fixes**
- #2176 support Klarna on the web
- #2180 collect bank account token failing due to missing parameter
- #2186 remove empty bank parameter from iDEAL payments to comply with Stripe API changes

## 6.4.0
- Use latest platform interface

Expand Down
2 changes: 1 addition & 1 deletion packages/stripe_js/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stripe_js
description: Stripe.js bindings for dart. This package is used by Stripe web so that the Stripe js sdk can be invoked directly.
version: 6.4.0
version: 7.0.0
homepage: https://github.com/flutter-stripe/flutter_stripe

environment:
Expand Down
18 changes: 18 additions & 0 deletions packages/stripe_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 12.0.0

**Breaking changes**
- This package now supports and requires Freezed v3
- Breaking change due to sync with Stripe React Native's (v0.50.1) new architecture.
- Remove Sofort payment method as Stripe does not support it anymore

**Features**
- Paymentsheet now supports linkdisplay parameters
- Paymentsheet can now be configured with a map of paymentmethods for future usage

**Fixes**
- #2173 add billing address config to google pay
- #2185 blank screen paypal payment on iOS
- #2176 support Klarna on the web
- #2005 card details not supported on android
- #2180 collect bank account token failing due to missing parameter

## 11.5.0
Align with Stripe React Native [0.43.0](https://github.com/stripe/stripe-react-native/releases/tag/v0.43.0):

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: 11.5.1
version: 12.0.0
repository: https://github.com/flutter-stripe/flutter_stripe
homepage: https://pub.dev/packages/flutter_stripe

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

**Breaking changes**
- This package now supports and requires Freezed v3

**Fixes**
- #2176 support Klarna on the web
- #2180 collect bank account token failing due to missing parameter
- #2186 remove empty bank parameter from iDEAL payments to comply with Stripe API changes

## 6.5.1

**Fixes**
Expand Down
6 changes: 3 additions & 3 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: 6.5.1
version: 7.0.0
homepage: https://github.com/flutter-stripe/flutter_stripe

environment:
Expand All @@ -13,8 +13,8 @@ dependencies:
flutter_web_plugins:
sdk: flutter
freezed_annotation: ^3.1.0
stripe_platform_interface: ^11.5.0
stripe_js: ^6.4.0
stripe_platform_interface: ^12.0.0
stripe_js: ^7.0.0
web: ^1.0.0

dev_dependencies:
Expand Down
Loading