Skip to content

Commit 4156ce5

Browse files
Jordan-NelsonDillon Nys
authored andcommitted
chore(version): Bump version
- fix(auth)!: Fetch Auth Session offline behavior ([aws-amplify#2585](aws-amplify#2585)) - fix(api): do not include null values in ModelMutations.create ([aws-amplify#2504](aws-amplify#2504)) - fix(api): model helpers use targetNames in schemas with CPK enabled ([aws-amplify#2559](aws-amplify#2559)) - fix(auth): Clear credentials before redirect on Web ([aws-amplify#2603](aws-amplify#2603)) - fix(auth): Refresh token in non-state machine calls ([aws-amplify#2572](aws-amplify#2572)) - fix(authenticator): ARB syntax ([aws-amplify#2560](aws-amplify#2560)) - fix(aws_common): AWSFile contentType getter should not throw exception - fix(datastore): prevent unhandled exception crashing App rebuilding sync expression - fix(storage): incorrect transferred bytes emitted from upload task - feat(analytics): Legacy data migration of Pinpoint Endpoint ID ([aws-amplify#2489](aws-amplify#2489)) - feat(smithy_aws): add copyWith to S3ClientConfig - feat(storage): allow configuring transfer acceleration Updated-Components: Amplify Flutter, Amplify Dart, Amplify UI, DB Common, Secure Storage, AWS Common, Smithy, Worker Bee
1 parent 4ccfd90 commit 4156ce5

File tree

97 files changed

+400
-377
lines changed

Some content is hidden

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

97 files changed

+400
-377
lines changed

example/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ environment:
77
flutter: ">=3.0.0"
88

99
dependencies:
10-
amplify_flutter: ^1.0.0-0
11-
amplify_analytics_pinpoint: ^1.0.0-0
12-
amplify_auth_cognito: ^1.0.0-0
13-
amplify_storage_s3: ^1.0.0-0
10+
amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5"
11+
amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5"
12+
amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5"
13+
amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5"
1414
file_picker: ^5.0.0
1515
flutter:
1616
sdk: flutter

infra/pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ environment:
55
sdk: ">=2.18.0 <3.0.0"
66

77
dependencies:
8-
amplify_core:
9-
path: ../packages/amplify_core
8+
amplify_core: ">=1.0.0-next.4 <1.0.0-next.5"
109
path: any

packages/aft/pubspec.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ environment:
99
dependencies:
1010
args: ^2.3.0
1111
async: ^2.8.0
12-
aws_common:
13-
path: ../aws_common
12+
aws_common: ">=0.4.0 <0.5.0"
1413
built_collection: ^5.0.0
1514
built_value: ">=8.4.0 <8.5.0"
1615
checked_yaml: ^2.0.0
@@ -37,8 +36,7 @@ dependencies:
3736
ref: 6cbbec2abbf6a54074ae1005c06a26dfb14a86c8
3837
pub_semver: ^2.1.1
3938
pubspec_parse: ^1.2.0
40-
smithy:
41-
path: ../smithy/smithy
39+
smithy: ">=0.4.0+1 <0.5.0"
4240
smithy_codegen:
4341
path: ../smithy/smithy_codegen
4442
stream_transform: ^2.0.0

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 1.0.0-next.4
2+
3+
### Breaking Changes
4+
- fix(auth)!: Fetch Auth Session offline behavior ([#2585](https://github.com/aws-amplify/amplify-flutter/pull/2585))
5+
6+
### Fixes
7+
- fix(api): do not include null values in ModelMutations.create ([#2504](https://github.com/aws-amplify/amplify-flutter/pull/2504))
8+
- fix(api): model helpers use targetNames in schemas with CPK enabled ([#2559](https://github.com/aws-amplify/amplify-flutter/pull/2559))
9+
- fix(auth): SessionExpired Auth Hub event ([#2609](https://github.com/aws-amplify/amplify-flutter/pull/2609))
10+
- fix(datastore): prevent unhandled exception crashing App rebuilding sync expression
11+
12+
### Features
13+
- feat(analytics): Legacy data migration of Pinpoint Endpoint ID ([#2489](https://github.com/aws-amplify/amplify-flutter/pull/2489))
14+
115
## 1.0.0-next.3
216

317
### Breaking Changes

packages/amplify/amplify_flutter/example/pubspec.yaml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,12 @@ environment:
66
sdk: ">=2.17.0 <3.0.0"
77

88
dependencies:
9-
amplify_analytics_pinpoint:
10-
path: ../../../analytics/amplify_analytics_pinpoint
11-
amplify_api:
12-
path: ../../../api/amplify_api
13-
amplify_auth_cognito:
14-
path: ../../../auth/amplify_auth_cognito
15-
amplify_datastore:
16-
path: ../../../amplify_datastore
17-
amplify_flutter:
18-
path: ../
19-
amplify_storage_s3:
20-
path: ../../../storage/amplify_storage_s3
9+
amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5"
10+
amplify_api: ">=1.0.0-next.4 <1.0.0-next.5"
11+
amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5"
12+
amplify_datastore: ">=1.0.0-next.4 <1.0.0-next.5"
13+
amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5"
14+
amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5"
2115
flutter:
2216
sdk: flutter
2317

packages/amplify/amplify_flutter/pubspec.yaml

Lines changed: 11 additions & 11 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.0.0-next.3
3+
version: 1.0.0-next.4
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify/amplify_flutter
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -19,25 +19,25 @@ platforms:
1919
web:
2020

2121
dependencies:
22-
amplify_core: ">=1.0.0-next.3 <1.0.0-next.4"
23-
amplify_datastore_plugin_interface: ">=1.0.0-next.3 <1.0.0-next.4"
24-
amplify_flutter_android: ">=1.0.0-next.3 <1.0.0-next.4"
25-
amplify_flutter_ios: ">=1.0.0-next.3 <1.0.0-next.4"
22+
amplify_core: ">=1.0.0-next.4 <1.0.0-next.5"
23+
amplify_datastore_plugin_interface: ">=1.0.0-next.4 <1.0.0-next.5"
24+
amplify_flutter_android: ">=1.0.0-next.4 <1.0.0-next.5"
25+
amplify_flutter_ios: ">=1.0.0-next.4 <1.0.0-next.5"
2626
amplify_secure_storage: ">=0.1.4+1 <0.2.0"
27-
aws_common: ">=0.3.5+1 <0.4.0"
27+
aws_common: ">=0.4.0 <0.5.0"
2828
collection: ^1.15.0
2929
flutter:
3030
sdk: flutter
3131
meta: ^1.7.0
3232
plugin_platform_interface: ^2.0.0
3333

3434
dev_dependencies:
35-
amplify_analytics_pinpoint:
36-
amplify_api:
37-
amplify_auth_cognito:
38-
amplify_datastore:
35+
amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5"
36+
amplify_api: ">=1.0.0-next.4 <1.0.0-next.5"
37+
amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5"
38+
amplify_datastore: ">=1.0.0-next.4 <1.0.0-next.5"
3939
amplify_lints: ^2.0.0
40-
amplify_storage_s3:
40+
amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5"
4141
amplify_test:
4242
path: ../../amplify_test
4343
build_runner: ^2.0.0

packages/amplify/amplify_flutter_android/CHANGELOG.md

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

37
- Minor bug fixes and improvements

packages/amplify/amplify_flutter_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter_android
22
description: The method channel implementation for amplify_flutter on Android
3-
version: 1.0.0-next.3
3+
version: 1.0.0-next.4
44
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify/amplify_flutter_android
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues

packages/amplify/amplify_flutter_ios/CHANGELOG.md

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

37
- Minor bug fixes and improvements

packages/amplify/amplify_flutter_ios/example/pubspec.yaml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,20 @@ environment:
88
flutter: ">=3.0.0"
99

1010
dependencies:
11-
amplify_flutter_ios:
12-
path: ../
11+
amplify_flutter_ios: ">=1.0.0-next.4 <1.0.0-next.5"
1312
cupertino_icons: ^1.0.2
1413
flutter:
1514
sdk: flutter
1615

1716
dev_dependencies:
18-
amplify_analytics_pinpoint: 1.0.0-next.0
19-
amplify_api: 1.0.0-next.0
20-
amplify_auth_cognito: 1.0.0-next.0
21-
amplify_core: 1.0.0-next.0
22-
amplify_datastore: 1.0.0-next.0
23-
amplify_flutter: 1.0.0-next.0
17+
amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5"
18+
amplify_api: ">=1.0.0-next.4 <1.0.0-next.5"
19+
amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5"
20+
amplify_core: ">=1.0.0-next.4 <1.0.0-next.5"
21+
amplify_datastore: ">=1.0.0-next.4 <1.0.0-next.5"
22+
amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5"
2423
amplify_lints: ^2.0.0
25-
amplify_storage_s3: 1.0.0-next.0
24+
amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5"
2625
amplify_test:
2726
path: ../../../amplify_test
2827
flutter_test:

0 commit comments

Comments
 (0)