Skip to content

Commit 82b7676

Browse files
authored
chore(version): Cherry pick - Bump version (#4522)
1 parent c8794c1 commit 82b7676

File tree

37 files changed

+167
-53
lines changed

37 files changed

+167
-53
lines changed

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,33 @@
1+
## 1.7.0
2+
3+
### Features
4+
5+
- feat(api): add copyWith to GraphQLRequest ([#4365](https://github.com/aws-amplify/amplify-flutter/pull/4365))
6+
7+
### Fixes
8+
9+
- fix: `google.crypto.tink` version constraint ([#4434](https://github.com/aws-amplify/amplify-flutter/pull/4434))
10+
11+
### Chores
12+
13+
- chore(datastore): Amplify Swift version bump to 1.30.7 ([#4454](https://github.com/aws-amplify/amplify-flutter/pull/4454))
14+
115
## 1.6.1
216

317
### Fixes
18+
419
- fix(api): GraphQL Model Helpers support lowercase model names #4143 (#4144)
520
- fix(core): pub docs ([#4049](https://github.com/aws-amplify/amplify-flutter/pull/4049))
621
- fix(datastore): emit observeQuery snapshot when model create mutation results in an updated model ([#4084](https://github.com/aws-amplify/amplify-flutter/pull/4084))
722

823
## 1.6.0
924

1025
### Features
26+
1127
- feat: rename sendUserAttributeVerificationCode ([#3759](https://github.com/aws-amplify/amplify-flutter/pull/3759))
1228

1329
### Fixes
30+
1431
- fix(analytics): allow nullable userProfile
1532
- fix(pub): ignore templates folder during analysis ([#4009](https://github.com/aws-amplify/amplify-flutter/pull/4009))
1633
- fix: remove exception during token timeout ([#3939](https://github.com/aws-amplify/amplify-flutter/pull/3939))

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: 1.6.1
3+
version: 1.7.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: ">=1.6.0 <1.7.0"
22+
amplify_core: ">=1.7.0 <1.8.0"
2323
amplify_secure_storage: ">=0.4.0+6 <0.5.0"
2424
aws_common: ">=0.6.0 <0.7.0"
2525
collection: ^1.15.0

packages/amplify_core/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1+
## 1.7.0
2+
3+
### Features
4+
5+
- feat(api): add copyWith to GraphQLRequest ([#4365](https://github.com/aws-amplify/amplify-flutter/pull/4365))
6+
7+
### Fixes
8+
9+
- fix: `google.crypto.tink` version constraint ([#4434](https://github.com/aws-amplify/amplify-flutter/pull/4434))
10+
11+
### Chores
12+
13+
- chore(datastore): Amplify Swift version bump to 1.30.7 ([#4454](https://github.com/aws-amplify/amplify-flutter/pull/4454))
14+
115
## 1.6.3
216

317
### Fixes
18+
419
- fix(auth): forget local device only if matches ([#4060](https://github.com/aws-amplify/amplify-flutter/pull/4060))
520
- fix: Bumped built_value to ">=8.6.0 <8.9.0" and built_value_generator to 8.8.1
621
- fix: Bumped drift to ">=2.14.0 <2.15.0" and drift_dev to ">=2.14.0 <2.15.0".
@@ -9,21 +24,25 @@
924
## 1.6.2
1025

1126
### Fixes
27+
1228
- fix(api): GraphQL Model Helpers support lowercase model names #4143 (#4144)
1329
- fix(core): pub docs ([#4049](https://github.com/aws-amplify/amplify-flutter/pull/4049))
1430
- fix(datastore): emit observeQuery snapshot when model create mutation results in an updated model ([#4084](https://github.com/aws-amplify/amplify-flutter/pull/4084))
1531

1632
## 1.6.1
1733

1834
### Fixes
35+
1936
- fix(core): pub docs ([#4049](https://github.com/aws-amplify/amplify-flutter/pull/4049))
2037

2138
## 1.6.0
2239

2340
### Features
41+
2442
- feat: rename sendUserAttributeVerificationCode ([#3759](https://github.com/aws-amplify/amplify-flutter/pull/3759))
2543

2644
### Fixes
45+
2746
- fix(analytics): allow nullable userProfile
2847
- fix(auth): use loadCredentials to check login state
2948
- fix(pub): ignore templates folder during analysis ([#4009](https://github.com/aws-amplify/amplify-flutter/pull/4009))

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: 1 addition & 1 deletion
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.6.3
3+
version: 1.7.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

packages/amplify_datastore/CHANGELOG.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.7.0
2+
3+
- chore(datastore): Amplify Swift version bump to 1.30.7 ([#4454](https://github.com/aws-amplify/amplify-flutter/pull/4454))
4+
15
## 1.6.0
26

37
- Minor bug fixes and improvements
@@ -17,11 +21,13 @@
1721
## 1.4.0
1822

1923
### Fixes
24+
2025
- fix(datastore): Use platform thread ([#3607](https://github.com/aws-amplify/amplify-flutter/pull/3607))
2126

2227
## 1.3.4
2328

2429
### Fixes
30+
2531
- fix(datastore): Pin `Starscream`
2632

2733
## 1.3.3
@@ -31,17 +37,20 @@
3137
## 1.3.2
3238

3339
### Fixes
40+
3441
- fix(datastore): Custom list serde ([#3544](https://github.com/aws-amplify/amplify-flutter/pull/3544))
3542

3643
## 1.3.1
3744

3845
### Fixes
46+
3947
- fix(datastore): hot restart ([#3497](https://github.com/aws-amplify/amplify-flutter/pull/3497))
4048
- fix(datastore): make event history list thread safe ([#3509](https://github.com/aws-amplify/amplify-flutter/pull/3509))
4149

4250
## 1.3.0
4351

4452
### Features
53+
4554
- feat(datastore): Adds DataStoreHubEventType to DataStoreHubEvents ([#3454](https://github.com/aws-amplify/amplify-flutter/pull/3454))
4655

4756
### Chores
@@ -59,27 +68,31 @@
5968
## 1.1.0-supports-only-mobile+1
6069

6170
### Fixes
71+
6272
- fix(datastore): support nested predicates for observe and observeQuery ([#3029](https://github.com/aws-amplify/amplify-flutter/pull/3029))
6373

6474
## 1.1.0-supports-only-mobile
6575

6676
### Features
77+
6778
- Dart 3 support (must update Dart SDK constraint to `^3.0.0`)
6879

6980
### Fixes
81+
7082
- fix(repo): AGP 8.0 compatibility ([#2942](https://github.com/aws-amplify/amplify-flutter/pull/2942))
7183

7284
## 1.0.0-supports-only-mobile.0+1
7385

7486
### Fixes
87+
7588
- fix(repo): Flutter 3.3 support
7689

7790
## 1.0.0-supports-only-mobile.0
7891

79-
Version 1 of the Amplify libraries have been released to support all the platforms Flutter supports.
80-
When interacting with GraphQL APIs, use the API category for all platforms or DataStore for iOS and Android.
81-
This is because we retained DataStore on the original Android & iOS implementation. We’re
82-
looking to bring data synchronization and offline-first experiences to the web and desktop in the
92+
Version 1 of the Amplify libraries have been released to support all the platforms Flutter supports.
93+
When interacting with GraphQL APIs, use the API category for all platforms or DataStore for iOS and Android.
94+
This is because we retained DataStore on the original Android & iOS implementation. We’re
95+
looking to bring data synchronization and offline-first experiences to the web and desktop in the
8396
future and would love to get your feedback on [this GitHub issue](https://github.com/aws-amplify/amplify-flutter/issues/234).
8497

8598
As always, you can find us on [GitHub](https://github.com/aws-amplify/amplify-flutter/) and
@@ -96,11 +109,13 @@ As always, you can find us on [GitHub](https://github.com/aws-amplify/amplify-fl
96109
## 1.0.0-next.7
97110

98111
### Fixes
112+
99113
- fix(android): Bump Amplify Android to 2.4.1
100114
- fix(datastore): support use of java8 features in the example App
101115
- fix(ios): Bump Amplify iOS to 1.29.1
102116

103117
### Breaking Changes
118+
104119
- chore(datastore)!: Reorganize + import cleanup ([#2760](https://github.com/aws-amplify/amplify-flutter/pull/2760))
105120

106121
## 1.0.0-next.6
@@ -114,11 +129,13 @@ As always, you can find us on [GitHub](https://github.com/aws-amplify/amplify-fl
114129
## 1.0.0-next.4
115130

116131
### Fixes
132+
117133
- fix(datastore): prevent unhandled exception crashing App rebuilding sync expression
118134

119135
## 1.0.0-next.3
120136

121137
### Breaking Changes
138+
122139
- refactor(core)!: Migrate exception types
123140

124141
## 1.0.0-next.2
@@ -128,13 +145,15 @@ As always, you can find us on [GitHub](https://github.com/aws-amplify/amplify-fl
128145
## 1.0.0-next.1+1
129146

130147
### Fixes
148+
131149
- fix(datastore): adapt amplify-ios CPK fix breaking change
132150
- fix(datastore): cpk errors on a custom type ([#2134](https://github.com/aws-amplify/amplify-flutter/pull/2134))
133151
- fix(datastore): enable java8 desugaring for amplify-android datastore plugin
134152
- fix(datastore): missing query field model name cause ambigous column … ([#1941](https://github.com/aws-amplify/amplify-flutter/pull/1941))
135153
- fix(datastore): update dependency importing paths
136154

137155
### Features
156+
138157
- feat(datastore): add targetNames support for codegen
139158
- feat(datastore): custom primary key Flutter native implementation
140159

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.6.0
3+
version: 1.7.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.6.0 <1.7.0"
16-
amplify_core: ">=1.6.0 <1.7.0"
15+
amplify_datastore_plugin_interface: ">=1.7.0 <1.8.0"
16+
amplify_core: ">=1.7.0 <1.8.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+
## 1.7.0
2+
3+
- Minor bug fixes and improvements
4+
15
## 1.6.1
26

37
### Fixes

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.6.1
3+
version: 1.7.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.10.0"
1111

1212
dependencies:
13-
amplify_core: ">=1.6.2 <1.7.0"
13+
amplify_core: ">=1.7.0 <1.8.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+
## 1.7.0
2+
3+
- Minor bug fixes and improvements
4+
15
## 1.6.3
26

37
### Fixes

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: 1.6.3
3+
version: 1.7.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.3.6 <0.4.0"
23-
amplify_core: ">=1.6.2 <1.7.0"
22+
amplify_analytics_pinpoint_dart: ">=0.3.7 <0.4.0"
23+
amplify_core: ">=1.7.0 <1.8.0"
2424
amplify_db_common: ">=0.3.3 <0.4.0"
2525
amplify_secure_storage: ">=0.4.0+6 <0.5.0"
2626
aws_common: ">=0.6.3 <0.7.0"

packages/analytics/amplify_analytics_pinpoint_dart/CHANGELOG.md

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

37
### Fixes

packages/analytics/amplify_analytics_pinpoint_dart/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/analytics/amplify_analytics_pinpoint_dart/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_dart
22
description: A Dart-only implementation of the Amplify Analytics plugin for Pinpoint.
3-
version: 0.3.6
3+
version: 0.3.7
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_dart
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -9,7 +9,7 @@ environment:
99
sdk: ^3.0.0
1010

1111
dependencies:
12-
amplify_core: ">=1.6.2 <1.7.0"
12+
amplify_core: ">=1.7.0 <1.8.0"
1313
amplify_db_common_dart: ">=0.3.5 <0.4.0"
1414
amplify_secure_storage_dart: ">=0.4.3 <0.5.0"
1515
aws_common: ">=0.6.3 <0.7.0"

packages/api/amplify_api/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.7.0
2+
3+
### Features
4+
- feat(api): add copyWith to GraphQLRequest ([#4365](https://github.com/aws-amplify/amplify-flutter/pull/4365))
5+
16
## 1.6.2
27

38
### Fixes

packages/api/amplify_api/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_api
22
description: The Amplify Flutter API category plugin, supporting GraphQL and REST operations.
3-
version: 1.6.2
3+
version: 1.7.0
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/api/amplify_api
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -19,9 +19,9 @@ platforms:
1919
web:
2020

2121
dependencies:
22-
amplify_api_dart: ">=0.3.4 <0.4.0"
23-
amplify_core: ">=1.6.2 <1.7.0"
24-
amplify_flutter: ">=1.6.1 <1.7.0"
22+
amplify_api_dart: ">=0.4.0 <0.5.0"
23+
amplify_core: ">=1.7.0 <1.8.0"
24+
amplify_flutter: ">=1.7.0 <1.8.0"
2525
connectivity_plus: ">=4.0.1 <6.0.0"
2626
flutter:
2727
sdk: flutter

packages/api/amplify_api_dart/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.4.0
2+
3+
### Features
4+
- feat(api): add copyWith to GraphQLRequest ([#4365](https://github.com/aws-amplify/amplify-flutter/pull/4365))
5+
16
## 0.3.4
27

38
### Fixes

packages/api/amplify_api_dart/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_api_dart
22
description: The Amplify API category plugin in Dart-only, supporting GraphQL and REST operations.
3-
version: 0.3.4
3+
version: 0.4.0
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/api/amplify_api_dart
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -9,7 +9,7 @@ environment:
99
sdk: ^3.0.0
1010

1111
dependencies:
12-
amplify_core: ">=1.6.0 <1.7.0"
12+
amplify_core: ">=1.7.0 <1.8.0"
1313
async: ^2.10.0
1414
aws_common: ">=0.6.0 <0.7.0"
1515
collection: ^1.15.0

packages/auth/amplify_auth_cognito/CHANGELOG.md

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

37
### Fixes

0 commit comments

Comments
 (0)