Skip to content

Commit a669c14

Browse files
Dillon Nysdnys1
authored andcommitted
chore(version): v1.0.0-next.1
1 parent 2d08b00 commit a669c14

File tree

43 files changed

+227
-70
lines changed

Some content is hidden

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

43 files changed

+227
-70
lines changed

packages/amplify/amplify_flutter/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 1.0.0-next.1
2+
3+
### Breaking Changes
4+
5+
Three new categories have added support for Web + Desktop: API, Storage, and Analytics!
6+
7+
See our [docs](https://docs.amplify.aws/lib/q/platform/flutter/) for guides on how to migrate to these new versions.
8+
9+
- chore(api,core): change API types ([#2148](https://github.com/aws-amplify/amplify-flutter/pull/2148))
10+
- chore(storage): migrate interface and setup basic packages
11+
12+
### Features
13+
- feat(api): GraphQL Custom Request Headers ([#1938](https://github.com/aws-amplify/amplify-flutter/pull/1938))
14+
- feat(api): Subscription Reconnection ([#2074](https://github.com/aws-amplify/amplify-flutter/pull/2074))
15+
- feat(api): authorizationMode property for GraphQLRequest ([#2143](https://github.com/aws-amplify/amplify-flutter/pull/2143))
16+
- feat(core): add AWSFile cross platform file abstraction
17+
- feat(storage): add custom prefix resolver support
18+
- feat(storage): cancel SmithyOperation on upload file pause and cancel
19+
- feat(storage): expose operation control APIs for upload data operation
20+
- feat(storage): revise list API interface and add excludeSubPaths parameter
21+
22+
### Fixes
23+
- fix(api): correct subscription error handling ([#2179](https://github.com/aws-amplify/amplify-flutter/pull/2179))
24+
- fix(api): fix model helper util on web ([#2270](https://github.com/aws-amplify/amplify-flutter/pull/2270))
25+
126
## 1.0.0-next.0+5
227

328
### Features

packages/amplify/amplify_flutter/pubspec.yaml

Lines changed: 6 additions & 6 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.0+5
3+
version: 1.0.0-next.1
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,12 +19,12 @@ platforms:
1919
web:
2020

2121
dependencies:
22-
amplify_core: ">=1.0.0-next.0+3 <1.0.0-next.1"
23-
amplify_datastore_plugin_interface: ">=1.0.0-next.0+2 <1.0.0-next.1"
24-
amplify_flutter_android: ">=1.0.0-next.0 <1.0.0-next.1"
25-
amplify_flutter_ios: ">=1.0.0-next.0+2 <1.0.0-next.1"
22+
amplify_core: ">=1.0.0-next.1 <1.0.0-next.2"
23+
amplify_datastore_plugin_interface: ">=1.0.0-next.1 <1.0.0-next.2"
24+
amplify_flutter_android: ">=1.0.0-next.1 <1.0.0-next.2"
25+
amplify_flutter_ios: ">=1.0.0-next.1 <1.0.0-next.2"
2626
amplify_secure_storage: ">=0.1.3 <0.2.0"
27-
aws_common: ">=0.3.0 <0.4.0"
27+
aws_common: ">=0.3.1 <0.4.0"
2828
collection: ^1.15.0
2929
flutter:
3030
sdk: flutter

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.1
2+
3+
- Minor bug fixes and improvements
4+
15
## 1.0.0-next.0 (2022-08-02)
26

37
Initial developer preview release for all platforms.

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.0
3+
version: 1.0.0-next.1
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.1
2+
3+
- Minor bug fixes and improvements
4+
15
## 1.0.0-next.0+2
26

37
- Minor bug fixes and improvements

packages/amplify/amplify_flutter_ios/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_flutter_ios
22
description: The method channel implementation for amplify_flutter on iOS
3-
version: 1.0.0-next.0+2
3+
version: 1.0.0-next.1
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_ios
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -10,7 +10,7 @@ environment:
1010
flutter: ">=3.0.0"
1111

1212
dependencies:
13-
amplify_core: ">=1.0.0-next.0 <1.0.0-next.1"
13+
amplify_core: ">=1.0.0-next.1 <1.0.0-next.2"
1414
flutter:
1515
sdk: flutter
1616

packages/amplify_authenticator/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.0-next.1
2+
3+
### Fixes
4+
- fix(authenticator): remove navigator from tree for AuthenticatedState ([#2354](https://github.com/aws-amplify/amplify-flutter/pull/2354))
5+
16
## 1.0.0-next.0+5
27

38
### Fixes

packages/amplify_authenticator/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: amplify_authenticator
22
description: A prebuilt Sign In and Sign Up experience for the Amplify Auth category
3-
version: 1.0.0-next.0+5
3+
version: 1.0.0-next.1
44
homepage: https://ui.docs.amplify.aws/flutter/connected-components/authenticator
55
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify_authenticator
66
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
@@ -10,11 +10,11 @@ environment:
1010
flutter: ">=3.0.0"
1111

1212
dependencies:
13-
amplify_auth_cognito: ">=1.0.0-next.0+7 <1.0.0-next.2"
14-
amplify_core: ">=1.0.0-next.0+3 <1.0.0-next.1"
15-
amplify_flutter: ">=1.0.0-next.0+5 <1.0.0-next.1"
13+
amplify_auth_cognito: ">=1.0.0-next.1 <1.0.0-next.2"
14+
amplify_core: ">=1.0.0-next.1 <1.0.0-next.2"
15+
amplify_flutter: ">=1.0.0-next.1 <1.0.0-next.2"
1616
async: ^2.8.0
17-
aws_common: ">=0.3.0 <0.4.0"
17+
aws_common: ">=0.3.1 <0.4.0"
1818
collection: ^1.15.0
1919
flutter:
2020
sdk: flutter

packages/amplify_core/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 1.0.0-next.1
2+
3+
### Breaking Changes
4+
5+
Three new categories have added support for Web + Desktop: API, Storage, and Analytics!
6+
7+
See our [docs](https://docs.amplify.aws/lib/q/platform/flutter/) for guides on how to migrate to these new versions.
8+
9+
- chore(api,core): change API types ([#2148](https://github.com/aws-amplify/amplify-flutter/pull/2148))
10+
- chore(storage): migrate interface and setup basic packages
11+
12+
### Features
13+
- feat(api): GraphQL Custom Request Headers ([#1938](https://github.com/aws-amplify/amplify-flutter/pull/1938))
14+
- feat(api): Subscription Reconnection ([#2074](https://github.com/aws-amplify/amplify-flutter/pull/2074))
15+
- feat(api): authorizationMode property for GraphQLRequest ([#2143](https://github.com/aws-amplify/amplify-flutter/pull/2143))
16+
- feat(core): add AWSFile cross platform file abstraction
17+
- feat(storage): add custom prefix resolver support
18+
- feat(storage): cancel SmithyOperation on upload file pause and cancel
19+
- feat(storage): expose operation control APIs for upload data operation
20+
- feat(storage): revise list API interface and add excludeSubPaths parameter
21+
22+
### Fixes
23+
- fix(api): correct subscription error handling ([#2179](https://github.com/aws-amplify/amplify-flutter/pull/2179))
24+
- fix(api): fix model helper util on web ([#2270](https://github.com/aws-amplify/amplify-flutter/pull/2270))
25+
126
## 1.0.0-next.0+3
227

328
### Features

packages/amplify_core/lib/src/amplify_class.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ abstract class AmplifyClass {
145145
static AmplifyClass? instance;
146146

147147
/// The library version.
148-
String get version => '1.0.0-next.0+3';
148+
String get version => '1.0.0-next.1';
149149

150150
/// Resets the Amplify implementation, removing all traces of Amplify from
151151
/// the device.

0 commit comments

Comments
 (0)