Skip to content

Commit 5ef8370

Browse files
ekjotmultanityllark
authored andcommitted
chore(version): Bump version
### Features - feat(storage): add multi-bucket feature support ([#5681](#5681)) ### Fixes - fix(aws_common): removed JS streamed requests ([#5797](#5797)) - fix(datastore): properly handle multiple configures on Android ([#5740](#5740)) Updated-Components: amplify_lints, Amplify Flutter, Amplify Dart, Amplify UI, DB Common, Secure Storage, AWS Common, Smithy, Worker Bee
1 parent df302cb commit 5ef8370

File tree

34 files changed

+128
-51
lines changed

34 files changed

+128
-51
lines changed

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 2.6.0
2+
3+
### Features
4+
- feat(storage): add multi-bucket feature support ([#5681](https://github.com/aws-amplify/amplify-flutter/pull/5681))
5+
6+
### Fixes
7+
- fix(aws_common): removed JS streamed requests ([#5797](https://github.com/aws-amplify/amplify-flutter/pull/5797))
8+
- fix(datastore): properly handle multiple configures on Android ([#5740](https://github.com/aws-amplify/amplify-flutter/pull/5740))
9+
110
## 2.5.0
211

312
### Features

packages/amplify/amplify_flutter/pubspec.yaml

Lines changed: 2 additions & 2 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.5.0
3+
version: 2.6.0
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,7 +19,7 @@ platforms:
1919
web:
2020

2121
dependencies:
22-
amplify_core: ">=2.5.0 <2.6.0"
22+
amplify_core: ">=2.6.0 <2.7.0"
2323
amplify_secure_storage: ">=0.5.7 <0.6.0"
2424
aws_common: ">=0.7.3 <0.8.0"
2525
collection: ^1.15.0

packages/amplify_core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.6.0
2+
3+
### Features
4+
- feat(storage): add multi-bucket feature support ([#5681](https://github.com/aws-amplify/amplify-flutter/pull/5681))
5+
6+
### Fixes
7+
- fix(aws_common): removed JS streamed requests ([#5797](https://github.com/aws-amplify/amplify-flutter/pull/5797))
8+
19
## 2.5.0
210

311
### Features

packages/amplify_core/pubspec.yaml

Lines changed: 2 additions & 2 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.5.0
3+
version: 2.6.0
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,7 +10,7 @@ environment:
1010

1111
dependencies:
1212
async: ^2.10.0
13-
aws_common: ">=0.7.4 <0.8.0"
13+
aws_common: ">=0.7.5 <0.8.0"
1414
aws_signature_v4: ">=0.6.3 <0.7.0"
1515
collection: ^1.15.0
1616
graphs: ^2.1.0

packages/amplify_datastore/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.6.0
2+
3+
### Fixes
4+
- fix(datastore): properly handle multiple configures on Android ([#5740](https://github.com/aws-amplify/amplify-flutter/pull/5740))
5+
16
## 2.5.0
27

38
- Minor bug fixes and improvements

packages/amplify_datastore/pubspec.yaml

Lines changed: 3 additions & 3 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.5.0
3+
version: 2.6.0
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
@@ -12,8 +12,8 @@ environment:
1212
dependencies:
1313
flutter:
1414
sdk: flutter
15-
amplify_datastore_plugin_interface: ">=2.5.0 <2.6.0"
16-
amplify_core: ">=2.5.0 <2.6.0"
15+
amplify_datastore_plugin_interface: ">=2.6.0 <2.7.0"
16+
amplify_core: ">=2.6.0 <2.7.0"
1717
plugin_platform_interface: ^2.0.0
1818
meta: ^1.7.0
1919
collection: ^1.14.13

packages/amplify_datastore_plugin_interface/CHANGELOG.md

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

37
- Minor bug fixes and improvements

packages/amplify_datastore_plugin_interface/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_datastore_plugin_interface
22
description: The platform interface for the DataStore module of Amplify Flutter.
3-
version: 2.5.0
3+
version: 2.6.0
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify_datastore_plugin_interface
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -10,7 +10,7 @@ environment:
1010
flutter: ">=3.19.0"
1111

1212
dependencies:
13-
amplify_core: ">=2.5.0 <2.6.0"
13+
amplify_core: ">=2.6.0 <2.7.0"
1414
collection: ^1.15.0
1515
flutter:
1616
sdk: flutter

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.6.0
2+
3+
- Minor bug fixes and improvements
4+
15
## 2.5.1
26

37
- Minor bug fixes and improvements

packages/analytics/amplify_analytics_pinpoint/pubspec.yaml

Lines changed: 3 additions & 3 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.1
3+
version: 2.6.0
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
@@ -19,8 +19,8 @@ platforms:
1919
web:
2020

2121
dependencies:
22-
amplify_analytics_pinpoint_dart: ">=0.4.6 <0.5.0"
23-
amplify_core: ">=2.5.0 <2.6.0"
22+
amplify_analytics_pinpoint_dart: ">=0.4.7 <0.5.0"
23+
amplify_core: ">=2.6.0 <2.7.0"
2424
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"

0 commit comments

Comments
 (0)