Skip to content

Commit c599cf6

Browse files
committed
chore(version): Bump version
1 parent f541d17 commit c599cf6

File tree

39 files changed

+178
-65
lines changed

39 files changed

+178
-65
lines changed

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2.6.5
2+
3+
### Chores
4+
- chore(datastore, analytics, auth, common, notifications, secure_storage): Bumped kotlin_version to 2.2.0 ([#6224](https://github.com/aws-amplify/amplify-flutter/pull/6224))
5+
- chore(datastore, analytics, auth, common, notifications, common, secure_storage): Bumped com.android.tools.build:gradle to 8.11.0 ([#6203](https://github.com/aws-amplify/amplify-flutter/pull/6203))
6+
- chore(datastore, notifications): Bumped com.android.tools:desugar_jdk_libs to 2.1.5 ([#6224](https://github.com/aws-amplify/amplify-flutter/pull/6224))
7+
- chore(datastore): Bumped com.google.code.gson:gson to 2.13.1 ([#6224](https://github.com/aws-amplify/amplify-flutter/pull/6224))
8+
- chore(datastore): Bumped com.amplifyframework:aws-auth-cognito to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
9+
- chore(datastore): Bumped com.amplifyframework:aws-api to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
10+
- chore(datastore): Bumped com.amplifyframework:aws-datastore to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
11+
- chore(datastore): Bumped com.amplifyframework:aws-api-appsync to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
12+
- chore(datastore, auth): Bumped org.jetbrains.kotlinx:kotlinx-coroutines-android: to 1.10.2 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
13+
- chore(notifications): Bumped com.google.firebase:firebase-messaging to 24.1.2 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
14+
- chore(notifications): Bumped com.amplifyframework:aws-push-notifications-pinpoint-common to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
15+
- chore(notifications): Bumped org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1 to 1.8.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
16+
17+
### Fixes
18+
- fix(auth): handle fallthrough exceptions in sign out state ([#6226](https://github.com/aws-amplify/amplify-flutter/pull/6226))
19+
120
## 2.6.4
221

322
### Chores

packages/amplify/amplify_flutter/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter
22
description: The top level Flutter package for the AWS Amplify libraries.
3-
version: 2.6.4
3+
version: 2.6.5
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify/amplify_flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -19,9 +19,9 @@ platforms:
1919
web:
2020

2121
dependencies:
22-
amplify_core: ">=2.6.4 <2.7.0"
23-
amplify_secure_storage: ">=0.5.11 <0.6.0"
24-
aws_common: ">=0.7.9 <0.8.0"
22+
amplify_core: ">=2.6.5 <2.7.0"
23+
amplify_secure_storage: ">=0.5.12 <0.6.0"
24+
aws_common: ">=0.7.10 <0.8.0"
2525
collection: ^1.18.0
2626
flutter:
2727
sdk: flutter

packages/amplify_core/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.6.5
2+
3+
### Fixes
4+
- fix(auth): handle fallthrough exceptions in sign out state ([#6226](https://github.com/aws-amplify/amplify-flutter/pull/6226))
5+
16
## 2.6.4
27

38
### Chores

packages/amplify_core/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/amplify_core/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_core
22
description: The base package containing common types and utilities that are shared across the Amplify Flutter packages.
3-
version: 2.6.4
3+
version: 2.6.5
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify_core
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -10,8 +10,8 @@ environment:
1010

1111
dependencies:
1212
async: ^2.10.0
13-
aws_common: ">=0.7.9 <0.8.0"
14-
aws_signature_v4: ">=0.6.7 <0.7.0"
13+
aws_common: ">=0.7.10 <0.8.0"
14+
aws_signature_v4: ">=0.6.8 <0.7.0"
1515
collection: ^1.18.0
1616
graphs: ^2.1.0
1717
intl: ^0.20.2

packages/amplify_datastore/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 2.6.5
2+
3+
### Chores
4+
- chore(datastore): Bumped kotlin_version to 2.2.0 ([#6224](https://github.com/aws-amplify/amplify-flutter/pull/6224))
5+
- chore(datastore): Bumped com.android.tools:desugar_jdk_libs to 2.1.5 ([#6224](https://github.com/aws-amplify/amplify-flutter/pull/6224))
6+
- chore(datastore): Bumped com.google.code.gson:gson to 2.13.1 ([#6224](https://github.com/aws-amplify/amplify-flutter/pull/6224))
7+
- chore(datastore): Bumped com.android.tools.build:gradle to 8.11.0 ([#6203](https://github.com/aws-amplify/amplify-flutter/pull/6203))
8+
- chore(datastore): Bumped com.amplifyframework:aws-auth-cognito to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
9+
- chore(datastore): Bumped com.amplifyframework:aws-api to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
10+
- chore(datastore): Bumped com.amplifyframework:aws-datastore to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
11+
- chore(datastore): Bumped com.amplifyframework:aws-api-appsync to 2.29.1 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
12+
- chore(datastore): Bumped org.jetbrains.kotlinx:kotlinx-coroutines-android: to 1.10.2 ([#6187](https://github.com/aws-amplify/amplify-flutter/pull/6187))
13+
114
## 2.6.4
215

316
### Chores

packages/amplify_datastore/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_datastore
22
description: The Amplify Flutter DataStore category plugin, providing a queryable, on-device data store.
3-
version: 2.6.4
3+
version: 2.6.5
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify_datastore
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -13,7 +13,7 @@ dependencies:
1313
flutter:
1414
sdk: flutter
1515
amplify_datastore_plugin_interface: ">=2.6.3 <2.7.0"
16-
amplify_core: ">=2.6.4 <2.7.0"
16+
amplify_core: ">=2.6.5 <2.7.0"
1717
plugin_platform_interface: ^2.0.0
1818
meta: ^1.16.0
1919
collection: ^1.18.0

packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.6.5
2+
3+
### Chores
4+
- chore(analytics): Bumped kotlin_version to 2.2.0 ([#6224](https://github.com/aws-amplify/amplify-flutter/pull/6224))
5+
- chore(analytics): Bumped com.android.tools.build:gradle to 8.11.0 ([#6203](https://github.com/aws-amplify/amplify-flutter/pull/6203))
6+
17
## 2.6.4
28

39
### Chores

packages/analytics/amplify_analytics_pinpoint/pubspec.yaml

Lines changed: 5 additions & 5 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.6.4
3+
version: 2.6.5
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
@@ -20,10 +20,10 @@ platforms:
2020

2121
dependencies:
2222
amplify_analytics_pinpoint_dart: ">=0.4.11 <0.5.0"
23-
amplify_core: ">=2.6.4 <2.7.0"
24-
amplify_db_common: ">=0.4.12 <0.5.0"
25-
amplify_secure_storage: ">=0.5.11 <0.6.0"
26-
aws_common: ">=0.7.9 <0.8.0"
23+
amplify_core: ">=2.6.5 <2.7.0"
24+
amplify_db_common: ">=0.4.13 <0.5.0"
25+
amplify_secure_storage: ">=0.5.12 <0.6.0"
26+
aws_common: ">=0.7.10 <0.8.0"
2727
device_info_plus: ^11.3.3
2828

2929
flutter:

packages/api/amplify_api/CHANGELOG.md

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

37
### Chores

0 commit comments

Comments
 (0)