Skip to content

Commit

Permalink
chore(version): Bump version
Browse files Browse the repository at this point in the history
### Features
- Publish push notifications plugin

### Fixes
- fix(auth): Cancel sign in ([#2840](#2840))

Updated-Components: amplify_flutter, amplify_flutter_ios, amplify_core, amplify_datastore, amplify_datastore_plugin_interface, amplify_analytics_pinpoint, amplify_analytics_pinpoint_dart, amplify_api, amplify_auth_cognito, amplify_auth_cognito_dart, aws_common, amplify_db_common, amplify_push_notifications, amplify_push_notifications_pinpoint, amplify_storage_s3, amplify_storage_s3_dart, Amplify UI, Secure Storage, Smithy, Worker Bee
  • Loading branch information
Dillon Nys authored and dnys1 committed Apr 12, 2023
1 parent 7efc00d commit 82b2139
Show file tree
Hide file tree
Showing 52 changed files with 189 additions and 84 deletions.
2 changes: 1 addition & 1 deletion infra/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ environment:
sdk: ">=2.18.0 <4.0.0"

dependencies:
amplify_core: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_core: ">=1.0.0-next.8+1 <1.0.0-next.9"
path: any
4 changes: 2 additions & 2 deletions packages/aft/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
dependencies:
args: ^2.3.0
async: ^2.10.0
aws_common: ">=0.4.2+2 <0.5.0"
aws_common: ">=0.4.2+3 <0.5.0"
built_collection: ^5.0.0
built_value: ">=8.4.0 <8.5.0"
checked_yaml: ^2.0.0
Expand All @@ -29,7 +29,7 @@ dependencies:
path: any
pub_semver: ^2.1.1
pubspec_parse: ^1.2.0
smithy: ">=0.4.0+5 <0.5.0"
smithy: ">=0.4.0+6 <0.5.0"
smithy_codegen:
path: ../smithy/smithy_codegen
stream_transform: ^2.0.0
Expand Down
16 changes: 16 additions & 0 deletions packages/amplify/amplify_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 1.0.0-next.8+1

### Features
- feat(notifications): implement push notification Flutter iOS module ([#2707](https://github.com/aws-amplify/amplify-flutter/pull/2707))
- feat(notifications): killed state notification handling and Analytics integration ([#2747](https://github.com/aws-amplify/amplify-flutter/pull/2747))
- feat(push): interfaces, category function and types added for push

### Fixes
- fix(core): formatting issues in notifications data types
- fix(notifications): Analytics naming updates, Android test fixes and token received bug fix ([#2824](https://github.com/aws-amplify/amplify-flutter/pull/2824))
- fix(notifications): analyzer reported issues
- fix(notifications): correct rebased codebase
- fix(notifications): killed state behavior correction, no longer calls lib/main.dart ([#2759](https://github.com/aws-amplify/amplify-flutter/pull/2759))
- fix(notifications): the luanch notification should be nullified on some occasions
- fix(notifications): type casting error and clean up example app ([#2817](https://github.com/aws-amplify/amplify-flutter/pull/2817))

## 1.0.0-next.8

### Breaking Changes
Expand Down
20 changes: 10 additions & 10 deletions packages/amplify/amplify_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_flutter
description: The top level Flutter package for the AWS Amplify libraries.
version: 1.0.0-next.8
version: 1.0.0-next.8+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify/amplify_flutter
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand All @@ -19,25 +19,25 @@ platforms:
web:

dependencies:
amplify_core: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_datastore_plugin_interface: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_core: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_datastore_plugin_interface: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_flutter_android: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_flutter_ios: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_flutter_ios: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_secure_storage: ">=0.3.0 <0.4.0"
aws_common: ">=0.4.0+1 <0.5.0"
aws_common: ">=0.4.2+3 <0.5.0"
collection: ^1.15.0
flutter:
sdk: flutter
meta: ^1.7.0
plugin_platform_interface: ^2.0.0

dev_dependencies:
amplify_analytics_pinpoint: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_api: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_auth_cognito: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_datastore: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_analytics_pinpoint: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_api: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_auth_cognito: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_datastore: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_lints: ">=2.0.2 <2.1.0"
amplify_storage_s3: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_storage_s3: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_test: any
build_runner: ^2.0.0
flutter_test:
Expand Down
4 changes: 4 additions & 0 deletions packages/amplify/amplify_flutter_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-next.8+1

- Minor bug fixes and improvements

## 1.0.0-next.8

- Minor bug fixes and improvements
Expand Down
2 changes: 1 addition & 1 deletion packages/amplify/amplify_flutter_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_flutter_ios
description: The method channel implementation for amplify_flutter on iOS
version: 1.0.0-next.8
version: 1.0.0-next.8+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify/amplify_flutter_ios
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand Down
12 changes: 12 additions & 0 deletions packages/amplify_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 1.0.0-next.8+1

### Features
- feat(notifications): implement push notification Flutter iOS module ([#2707](https://github.com/aws-amplify/amplify-flutter/pull/2707))
- feat(notifications): killed state notification handling and Analytics integration ([#2747](https://github.com/aws-amplify/amplify-flutter/pull/2747))
- feat(push): interfaces, category function and types added for push

### Fixes
- fix(auth): Cancel sign in ([#2840](https://github.com/aws-amplify/amplify-flutter/pull/2840))
- fix(core): formatting issues in notifications data types
- fix(notifications): Analytics naming updates, Android test fixes and token received bug fix ([#2824](https://github.com/aws-amplify/amplify-flutter/pull/2824))

## 1.0.0-next.8

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/amplify_core/lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/amplify_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_core
description: The base package containing common types and utilities that are shared across the Amplify Flutter packages.
version: 1.0.0-next.8
version: 1.0.0-next.8+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify_core
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand All @@ -10,7 +10,7 @@ environment:

dependencies:
async: ^2.10.0
aws_common: ">=0.4.2+2 <0.5.0"
aws_common: ">=0.4.2+3 <0.5.0"
aws_signature_v4: ">=0.3.1+5 <0.4.0"
collection: ^1.15.0
intl: ">=0.17.0 <1.0.0"
Expand Down
4 changes: 4 additions & 0 deletions packages/amplify_datastore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-next.8+1

- Minor bug fixes and improvements

## 1.0.0-next.8

- Minor bug fixes and improvements
Expand Down
4 changes: 2 additions & 2 deletions packages/amplify_datastore/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_datastore
description: The Amplify Flutter DataStore category plugin, providing a queryable, on-device data store.
version: 1.0.0-next.8
version: 1.0.0-next.8+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify_datastore
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand All @@ -12,7 +12,7 @@ environment:
dependencies:
flutter:
sdk: flutter
amplify_datastore_plugin_interface: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_datastore_plugin_interface: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_core: ">=1.0.0-next.8 <1.0.0-next.9"
plugin_platform_interface: ^2.0.0
meta: ^1.7.0
Expand Down
4 changes: 4 additions & 0 deletions packages/amplify_datastore_plugin_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-next.8+1

- Minor bug fixes and improvements

## 1.0.0-next.8

- Minor bug fixes and improvements
Expand Down
2 changes: 1 addition & 1 deletion packages/amplify_datastore_plugin_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_datastore_plugin_interface
description: The platform interface for the DataStore module of Amplify Flutter.
version: 1.0.0-next.8
version: 1.0.0-next.8+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify_datastore_plugin_interface
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand Down
4 changes: 4 additions & 0 deletions packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-next.8+1

- Minor bug fixes and improvements

## 1.0.0-next.8

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics/amplify_analytics_pinpoint/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_analytics_pinpoint
description: The Amplify Flutter Analytics category plugin using the AWS Pinpoint provider.
version: 1.0.0-next.8
version: 1.0.0-next.8+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/analytics/amplify_analytics_pinpoint
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.0+1

- Minor bug fixes and improvements

## 0.2.0

### Breaking Changes
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions packages/analytics/amplify_analytics_pinpoint_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_analytics_pinpoint_dart
description: A Dart-only implementation of the Amplify Analytics plugin for Pinpoint.
version: 0.2.0
version: 0.2.0+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/analytics/amplify_analytics_pinpoint_dart
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand All @@ -9,10 +9,10 @@ environment:
sdk: ">=2.18.0 <4.0.0"

dependencies:
amplify_core: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_core: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_db_common_dart: ">=0.2.0+5 <0.3.0"
amplify_secure_storage_dart: ">=0.3.0+1 <0.4.0"
aws_common: ">=0.4.2 <0.5.0"
amplify_secure_storage_dart: ">=0.3.0+2 <0.4.0"
aws_common: ">=0.4.2+3 <0.5.0"
aws_signature_v4: ">=0.3.1+3 <0.4.0"
built_collection: ^5.0.0
built_value: ">=8.4.0 <8.5.0"
Expand All @@ -21,8 +21,8 @@ dependencies:
intl: ">=0.17.0 <1.0.0"
meta: ^1.7.0
path: ^1.8.0
smithy: ">=0.4.0+4 <0.5.0"
smithy_aws: ">=0.4.1+2 <0.5.0"
smithy: ">=0.4.0+6 <0.5.0"
smithy_aws: ">=0.4.1+3 <0.5.0"
uuid: ">=3.0.6 <=3.0.7"


Expand Down
4 changes: 4 additions & 0 deletions packages/api/amplify_api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-next.8+1

- Minor bug fixes and improvements

## 1.0.0-next.8

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/api/amplify_api/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_api
description: The Amplify Flutter API category plugin, supporting GraphQL and REST operations.
version: 1.0.0-next.8
version: 1.0.0-next.8+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/api/amplify_api
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand All @@ -23,7 +23,7 @@ dependencies:
amplify_api_dart: ">=0.2.0+2 <0.3.0"
amplify_api_ios: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_core: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_flutter: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_flutter: ">=1.0.0-next.8+1 <1.0.0-next.9"
connectivity_plus: ^3.0.2
flutter:
sdk: flutter
Expand Down
4 changes: 4 additions & 0 deletions packages/auth/amplify_auth_cognito/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-next.8+1

- Minor bug fixes and improvements

## 1.0.0-next.8

### Breaking Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/auth/amplify_auth_cognito/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_auth_cognito
description: The Amplify Flutter Auth category plugin using the AWS Cognito provider.
version: 1.0.0-next.8
version: 1.0.0-next.8+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/auth/amplify_auth_cognito
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand All @@ -19,14 +19,14 @@ platforms:
web:

dependencies:
amplify_analytics_pinpoint: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_analytics_pinpoint: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_analytics_pinpoint_dart: ">=0.2.0 <0.3.0"
amplify_auth_cognito_android: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_auth_cognito_dart: ">=0.9.0 <0.10.0"
amplify_auth_cognito_dart: ">=0.9.0+1 <0.10.0"
amplify_auth_cognito_ios: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_core: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_flutter: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_secure_storage: ">=0.3.0+1 <0.4.0"
amplify_flutter: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_secure_storage: ">=0.3.0+2 <0.4.0"
async: ^2.10.0
flutter:
sdk: flutter
Expand Down
5 changes: 5 additions & 0 deletions packages/auth/amplify_auth_cognito_dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.9.0+1

### Fixes
- fix(auth): Cancel sign in ([#2840](https://github.com/aws-amplify/amplify-flutter/pull/2840))

## 0.9.0

### Breaking Changes
Expand Down
18 changes: 9 additions & 9 deletions packages/auth/amplify_auth_cognito_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_auth_cognito_dart
description: A Dart-only implementation of the Amplify Auth plugin for Cognito.
version: 0.9.0
version: 0.9.0+1
homepage: https://docs.amplify.aws/lib/q/platform/flutter/
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/auth/amplify_auth_cognito_dart
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand All @@ -9,11 +9,11 @@ environment:
sdk: ">=2.18.0 <4.0.0"

dependencies:
amplify_analytics_pinpoint_dart: ">=0.2.0 <0.3.0"
amplify_core: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_secure_storage_dart: ">=0.3.0+1 <0.4.0"
amplify_analytics_pinpoint_dart: ">=0.2.0+1 <0.3.0"
amplify_core: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_secure_storage_dart: ">=0.3.0+2 <0.4.0"
async: ^2.10.0
aws_common: ">=0.4.2+2 <0.5.0"
aws_common: ">=0.4.2+3 <0.5.0"
aws_signature_v4: ">=0.3.1+5 <0.4.0"
built_collection: ^5.0.0
built_value: ">=8.4.0 <8.5.0"
Expand All @@ -28,11 +28,11 @@ dependencies:
meta: ^1.7.0
oauth2: ^2.0.0
path: ^1.8.0
smithy: ">=0.4.0+5 <0.5.0"
smithy_aws: ">=0.4.1+2 <0.5.0"
smithy: ">=0.4.0+6 <0.5.0"
smithy_aws: ">=0.4.1+3 <0.5.0"
stream_transform: ^2.0.0
uuid: ">=3.0.6 <=3.0.7"
worker_bee: ">=0.1.3+4 <0.2.0"
worker_bee: ">=0.1.3+5 <0.2.0"

dev_dependencies:
amplify_lints: ">=2.0.2 <2.1.0"
Expand All @@ -46,7 +46,7 @@ dev_dependencies:
smithy_codegen:
path: ../../smithy/smithy_codegen
test: ^1.16.0
worker_bee_builder: ">=0.1.4+3 <0.2.0"
worker_bee_builder: ">=0.1.4+4 <0.2.0"

flutter:
assets:
Expand Down
4 changes: 4 additions & 0 deletions packages/authenticator/amplify_authenticator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-next.5+2

- Minor bug fixes and improvements

## 1.0.0-next.5+1

### Fixes
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions packages/authenticator/amplify_authenticator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: amplify_authenticator
description: A prebuilt Sign In and Sign Up experience for the Amplify Auth category
version: 1.0.0-next.5+1
version: 1.0.0-next.5+2
homepage: https://ui.docs.amplify.aws/flutter/connected-components/authenticator
repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/authenticator/amplify_authenticator
issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues
Expand All @@ -10,9 +10,9 @@ environment:
flutter: ">=3.3.0"

dependencies:
amplify_auth_cognito: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_core: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_flutter: ">=1.0.0-next.8 <1.0.0-next.9"
amplify_auth_cognito: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_core: ">=1.0.0-next.8+1 <1.0.0-next.9"
amplify_flutter: ">=1.0.0-next.8+1 <1.0.0-next.9"
async: ^2.10.0
aws_common: ">=0.4.2+2 <0.5.0"
collection: ^1.15.0
Expand Down

0 comments on commit 82b2139

Please sign in to comment.