diff --git a/.gitignore b/.gitignore index 51e2ce80..7ff786aa 100644 --- a/.gitignore +++ b/.gitignore @@ -63,5 +63,3 @@ lcov.info /test-results/ /playwright-report/ /playwright/.cache/ - -example_terminal/build diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c6dea72..257320b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,154 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2025-10-28 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`flutter_stripe` - `v12.1.0`](#flutter_stripe---v1210) + +--- + +#### `flutter_stripe` - `v12.1.0` + + - **FIX**: add new proguard rules to prevent release build from building (#2213). + + +## 2025-10-28 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`flutter_stripe_web` - `v7.1.0`](#flutter_stripe_web---v710) + +--- + +#### `flutter_stripe_web` - `v7.1.0` + + +## 2025-10-28 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`stripe_js` - `v7.1.0`](#stripe_js---v710) + - [`flutter_stripe_web` - `v7.0.1`](#flutter_stripe_web---v701) + +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.0.1` + +--- + +#### `stripe_js` - `v7.1.0` + + +## 2025-10-28 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`stripe_ios` - `v12.1.0`](#stripe_ios---v1210) + - [`flutter_stripe` - `v12.0.3`](#flutter_stripe---v1203) + +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` - `v12.0.3` + +--- + +#### `stripe_ios` - `v12.1.0` + + +## 2025-10-28 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`stripe_android` - `v12.1.0`](#stripe_android---v1210) + - [`flutter_stripe` - `v12.0.3`](#flutter_stripe---v1203) + +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` - `v12.0.3` + +--- + +#### `stripe_android` - `v12.1.0` + + - **FIX**: hinttext android (#2215). + + +## 2025-10-28 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`stripe_platform_interface` - `v12.1.0`](#stripe_platform_interface---v1210) + - [`flutter_stripe_web` - `v7.0.1`](#flutter_stripe_web---v701) + - [`flutter_stripe` - `v12.0.3`](#flutter_stripe---v1203) + +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.0.1` + - `flutter_stripe` - `v12.0.3` + +--- + +#### `stripe_platform_interface` - `v12.1.0` + + ## 2025-08-25 ### Changes diff --git a/packages/stripe/CHANGELOG.md b/packages/stripe/CHANGELOG.md index 363f5b01..f722adc3 100644 --- a/packages/stripe/CHANGELOG.md +++ b/packages/stripe/CHANGELOG.md @@ -1,3 +1,10 @@ +## 12.1.0 + +**Features** +- Sync with Stripe React Native [0.53.1](https://github.com/stripe/stripe-react-native/releases/tag/v0.53.1) +- Add support for billie payment +- Add config params paymentsheet + ## 12.0.2 - fix compilation issue with the stripe_ios package when using SPM diff --git a/packages/stripe/pubspec.yaml b/packages/stripe/pubspec.yaml index 177707c8..69a40db6 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: 12.0.2 +version: 12.1.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: ^12.0.1 - stripe_ios: ^12.0.1 - stripe_platform_interface: ^12.0.0 + stripe_android: ^12.1.0 + stripe_ios: ^12.1.0 + stripe_platform_interface: ^12.1.0 dev_dependencies: flutter_test: sdk: flutter diff --git a/packages/stripe_android/CHANGELOG.md b/packages/stripe_android/CHANGELOG.md index 4ae8695a..bcc5ae8c 100644 --- a/packages/stripe_android/CHANGELOG.md +++ b/packages/stripe_android/CHANGELOG.md @@ -1,3 +1,10 @@ +## 12.1.0 + +**Features** +- Sync with Stripe React Native [0.53.1](https://github.com/stripe/stripe-react-native/releases/tag/v0.53.1) +- Add support for billie payment +- Add config params paymentsheet + ## 12.0.1 - fix compilation issue with the stripe_android package diff --git a/packages/stripe_android/pubspec.yaml b/packages/stripe_android/pubspec.yaml index 2f434d61..6c700a56 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: 12.0.1 +version: 12.1.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 5560ef67..d1313eb9 100644 --- a/packages/stripe_ios/CHANGELOG.md +++ b/packages/stripe_ios/CHANGELOG.md @@ -1,3 +1,10 @@ +## 12.1.0 + +**Features** +- Sync with Stripe React Native [0.53.1](https://github.com/stripe/stripe-react-native/releases/tag/v0.53.1) +- Add support for billie payment +- Add config params paymentsheet + ## 12.0.1 - fix compilation issue with the stripe_ios package when using SPM diff --git a/packages/stripe_ios/pubspec.yaml b/packages/stripe_ios/pubspec.yaml index b34c125c..aafcd3c5 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: 12.0.1 +version: 12.1.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 d6f4714f..ffb93fb7 100644 --- a/packages/stripe_js/CHANGELOG.md +++ b/packages/stripe_js/CHANGELOG.md @@ -1,3 +1,8 @@ +## 7.1.0 + +**Features** +- Sync with Stripe React Native [0.53.1](https://github.com/stripe/stripe-react-native/releases/tag/v0.53.1) + ## 7.0.0 **Breaking changes** diff --git a/packages/stripe_js/pubspec.yaml b/packages/stripe_js/pubspec.yaml index e7cd2921..c09602fc 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: 7.0.0 +version: 7.1.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 93aaa2e6..705c3c66 100644 --- a/packages/stripe_platform_interface/CHANGELOG.md +++ b/packages/stripe_platform_interface/CHANGELOG.md @@ -1,3 +1,10 @@ +## 12.1.0 + +**Features** +- Sync with Stripe React Native [0.53.1](https://github.com/stripe/stripe-react-native/releases/tag/v0.53.1) +- Add support for billie payment +- Add config params paymentsheet + ## 12.0.0 **Breaking changes** diff --git a/packages/stripe_platform_interface/pubspec.yaml b/packages/stripe_platform_interface/pubspec.yaml index 3edadcd9..18007636 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: 12.0.0 +version: 12.1.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 3d752dae..2bc1cf1e 100644 --- a/packages/stripe_web/CHANGELOG.md +++ b/packages/stripe_web/CHANGELOG.md @@ -1,3 +1,8 @@ +## 7.1.0 + +**Features** +- Sync with Stripe React Native [0.53.1](https://github.com/stripe/stripe-react-native/releases/tag/v0.53.1) + ## 7.0.0 **Breaking changes** diff --git a/packages/stripe_web/pubspec.yaml b/packages/stripe_web/pubspec.yaml index 100e7085..c7b13c74 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: 7.0.0 +version: 7.1.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: ^12.0.0 - stripe_js: ^7.0.0 + stripe_platform_interface: ^12.1.0 + stripe_js: ^7.1.0 web: ^1.0.0 dev_dependencies: