diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d7f0114..4c6dea72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/example/pubspec.yaml b/example/pubspec.yaml index c43c5339..5a8dd8d2 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -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 diff --git a/packages/stripe/CHANGELOG.md b/packages/stripe/CHANGELOG.md index d150086b..f14b2d3c 100644 --- a/packages/stripe/CHANGELOG.md +++ b/packages/stripe/CHANGELOG.md @@ -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 diff --git a/packages/stripe/pubspec.yaml b/packages/stripe/pubspec.yaml index 659598d4..76de63bb 100644 --- a/packages/stripe/pubspec.yaml +++ b/packages/stripe/pubspec.yaml @@ -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 @@ -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 diff --git a/packages/stripe_android/CHANGELOG.md b/packages/stripe_android/CHANGELOG.md index af584d5e..9f8bd19a 100644 --- a/packages/stripe_android/CHANGELOG.md +++ b/packages/stripe_android/CHANGELOG.md @@ -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): diff --git a/packages/stripe_android/pubspec.yaml b/packages/stripe_android/pubspec.yaml index ad0e5e26..26a81ede 100644 --- a/packages/stripe_android/pubspec.yaml +++ b/packages/stripe_android/pubspec.yaml @@ -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 diff --git a/packages/stripe_ios/CHANGELOG.md b/packages/stripe_ios/CHANGELOG.md index af584d5e..9f8bd19a 100644 --- a/packages/stripe_ios/CHANGELOG.md +++ b/packages/stripe_ios/CHANGELOG.md @@ -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): diff --git a/packages/stripe_ios/pubspec.yaml b/packages/stripe_ios/pubspec.yaml index 6f87f6bc..76cbf6ef 100644 --- a/packages/stripe_ios/pubspec.yaml +++ b/packages/stripe_ios/pubspec.yaml @@ -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 diff --git a/packages/stripe_js/CHANGELOG.md b/packages/stripe_js/CHANGELOG.md index 352b7ad5..d6f4714f 100644 --- a/packages/stripe_js/CHANGELOG.md +++ b/packages/stripe_js/CHANGELOG.md @@ -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 diff --git a/packages/stripe_js/pubspec.yaml b/packages/stripe_js/pubspec.yaml index 6ff00042..e7cd2921 100644 --- a/packages/stripe_js/pubspec.yaml +++ b/packages/stripe_js/pubspec.yaml @@ -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: diff --git a/packages/stripe_platform_interface/CHANGELOG.md b/packages/stripe_platform_interface/CHANGELOG.md index af584d5e..93aaa2e6 100644 --- a/packages/stripe_platform_interface/CHANGELOG.md +++ b/packages/stripe_platform_interface/CHANGELOG.md @@ -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): diff --git a/packages/stripe_platform_interface/pubspec.yaml b/packages/stripe_platform_interface/pubspec.yaml index 731fc546..3edadcd9 100644 --- a/packages/stripe_platform_interface/pubspec.yaml +++ b/packages/stripe_platform_interface/pubspec.yaml @@ -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 diff --git a/packages/stripe_web/CHANGELOG.md b/packages/stripe_web/CHANGELOG.md index 57b58e0e..3d752dae 100644 --- a/packages/stripe_web/CHANGELOG.md +++ b/packages/stripe_web/CHANGELOG.md @@ -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** diff --git a/packages/stripe_web/pubspec.yaml b/packages/stripe_web/pubspec.yaml index c9600647..100e7085 100644 --- a/packages/stripe_web/pubspec.yaml +++ b/packages/stripe_web/pubspec.yaml @@ -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: @@ -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: