From dde7ed5eded406c6e466bd39ed239bbf2f3dac8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mon?= Date: Wed, 18 Sep 2024 18:05:17 +0100 Subject: [PATCH] Stripe release stripe 11.1.0 (#1929) * chore(release): publish packages - stripe_platform_interface@11.1.0 * chore(release): publish packages - stripe_android@11.1.0 * chore(release): publish packages - stripe_ios@11.1.0 * chore(release): publish packages - flutter_stripe@11.1.0 * chore(release): publish packages - stripe_js@6.1.0 * chore(release): publish packages - flutter_stripe_web@6.1.0 * fix changelogs --------- Co-authored-by: Remon --- CHANGELOG.md | 148 ++++++++++++++++++ packages/stripe/CHANGELOG.md | 4 + packages/stripe/pubspec.yaml | 8 +- packages/stripe_android/CHANGELOG.md | 4 + packages/stripe_android/pubspec.yaml | 2 +- packages/stripe_ios/CHANGELOG.md | 4 + packages/stripe_ios/pubspec.yaml | 2 +- packages/stripe_js/CHANGELOG.md | 7 +- packages/stripe_js/pubspec.yaml | 2 +- .../stripe_platform_interface/CHANGELOG.md | 4 + .../stripe_platform_interface/pubspec.yaml | 2 +- packages/stripe_web/CHANGELOG.md | 5 + packages/stripe_web/pubspec.yaml | 6 +- 13 files changed, 185 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7a63bd9..6d90f24d 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. +## 2024-09-18 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`flutter_stripe_web` - `v6.1.0`](#flutter_stripe_web---v610) + +--- + +#### `flutter_stripe_web` - `v6.1.0` + + - :wq + + +## 2024-09-18 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`stripe_js` - `v6.1.0`](#stripe_js---v610) + - [`flutter_stripe_web` - `v6.0.1`](#flutter_stripe_web---v601) + +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.0.1` + +--- + +#### `stripe_js` - `v6.1.0` + + +## 2024-09-18 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`flutter_stripe` - `v11.1.0`](#flutter_stripe---v1110) + +--- + +#### `flutter_stripe` - `v11.1.0` + + - :wq + + +## 2024-09-18 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`stripe_ios` - `v11.1.0`](#stripe_ios---v1110) + - [`flutter_stripe` - `v11.0.1`](#flutter_stripe---v1101) + +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.0.1` + +--- + +#### `stripe_ios` - `v11.1.0` + + +## 2024-09-18 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`stripe_android` - `v11.1.0`](#stripe_android---v1110) + - [`flutter_stripe` - `v11.0.1`](#flutter_stripe---v1101) + +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.0.1` + +--- + +#### `stripe_android` - `v11.1.0` + + +## 2024-09-18 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`stripe_platform_interface` - `v11.1.0`](#stripe_platform_interface---v1110) + - [`flutter_stripe_web` - `v6.0.1`](#flutter_stripe_web---v601) + - [`flutter_stripe` - `v11.0.1`](#flutter_stripe---v1101) + +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.0.1` + - `flutter_stripe` - `v11.0.1` + +--- + +#### `stripe_platform_interface` - `v11.1.0` + + ## 2024-07-25 ### Changes diff --git a/packages/stripe/CHANGELOG.md b/packages/stripe/CHANGELOG.md index 9577a194..448ef744 100644 --- a/packages/stripe/CHANGELOG.md +++ b/packages/stripe/CHANGELOG.md @@ -1,3 +1,7 @@ +## 11.1.0 +- Sync with Stripe [0.38.6](https://github.com/stripe/stripe-react-native/releases/tag/v0.38.6). +- Minor fixes and improvements. + ## 11.0.0 **Breaking changes** - Add support for intentmode setupMode. If you used `IntentMode before` change it to `IntentMode.paymentMode` instead. diff --git a/packages/stripe/pubspec.yaml b/packages/stripe/pubspec.yaml index f456122c..ae2a25fc 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.0.0 +version: 11.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: ^11.0.0 - stripe_ios: ^11.0.0 - stripe_platform_interface: ^11.0.0 + stripe_android: ^11.1.0 + stripe_ios: ^11.1.0 + stripe_platform_interface: ^11.1.0 dev_dependencies: flutter_test: sdk: flutter diff --git a/packages/stripe_android/CHANGELOG.md b/packages/stripe_android/CHANGELOG.md index 18f2ab08..dffd3ab0 100644 --- a/packages/stripe_android/CHANGELOG.md +++ b/packages/stripe_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 11.1.0 +- Sync with Stripe [0.38.6](https://github.com/stripe/stripe-react-native/releases/tag/v0.38.6). +- Minor fixes and improvements. + ## 11.0.0 **Breaking changes** - Add support for intentmode setupMode. If you used `IntentMode before` change it to `IntentMode.paymentMode` instead. diff --git a/packages/stripe_android/pubspec.yaml b/packages/stripe_android/pubspec.yaml index bab1979f..6d7d63dd 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.0.0 +version: 11.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 9577a194..448ef744 100644 --- a/packages/stripe_ios/CHANGELOG.md +++ b/packages/stripe_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 11.1.0 +- Sync with Stripe [0.38.6](https://github.com/stripe/stripe-react-native/releases/tag/v0.38.6). +- Minor fixes and improvements. + ## 11.0.0 **Breaking changes** - Add support for intentmode setupMode. If you used `IntentMode before` change it to `IntentMode.paymentMode` instead. diff --git a/packages/stripe_ios/pubspec.yaml b/packages/stripe_ios/pubspec.yaml index ccf22b3d..23fede0c 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.0.0 +version: 11.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 20425e63..63fd0b15 100644 --- a/packages/stripe_js/CHANGELOG.md +++ b/packages/stripe_js/CHANGELOG.md @@ -1,6 +1,9 @@ -## 6.0.0 +## 6.1.0 +- Sync with Stripe [0.38.6](https://github.com/stripe/stripe-react-native/releases/tag/v0.38.6). +- Minor fixes and improvements. +- Fix webelement parameters. - - aa +## 6.0.0 - **FIX**: invalid argument `requires_capture` on web (#1431). - **FIX**: PaymentConfirmationRedirect enum value (#1221). diff --git a/packages/stripe_js/pubspec.yaml b/packages/stripe_js/pubspec.yaml index c0f7ceb5..d748d884 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.0.0 +version: 6.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 9577a194..448ef744 100644 --- a/packages/stripe_platform_interface/CHANGELOG.md +++ b/packages/stripe_platform_interface/CHANGELOG.md @@ -1,3 +1,7 @@ +## 11.1.0 +- Sync with Stripe [0.38.6](https://github.com/stripe/stripe-react-native/releases/tag/v0.38.6). +- Minor fixes and improvements. + ## 11.0.0 **Breaking changes** - Add support for intentmode setupMode. If you used `IntentMode before` change it to `IntentMode.paymentMode` instead. diff --git a/packages/stripe_platform_interface/pubspec.yaml b/packages/stripe_platform_interface/pubspec.yaml index 6cd99f77..4e7a21ca 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.0.0 +version: 11.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 d9b90429..bc923b82 100644 --- a/packages/stripe_web/CHANGELOG.md +++ b/packages/stripe_web/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.1.0 +- Sync with Stripe [0.38.6](https://github.com/stripe/stripe-react-native/releases/tag/v0.38.6). +- Minor fixes and improvements. +- Fix parameters for webelement + ## 6.0.0 **Breaking changes** - Converted the library to the new js interop so this library can be compiled to WASM. diff --git a/packages/stripe_web/pubspec.yaml b/packages/stripe_web/pubspec.yaml index 68819b98..27d7a9a2 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.0.0 +version: 6.1.0 homepage: https://github.com/flutter-stripe/flutter_stripe environment: @@ -13,8 +13,8 @@ dependencies: flutter_web_plugins: sdk: flutter freezed_annotation: ^2.0.3 - stripe_platform_interface: ^11.0.0 - stripe_js: ^6.0.0 + stripe_platform_interface: ^11.1.0 + stripe_js: ^6.1.0 web: ^1.0.0 dev_dependencies: