Skip to content

Commit 956df12

Browse files
Nika HassaniNikaHsn
authored andcommitted
chore(version): Bump version
### Features - feat: deprecate `Storage.move()` API ([#4638](#4638)) - feat: update `built_value` version constraint ([#4634](#4634)) - feat: update plus plugins version ([#4619](#4619)) ### Fixes - fix(api): Paginated GraphQL preserve request params ([#4605](#4605)) - fix(api): Web socket decode connection errors ([#4606](#4606)) Updated-Components: amplify_lints, Amplify Flutter, Amplify Dart, Amplify UI, DB Common, Secure Storage, AWS Common, Smithy, Worker Bee
1 parent 2c09e63 commit 956df12

File tree

56 files changed

+296
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+296
-138
lines changed

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 1.8.0
2+
3+
NOTE: This version has been updated to:
4+
- Flutter: ">=3.19.0"
5+
- Dart ^3.3.0
6+
- Java 17, Kotlin 1.9.10 and Gradle 8.1 for Android projects
7+
8+
### Features
9+
- feat: deprecate `Storage.move()` API ([#4638](https://github.com/aws-amplify/amplify-flutter/pull/4638))
10+
- feat: update `built_value` version constraint ([#4634](https://github.com/aws-amplify/amplify-flutter/pull/4634))
11+
- feat: update plus plugins version ([#4619](https://github.com/aws-amplify/amplify-flutter/pull/4619))
12+
113
## 1.7.0
214

315
### Features

packages/amplify/amplify_flutter/pubspec.yaml

Lines changed: 5 additions & 5 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: 1.7.0
3+
version: 1.8.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,16 +19,16 @@ platforms:
1919
web:
2020

2121
dependencies:
22-
amplify_core: ">=1.7.0 <1.8.0"
23-
amplify_secure_storage: ">=0.4.0+6 <0.5.0"
24-
aws_common: ">=0.6.0 <0.7.0"
22+
amplify_core: ">=1.8.0 <1.9.0"
23+
amplify_secure_storage: ">=0.4.3 <0.5.0"
24+
aws_common: ">=0.6.4 <0.7.0"
2525
collection: ^1.15.0
2626
flutter:
2727
sdk: flutter
2828
meta: ^1.7.0
2929

3030
dev_dependencies:
31-
amplify_lints: ">=3.0.0 <3.1.0"
31+
amplify_lints: ">=3.1.0 <3.2.0"
3232
amplify_test:
3333
path: ../../test/amplify_test
3434
build_runner: ^2.4.0

packages/amplify_core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 1.8.0
2+
3+
### Features
4+
- feat: deprecate `Storage.move()` API ([#4638](https://github.com/aws-amplify/amplify-flutter/pull/4638))
5+
- feat: update `built_value` version constraint ([#4634](https://github.com/aws-amplify/amplify-flutter/pull/4634))
6+
- feat: update plus plugins version ([#4619](https://github.com/aws-amplify/amplify-flutter/pull/4619))
7+
8+
### Fixes
9+
- fix(api): Paginated GraphQL preserve request params ([#4605](https://github.com/aws-amplify/amplify-flutter/pull/4605))
10+
- fix(api): Web socket decode connection errors ([#4606](https://github.com/aws-amplify/amplify-flutter/pull/4606))
11+
112
## 1.7.0
213

314
### Features

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: 4 additions & 4 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: 1.7.0
3+
version: 1.8.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,8 +10,8 @@ environment:
1010

1111
dependencies:
1212
async: ^2.10.0
13-
aws_common: ">=0.6.2 <0.7.0"
14-
aws_signature_v4: ">=0.5.0 <0.6.0"
13+
aws_common: ">=0.6.4 <0.7.0"
14+
aws_signature_v4: ">=0.5.2 <0.6.0"
1515
collection: ^1.15.0
1616
graphs: ^2.1.0
1717
intl: ">=0.18.0 <1.0.0"
@@ -23,7 +23,7 @@ dependencies:
2323
uuid: ">=3.0.6 <5.0.0"
2424

2525
dev_dependencies:
26-
amplify_lints: ">=3.0.2 <3.1.0"
26+
amplify_lints: ">=3.1.0 <3.2.0"
2727
build_runner: ^2.4.0
2828
build_test: ^2.1.5
2929
build_version: ^2.1.1

packages/amplify_datastore/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.8.0
2+
3+
### Features
4+
- feat: update plus plugins version ([#4619](https://github.com/aws-amplify/amplify-flutter/pull/4619))
5+
16
## 1.7.0
27

38
- chore(datastore): Amplify Swift version bump to 1.30.7 ([#4454](https://github.com/aws-amplify/amplify-flutter/pull/4454))

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: 1.7.0
3+
version: 1.8.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: ">=1.7.0 <1.8.0"
16-
amplify_core: ">=1.7.0 <1.8.0"
15+
amplify_datastore_plugin_interface: ">=1.8.0 <1.9.0"
16+
amplify_core: ">=1.8.0 <1.9.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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.8.0
2+
3+
### Features
4+
- feat: update plus plugins version ([#4619](https://github.com/aws-amplify/amplify-flutter/pull/4619))
5+
16
## 1.7.0
27

38
- 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: 1.7.0
3+
version: 1.8.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: ">=1.7.0 <1.8.0"
13+
amplify_core: ">=1.8.0 <1.9.0"
1414
collection: ^1.15.0
1515
flutter:
1616
sdk: flutter

packages/amplify_lints/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.1.0
2+
3+
### Features
4+
- feat: update plus plugins version ([#4619](https://github.com/aws-amplify/amplify-flutter/pull/4619))
5+
16
## 3.0.2
27

38
- Minor bug fixes and improvements

0 commit comments

Comments
 (0)