Skip to content

Commit 51c0a22

Browse files
Dillon Nysdnys1
authored andcommitted
chore(version): Bump version
- Dart 3 support (must update Dart SDK constraint to `^3.0.0`) - feat(core): add granular model read operations ([#2611](#2611)) - fix(notifications): configure call hangs on Flutter app hot restart ([#3013](#3013)) - fix(repo): AGP 8.0 compatibility ([#2942](#2942)) - fix: convert AuthUserAttributeKey in updateUserAttributes Updated-Components: amplify_lints, Amplify Flutter, Amplify Dart, Amplify UI, DB Common, Secure Storage, AWS Common, Smithy, Worker Bee
1 parent d075bd9 commit 51c0a22

File tree

238 files changed

+741
-592
lines changed

Some content is hidden

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

238 files changed

+741
-592
lines changed

aft.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ dependencies:
1212
built_value: ">=8.5.0 <8.6.0"
1313
built_value_generator: 8.5.0
1414
code_builder: 4.4.0
15-
dart_style: 2.3.0
16-
drift: ">=2.4.0 <2.7.0"
15+
dart_style: 2.3.1
16+
drift: ">=2.4.0 <2.9.0"
1717
flutter_plugin_android_lifecycle: ^2.0.9
18-
json_annotation: ">=4.8.0 <4.9.0"
19-
json_serializable: 6.6.1
20-
intl: ">=0.17.0 <1.0.0"
18+
json_annotation: ">=4.8.1 <4.9.0"
19+
json_serializable: 6.6.2
20+
intl: ">=0.18.0 <1.0.0"
2121
mime: ^1.0.0
2222
pigeon: ^9.2.4
2323
stack_trace: ^1.10.0
@@ -27,8 +27,8 @@ dependencies:
2727

2828
# The current constraints for SDKs and OSs.
2929
environment:
30-
sdk: ">=3.0.0-0 <4.0.0"
31-
flutter: ">=3.10.0-0"
30+
sdk: ^3.0.0
31+
flutter: ">=3.10.0"
3232
android:
3333
minSdkVersion: "24"
3434
ios:

canaries/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: amplified_todo
22
publish_to: none
33

44
environment:
5-
sdk: ">=3.0.0-0 <4.0.0"
6-
flutter: ">=3.10.0-0"
5+
sdk: ^3.0.0
6+
flutter: ">=3.10.0"
77

88
dependencies:
99
amplify_analytics_pinpoint: ^1.0.0

infra/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: infra
22
publish_to: none
33

44
environment:
5-
sdk: ">=3.0.0-0 <4.0.0"
5+
sdk: ^3.0.0
66

77
dependencies:
8-
amplify_core: ">=1.0.0-next.8+1 <1.0.0-next.9"
8+
amplify_core: any
99
path: any

packages/aft/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.1.1
44
publish_to: none
55

66
environment:
7-
sdk: ">=3.0.0-0 <4.0.0"
7+
sdk: ^3.0.0
88

99
dependencies:
1010
args: ^2.3.0
@@ -19,7 +19,7 @@ dependencies:
1919
glob: ^2.1.0
2020
graphs: ^2.1.0
2121
http: ^0.13.0
22-
json_annotation: ">=4.8.0 <4.9.0"
22+
json_annotation: ">=4.8.1 <4.9.0"
2323
libgit2dart:
2424
path: external/libgit2dart
2525
markdown: ^5.0.0
@@ -54,7 +54,7 @@ dev_dependencies:
5454
amplify_lints: ">=2.0.2 <2.1.0"
5555
build_runner: ^2.4.0
5656
built_value_generator: 8.5.0
57-
json_serializable: 6.6.1
57+
json_serializable: 6.6.2
5858
test: ^1.22.1
5959

6060
executables:

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 1.1.0
2+
3+
### Features
4+
- Dart 3 support (must update Dart SDK constraint to `^3.0.0`)
5+
- feat(core): add granular model read operations ([#2611](https://github.com/aws-amplify/amplify-flutter/pull/2611))
6+
7+
### Fixes
8+
- fix(notifications): configure call hangs on Flutter app hot restart ([#3013](https://github.com/aws-amplify/amplify-flutter/pull/3013))
9+
- fix(repo): AGP 8.0 compatibility ([#2942](https://github.com/aws-amplify/amplify-flutter/pull/2942))
10+
- fix: wait for addPlugin prior to configuration ([#3018](https://github.com/aws-amplify/amplify-flutter/pull/3018))
11+
112
## 1.0.0
213

314
We are thrilled to release version 1.0 of the Amplify Flutter libraries!

packages/amplify/amplify_flutter/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description: Demonstrates how to use the Amplify Flutter client libraries.
33
publish_to: none
44

55
environment:
6-
flutter: ">=3.10.0-0"
7-
sdk: ">=3.0.0-0 <4.0.0"
6+
flutter: ">=3.10.0"
7+
sdk: ^3.0.0
88

99
dependencies:
1010
amplify_analytics_pinpoint: ">=1.0.0-next.8 <1.0.0-next.9"
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: amplify_flutter
22
description: The top level Flutter package for the AWS Amplify libraries.
3-
version: 1.0.0
3+
version: 1.1.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
77

88
environment:
9-
sdk: ">=3.0.0-0 <4.0.0"
10-
flutter: ">=3.10.0-0"
9+
sdk: ^3.0.0
10+
flutter: ">=3.10.0"
1111

1212
# Helps `pana` since we do not use Flutter plugins for most platforms
1313
platforms:
@@ -19,19 +19,19 @@ platforms:
1919
web:
2020

2121
dependencies:
22-
amplify_core: ">=1.0.0 <1.1.0"
23-
amplify_secure_storage: ">=0.3.0+3 <0.4.0"
24-
aws_common: ">=0.4.2+4 <0.5.0"
22+
amplify_core: ">=1.1.0 <1.2.0"
23+
amplify_secure_storage: ">=0.4.0 <0.5.0"
24+
aws_common: ">=0.5.0 <0.6.0"
2525
collection: ^1.15.0
2626
flutter:
2727
sdk: flutter
2828
meta: ^1.7.0
2929

3030
dev_dependencies:
31-
amplify_lints: ">=2.0.3 <2.1.0"
31+
amplify_lints: ">=3.0.0 <3.1.0"
3232
amplify_test:
3333
path: ../../test/amplify_test
3434
build_runner: ^2.4.0
3535
flutter_test:
3636
sdk: flutter
37-
json_serializable: 6.6.1
37+
json_serializable: 6.6.2

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.1.0
2+
3+
### Features
4+
- Dart 3 support (must update Dart SDK constraint to `^3.0.0`)
5+
- feat(core): add granular model read operations ([#2611](https://github.com/aws-amplify/amplify-flutter/pull/2611))
6+
7+
### Fixes
8+
- fix(auth): Fetch AWS credentials after Hosted UI login ([#2956](https://github.com/aws-amplify/amplify-flutter/pull/2956))
9+
- fix(auth): Transform network exceptions ([#2967](https://github.com/aws-amplify/amplify-flutter/pull/2967))
10+
- fix: wait for addPlugin prior to configuration ([#3018](https://github.com/aws-amplify/amplify-flutter/pull/3018))
11+
112
## 1.0.0
213

314
We are thrilled to release version 1.0 of the Amplify Flutter libraries!

packages/amplify_core/doc/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
77
publish_to: none
88

99
environment:
10-
sdk: ">=3.0.0-0 <4.0.0"
11-
flutter: ">=3.10.0-0"
10+
sdk: ^3.0.0
11+
flutter: ">=3.10.0"
1212

1313
dependencies:
1414
amplify_analytics_pinpoint: any

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.

0 commit comments

Comments
 (0)