Skip to content

Commit 54626ec

Browse files
committed
chore(version): Bump version
### Fixes - fix(authenticator): recover from exceptions during reset password flow ([#5672](#5672)) - fix(common): added a flag to opt out of bundling sqlite3 for windows apps ([#5680](#5680)) - fix(storage): Only allow 1 batch to run at a time ([#5704](#5704)) Updated-Components: amplify_lints, Amplify Flutter, Amplify Dart, Amplify UI, DB Common, Secure Storage, AWS Common, Smithy, Worker Bee
1 parent c24de5c commit 54626ec

File tree

11 files changed

+32
-9
lines changed

11 files changed

+32
-9
lines changed

packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.5.1
2+
3+
- Minor bug fixes and improvements
4+
15
## 2.5.0
26

37
- Minor bug fixes and improvements

packages/analytics/amplify_analytics_pinpoint/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_analytics_pinpoint
22
description: The Amplify Flutter Analytics category plugin using the AWS Pinpoint provider.
3-
version: 2.5.0
3+
version: 2.5.1
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/analytics/amplify_analytics_pinpoint
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -21,7 +21,7 @@ platforms:
2121
dependencies:
2222
amplify_analytics_pinpoint_dart: ">=0.4.6 <0.5.0"
2323
amplify_core: ">=2.5.0 <2.6.0"
24-
amplify_db_common: ">=0.4.6 <0.5.0"
24+
amplify_db_common: ">=0.4.7 <0.5.0"
2525
amplify_secure_storage: ">=0.5.7 <0.6.0"
2626
aws_common: ">=0.7.3 <0.8.0"
2727
device_info_plus: ^10.0.1

packages/authenticator/amplify_authenticator/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.3.1
2+
3+
### Fixes
4+
- fix(authenticator): recover from exceptions during reset password flow ([#5672](https://github.com/aws-amplify/amplify-flutter/pull/5672))
5+
16
## 2.3.0
27

38
### Features

packages/authenticator/amplify_authenticator/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/authenticator/amplify_authenticator/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_authenticator
22
description: A prebuilt Sign In and Sign Up experience for the Amplify Auth category
3-
version: 2.3.0
3+
version: 2.3.1
44
homepage: https://ui.docs.amplify.aws/flutter/connected-components/authenticator
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/authenticator/amplify_authenticator
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues

packages/common/amplify_db_common/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.4.7
2+
3+
### Fixes
4+
- fix(common): added a flag to opt out of bundling sqlite3 for windows apps ([#5680](https://github.com/aws-amplify/amplify-flutter/pull/5680))
5+
16
## 0.4.6
27

38
### Fixes

packages/common/amplify_db_common/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_db_common
22
description: Common utilities for working with databases such as SQLite.
3-
version: 0.4.6
3+
version: 0.4.7
44
homepage: https://github.com/aws-amplify/amplify-flutter/tree/main
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/common/amplify_db_common
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues

packages/storage/amplify_storage_s3/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.5.1
2+
3+
- Minor bug fixes and improvements
4+
15
## 2.5.0
26

37
- Minor bug fixes and improvements

packages/storage/amplify_storage_s3/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_storage_s3
22
description: The Amplify Flutter Storage category plugin using the AWS S3 provider.
3-
version: 2.5.0
3+
version: 2.5.1
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/storage/amplify_storage_s3
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -20,8 +20,8 @@ platforms:
2020

2121
dependencies:
2222
amplify_core: ">=2.5.0 <2.6.0"
23-
amplify_db_common: ">=0.4.6 <0.5.0"
24-
amplify_storage_s3_dart: ">=0.4.6 <0.5.0"
23+
amplify_db_common: ">=0.4.7 <0.5.0"
24+
amplify_storage_s3_dart: ">=0.4.7 <0.5.0"
2525
aws_common: ">=0.7.3 <0.8.0"
2626
flutter:
2727
sdk: flutter

packages/storage/amplify_storage_s3_dart/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.4.7
2+
3+
### Fixes
4+
- fix(storage): Only allow 1 batch to run at a time ([#5704](https://github.com/aws-amplify/amplify-flutter/pull/5704))
5+
16
## 0.4.6
27

38
- Minor bug fixes and improvements

packages/storage/amplify_storage_s3_dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_storage_s3_dart
22
description: A Dart-only implementation of the Amplify Storage plugin for S3.
3-
version: 0.4.6
3+
version: 0.4.7
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/storage/amplify_storage_s3_dart
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues

0 commit comments

Comments
 (0)