diff --git a/aft.yaml b/aft.yaml index ebd3f305f8..e8298983c6 100644 --- a/aft.yaml +++ b/aft.yaml @@ -49,12 +49,29 @@ components: summary: amplify_core propagate: none packages: - - amplify_auth_cognito_dart - amplify_analytics_pinpoint_dart + - amplify_api_dart + - amplify_auth_cognito_dart - amplify_storage_s3_dart - name: Amplify UI packages: - amplify_authenticator + - name: DB Common + summary: amplify_db_common + packages: + - amplify_db_common + - amplify_db_common_dart + - name: Secure Storage + summary: amplify_secure_storage + packages: + - amplify_secure_storage + - amplify_secure_storage_dart + - name: AWS Common + summary: aws_common + propagate: none + packages: + - aws_common + - aws_signature_v4 - name: Smithy summary: smithy packages: diff --git a/example/pubspec.yaml b/example/pubspec.yaml index bcb9a6d6ae..b91e2dcc8c 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -7,10 +7,10 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_flutter: ^1.0.0-0 - amplify_analytics_pinpoint: ^1.0.0-0 - amplify_auth_cognito: ^1.0.0-0 - amplify_storage_s3: ^1.0.0-0 + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5" file_picker: ^5.0.0 flutter: sdk: flutter diff --git a/infra/pubspec.yaml b/infra/pubspec.yaml index e8a273a055..abc029ae04 100644 --- a/infra/pubspec.yaml +++ b/infra/pubspec.yaml @@ -5,6 +5,5 @@ environment: sdk: ">=2.18.0 <3.0.0" dependencies: - amplify_core: - path: ../packages/amplify_core + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" path: any diff --git a/packages/aft/lib/src/commands/version_bump_command.dart b/packages/aft/lib/src/commands/version_bump_command.dart index e6313436b7..072b471707 100644 --- a/packages/aft/lib/src/commands/version_bump_command.dart +++ b/packages/aft/lib/src/commands/version_bump_command.dart @@ -55,7 +55,7 @@ class VersionBumpCommand extends AmplifyCommand late final bool preview = argResults!['preview'] as bool; GitChanges _changesForPackage(PackageInfo package) { - final baseRef = this.baseRef ?? repo.latestBumpRef(package.name); + final baseRef = this.baseRef ?? repo.latestBumpRef(package); if (baseRef == null) { exitError( 'No previous version bumps for package (${package.name}). ' @@ -131,13 +131,17 @@ class VersionBumpCommand extends AmplifyCommand logger.info('Version successfully bumped'); // Stage changes + final publishableBumpedPackages = + bumpedPackages.where((pkg) => pkg.isPublishable).toList(); final mergedChangelog = Changelog.empty().makeVersionEntry( commits: { - for (final package in bumpedPackages) + for (final package in publishableBumpedPackages) ...?repo.changelogUpdates[package]?.commits, }, ); - final updatedComponents = List.of(bumpedPackages.map((pkg) => pkg.name)); + final updatedComponents = List.of( + publishableBumpedPackages.map((pkg) => pkg.name), + ); for (final component in repo.components.values) { final componentPackages = component.packages.map((pkg) => pkg.name).toList(); diff --git a/packages/aft/lib/src/repo.dart b/packages/aft/lib/src/repo.dart index 79b96ccc1f..3c0c850aee 100644 --- a/packages/aft/lib/src/repo.dart +++ b/packages/aft/lib/src/repo.dart @@ -86,22 +86,23 @@ class Repo { /// The libgit repository. late final Repository repo = Repository.open(rootDir.path); - /// Returns the latest version bump commit for [packageOrComponent], or `null` - /// if no such commit exists. + /// Returns the latest version bump commit for [package], or `null` if no such + /// commit exists. /// - /// This is the marker of the last time [packageOrComponent] was released and - /// is used as the base git reference for calculating changes relevant to this - /// version bump. - String? latestBumpRef(String packageOrComponent) { - final component = components[packageOrComponent]?.name ?? + /// This is the marker of the last time [package] was released and is used as + /// the base git reference for calculating changes relevant to this version + /// bump. + String? latestBumpRef(PackageInfo package) { + final packageName = package.name; + final component = components[packageName]?.name ?? components.values .firstWhereOrNull( (component) => component.packages .map((pkg) => pkg.name) - .contains(packageOrComponent), + .contains(packageName), ) ?.name ?? - packageOrComponent; + packageName; var commit = Commit.lookup(repo: repo, oid: repo.head.target); while (commit.parents.isNotEmpty) { final commitMessage = CommitMessage.parse( @@ -111,7 +112,10 @@ class Repo { commitTimeSecs: commit.time, ); if (commitMessage is VersionCommitMessage && + // Check both the component and the package since the definition of + // components can change over time. (commitMessage.updatedComponents.contains(component) || + commitMessage.updatedComponents.contains(packageName) || commitMessage.updatedComponents.isEmpty)) { return commitMessage.sha; } diff --git a/packages/aft/pubspec.yaml b/packages/aft/pubspec.yaml index 0fdca05b83..c96c186a3c 100644 --- a/packages/aft/pubspec.yaml +++ b/packages/aft/pubspec.yaml @@ -9,8 +9,7 @@ environment: dependencies: args: ^2.3.0 async: ^2.8.0 - aws_common: - path: ../aws_common + aws_common: ">=0.4.0 <0.5.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" checked_yaml: ^2.0.0 @@ -37,8 +36,7 @@ dependencies: ref: 6cbbec2abbf6a54074ae1005c06a26dfb14a86c8 pub_semver: ^2.1.1 pubspec_parse: ^1.2.0 - smithy: - path: ../smithy/smithy + smithy: ">=0.4.0+1 <0.5.0" smithy_codegen: path: ../smithy/smithy_codegen stream_transform: ^2.0.0 diff --git a/packages/aft/test/e2e_test.dart b/packages/aft/test/e2e_test.dart index e738db67bb..91996badc8 100644 --- a/packages/aft/test/e2e_test.dart +++ b/packages/aft/test/e2e_test.dart @@ -283,7 +283,7 @@ Initial version. for (final entry in packages.entries) { test(entry.key, () { final package = repo.allPackages[entry.key]!; - final lastBump = repo.latestBumpRef(package.name); + final lastBump = repo.latestBumpRef(package); expect(lastBump, packageBumps[package.name]); final numCommits = entry.value; diff --git a/packages/amplify/amplify_flutter/CHANGELOG.md b/packages/amplify/amplify_flutter/CHANGELOG.md index e7e41637b0..f79e5e01d4 100644 --- a/packages/amplify/amplify_flutter/CHANGELOG.md +++ b/packages/amplify/amplify_flutter/CHANGELOG.md @@ -1,3 +1,17 @@ +## 1.0.0-next.4 + +### Breaking Changes +- fix(auth)!: Fetch Auth Session offline behavior ([#2585](https://github.com/aws-amplify/amplify-flutter/pull/2585)) + +### Fixes +- fix(api): do not include null values in ModelMutations.create ([#2504](https://github.com/aws-amplify/amplify-flutter/pull/2504)) +- fix(api): model helpers use targetNames in schemas with CPK enabled ([#2559](https://github.com/aws-amplify/amplify-flutter/pull/2559)) +- fix(auth): SessionExpired Auth Hub event ([#2609](https://github.com/aws-amplify/amplify-flutter/pull/2609)) +- fix(datastore): prevent unhandled exception crashing App rebuilding sync expression + +### Features +- feat(analytics): Legacy data migration of Pinpoint Endpoint ID ([#2489](https://github.com/aws-amplify/amplify-flutter/pull/2489)) + ## 1.0.0-next.3 ### Breaking Changes diff --git a/packages/amplify/amplify_flutter/example/pubspec.yaml b/packages/amplify/amplify_flutter/example/pubspec.yaml index 2b920b9f68..71d8d0eb29 100644 --- a/packages/amplify/amplify_flutter/example/pubspec.yaml +++ b/packages/amplify/amplify_flutter/example/pubspec.yaml @@ -6,18 +6,12 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - amplify_analytics_pinpoint: - path: ../../../analytics/amplify_analytics_pinpoint - amplify_api: - path: ../../../api/amplify_api - amplify_auth_cognito: - path: ../../../auth/amplify_auth_cognito - amplify_datastore: - path: ../../../amplify_datastore - amplify_flutter: - path: ../ - amplify_storage_s3: - path: ../../../storage/amplify_storage_s3 + amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_datastore: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter diff --git a/packages/amplify/amplify_flutter/pubspec.yaml b/packages/amplify/amplify_flutter/pubspec.yaml index 83eb4b0439..f364f9f0af 100644 --- a/packages/amplify/amplify_flutter/pubspec.yaml +++ b/packages/amplify/amplify_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_flutter description: The top level Flutter package for the AWS Amplify libraries. -version: 1.0.0-next.3 +version: 1.0.0-next.4 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 @@ -19,12 +19,12 @@ platforms: web: dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_datastore_plugin_interface: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_flutter_android: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_flutter_ios: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_datastore_plugin_interface: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter_android: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter_ios: ">=1.0.0-next.4 <1.0.0-next.5" amplify_secure_storage: ">=0.1.4+1 <0.2.0" - aws_common: ">=0.3.5+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" collection: ^1.15.0 flutter: sdk: flutter @@ -32,12 +32,12 @@ dependencies: plugin_platform_interface: ^2.0.0 dev_dependencies: - amplify_analytics_pinpoint: - amplify_api: - amplify_auth_cognito: - amplify_datastore: + amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_datastore: ">=1.0.0-next.4 <1.0.0-next.5" amplify_lints: ^2.0.0 - amplify_storage_s3: + amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5" amplify_test: path: ../../amplify_test build_runner: ^2.0.0 diff --git a/packages/amplify/amplify_flutter_android/CHANGELOG.md b/packages/amplify/amplify_flutter_android/CHANGELOG.md index 42cfe47c6d..ac99bd081e 100644 --- a/packages/amplify/amplify_flutter_android/CHANGELOG.md +++ b/packages/amplify/amplify_flutter_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0-next.4 + +- Minor bug fixes and improvements + ## 1.0.0-next.3 - Minor bug fixes and improvements diff --git a/packages/amplify/amplify_flutter_android/pubspec.yaml b/packages/amplify/amplify_flutter_android/pubspec.yaml index 972ad6ef8d..6d338e467c 100644 --- a/packages/amplify/amplify_flutter_android/pubspec.yaml +++ b/packages/amplify/amplify_flutter_android/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_flutter_android description: The method channel implementation for amplify_flutter on Android -version: 1.0.0-next.3 +version: 1.0.0-next.4 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/amplify/amplify_flutter_android issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues diff --git a/packages/amplify/amplify_flutter_ios/CHANGELOG.md b/packages/amplify/amplify_flutter_ios/CHANGELOG.md index 80298b9903..1276b83fe8 100644 --- a/packages/amplify/amplify_flutter_ios/CHANGELOG.md +++ b/packages/amplify/amplify_flutter_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0-next.4 + +- Minor bug fixes and improvements + ## 1.0.0-next.3 - Minor bug fixes and improvements diff --git a/packages/amplify/amplify_flutter_ios/example/pubspec.yaml b/packages/amplify/amplify_flutter_ios/example/pubspec.yaml index 672213c861..ac254a0aeb 100644 --- a/packages/amplify/amplify_flutter_ios/example/pubspec.yaml +++ b/packages/amplify/amplify_flutter_ios/example/pubspec.yaml @@ -8,21 +8,20 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_flutter_ios: - path: ../ + amplify_flutter_ios: ">=1.0.0-next.4 <1.0.0-next.5" cupertino_icons: ^1.0.2 flutter: sdk: flutter dev_dependencies: - amplify_analytics_pinpoint: 1.0.0-next.0 - amplify_api: 1.0.0-next.0 - amplify_auth_cognito: 1.0.0-next.0 - amplify_core: 1.0.0-next.0 - amplify_datastore: 1.0.0-next.0 - amplify_flutter: 1.0.0-next.0 + amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_datastore: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" amplify_lints: ^2.0.0 - amplify_storage_s3: 1.0.0-next.0 + amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5" amplify_test: path: ../../../amplify_test flutter_test: diff --git a/packages/amplify/amplify_flutter_ios/pubspec.yaml b/packages/amplify/amplify_flutter_ios/pubspec.yaml index 0641480bde..ceadce3413 100644 --- a/packages/amplify/amplify_flutter_ios/pubspec.yaml +++ b/packages/amplify/amplify_flutter_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_flutter_ios description: The method channel implementation for amplify_flutter on iOS -version: 1.0.0-next.3 +version: 1.0.0-next.4 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 @@ -10,7 +10,7 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter diff --git a/packages/amplify_core/CHANGELOG.md b/packages/amplify_core/CHANGELOG.md index e8ac7bfee9..7b3bbac8e1 100644 --- a/packages/amplify_core/CHANGELOG.md +++ b/packages/amplify_core/CHANGELOG.md @@ -1,3 +1,19 @@ +## 1.0.0-next.4 + +### Breaking Changes +- fix(auth)!: Fetch Auth Session offline behavior ([#2585](https://github.com/aws-amplify/amplify-flutter/pull/2585)) + +### Features +- feat(analytics): Legacy data migration of Pinpoint Endpoint ID ([#2489](https://github.com/aws-amplify/amplify-flutter/pull/2489)) +- feat(storage): allow configuring transfer acceleration + +### Fixes +- fix(api): model helpers use targetNames in schemas with CPK enabled ([#2559](https://github.com/aws-amplify/amplify-flutter/pull/2559)) +- fix(auth): Clear credentials before redirect on Web ([#2603](https://github.com/aws-amplify/amplify-flutter/pull/2603)) +- fix(auth): Refresh token in non-state machine calls ([#2572](https://github.com/aws-amplify/amplify-flutter/pull/2572)) +- fix(auth): SessionExpired Auth Hub event ([#2609](https://github.com/aws-amplify/amplify-flutter/pull/2609)) +- fix(storage): incorrect transferred bytes emitted from upload task + ## 1.0.0-next.3 ### Breaking Changes diff --git a/packages/amplify_core/pubspec.yaml b/packages/amplify_core/pubspec.yaml index 4bc4ece439..c6c406b338 100644 --- a/packages/amplify_core/pubspec.yaml +++ b/packages/amplify_core/pubspec.yaml @@ -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.3 +version: 1.0.0-next.4 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 @@ -10,8 +10,8 @@ environment: dependencies: async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" - aws_signature_v4: ">=0.3.1+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" collection: ^1.15.0 intl: ^0.17.0 json_annotation: ^4.7.0 diff --git a/packages/amplify_datastore/CHANGELOG.md b/packages/amplify_datastore/CHANGELOG.md index e9077eff6c..219dc19908 100644 --- a/packages/amplify_datastore/CHANGELOG.md +++ b/packages/amplify_datastore/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.0-next.4 + +### Fixes +- fix(datastore): prevent unhandled exception crashing App rebuilding sync expression + ## 1.0.0-next.3 ### Breaking Changes diff --git a/packages/amplify_datastore/example/pubspec.yaml b/packages/amplify_datastore/example/pubspec.yaml index 6838c16502..63307f0072 100644 --- a/packages/amplify_datastore/example/pubspec.yaml +++ b/packages/amplify_datastore/example/pubspec.yaml @@ -12,18 +12,11 @@ environment: dependencies: flutter: sdk: flutter - amplify_datastore: - # When depending on this package from a real application you should use: - # amplify_datastore: ^x.y.z - # See https://dart.dev/tools/pub/dependencies#version-constraints - # The example app is bundled with the plugin so we use a path dependency on - # the parent directory to use the current plugin's version. - path: ../ + amplify_datastore: ">=1.0.0-next.4 <1.0.0-next.5" # Uncomment the below lines to enable online sync # amplify_api: # path: ../../api/amplify_api - amplify_flutter: - path: ../../amplify/amplify_flutter + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" flutter_driver: sdk: flutter integration_test: diff --git a/packages/amplify_datastore/pubspec.yaml b/packages/amplify_datastore/pubspec.yaml index 6c54fe86b0..94b3e87766 100644 --- a/packages/amplify_datastore/pubspec.yaml +++ b/packages/amplify_datastore/pubspec.yaml @@ -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.3 +version: 1.0.0-next.4 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 @@ -12,8 +12,8 @@ environment: dependencies: flutter: sdk: flutter - amplify_datastore_plugin_interface: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_datastore_plugin_interface: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" plugin_platform_interface: ^2.0.0 meta: ^1.7.0 collection: ^1.14.13 diff --git a/packages/amplify_datastore_plugin_interface/CHANGELOG.md b/packages/amplify_datastore_plugin_interface/CHANGELOG.md index 3f39473ce5..5c601418a7 100644 --- a/packages/amplify_datastore_plugin_interface/CHANGELOG.md +++ b/packages/amplify_datastore_plugin_interface/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0-next.4 + +- Minor bug fixes and improvements + ## 1.0.0-next.3 - Minor bug fixes and improvements diff --git a/packages/amplify_datastore_plugin_interface/pubspec.yaml b/packages/amplify_datastore_plugin_interface/pubspec.yaml index db3ce5ca03..0c33c4a784 100644 --- a/packages/amplify_datastore_plugin_interface/pubspec.yaml +++ b/packages/amplify_datastore_plugin_interface/pubspec.yaml @@ -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.3 +version: 1.0.0-next.4 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 @@ -10,7 +10,7 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" collection: ^1.15.0 flutter: sdk: flutter diff --git a/packages/amplify_test/pubspec.yaml b/packages/amplify_test/pubspec.yaml index 0787eb6cbe..95fba279dd 100644 --- a/packages/amplify_test/pubspec.yaml +++ b/packages/amplify_test/pubspec.yaml @@ -9,11 +9,11 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_api: - amplify_auth_cognito: - amplify_core: - amplify_flutter: - aws_common: + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" + aws_common: ">=0.4.0 <0.5.0" collection: ^1.15.0 flutter: sdk: flutter diff --git a/packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md b/packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md index dd4035d122..64d647d9f2 100644 --- a/packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md +++ b/packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.0-next.4 + +### Features +- feat(analytics): Legacy data migration of Pinpoint Endpoint ID ([#2489](https://github.com/aws-amplify/amplify-flutter/pull/2489)) + ## 1.0.0-next.3 ### Fixes diff --git a/packages/analytics/amplify_analytics_pinpoint/example/pubspec.yaml b/packages/analytics/amplify_analytics_pinpoint/example/pubspec.yaml index 98c5d0a02b..a3dd372949 100644 --- a/packages/analytics/amplify_analytics_pinpoint/example/pubspec.yaml +++ b/packages/analytics/amplify_analytics_pinpoint/example/pubspec.yaml @@ -10,32 +10,21 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_analytics_pinpoint: - # When depending on this package from a real application you should use: - # amplify_analytics_pinpoint: ^x.y.z - # See https://dart.dev/tools/pub/dependencies#version-constraints - # The example app is bundled with the plugin so we use a path dependency on - # the parent directory to use the current plugin's version. - path: ../ - amplify_api: - path: ../../../api/amplify_api - amplify_auth_cognito: - path: ../../../auth/amplify_auth_cognito - amplify_flutter: - path: ../../../amplify/amplify_flutter + amplify_analytics_pinpoint: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter dev_dependencies: - amplify_analytics_pinpoint_dart: - path: ../../amplify_analytics_pinpoint_dart + amplify_analytics_pinpoint_dart: ">=0.1.2+2 <0.2.0" amplify_lints: path: ../../../amplify_lints amplify_test: path: ../../../amplify_test - aws_common: - path: ../../../aws_common + aws_common: ">=0.4.0 <0.5.0" build_runner: ^2.3.2 built_value: ">=8.4.0 <8.5.0" flutter_test: diff --git a/packages/analytics/amplify_analytics_pinpoint/pubspec.yaml b/packages/analytics/amplify_analytics_pinpoint/pubspec.yaml index f210db8dab..280808766a 100644 --- a/packages/analytics/amplify_analytics_pinpoint/pubspec.yaml +++ b/packages/analytics/amplify_analytics_pinpoint/pubspec.yaml @@ -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.3 +version: 1.0.0-next.4 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 @@ -19,11 +19,11 @@ platforms: web: dependencies: - amplify_analytics_pinpoint_dart: ">=0.1.2+1 <0.2.0" - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_analytics_pinpoint_dart: ">=0.1.3 <0.2.0" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" amplify_db_common: ">=0.1.2+1 <0.2.0" amplify_secure_storage: ">=0.1.4+1 <0.2.0" - aws_common: ">=0.3.5+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" device_info_plus: ^8.0.0 flutter: sdk: flutter diff --git a/packages/analytics/amplify_analytics_pinpoint_dart/CHANGELOG.md b/packages/analytics/amplify_analytics_pinpoint_dart/CHANGELOG.md index cee1bf042c..d88c2c1d98 100644 --- a/packages/analytics/amplify_analytics_pinpoint_dart/CHANGELOG.md +++ b/packages/analytics/amplify_analytics_pinpoint_dart/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.1.3 + +### Features +- feat(analytics): Legacy data migration of Pinpoint Endpoint ID ([#2489](https://github.com/aws-amplify/amplify-flutter/pull/2489)) + ## 0.1.2+1 - Minor bug fixes and improvements diff --git a/packages/analytics/amplify_analytics_pinpoint_dart/lib/src/version.dart b/packages/analytics/amplify_analytics_pinpoint_dart/lib/src/version.dart index 8d5d384d8f..db9e3589de 100644 --- a/packages/analytics/amplify_analytics_pinpoint_dart/lib/src/version.dart +++ b/packages/analytics/amplify_analytics_pinpoint_dart/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.1.2+1'; +const packageVersion = '0.1.3'; diff --git a/packages/analytics/amplify_analytics_pinpoint_dart/pubspec.yaml b/packages/analytics/amplify_analytics_pinpoint_dart/pubspec.yaml index dd7a1d1faa..8d7696fdbd 100644 --- a/packages/analytics/amplify_analytics_pinpoint_dart/pubspec.yaml +++ b/packages/analytics/amplify_analytics_pinpoint_dart/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_analytics_pinpoint_dart description: A Dart-only implementation of the Amplify Analytics plugin for Pinpoint. -version: 0.1.2+1 +version: 0.1.3 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 @@ -9,19 +9,19 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_db_common_dart: ">=0.2.0 <0.3.0" - amplify_secure_storage_dart: ">=0.1.4+1 <0.2.0" - aws_common: ">=0.3.5+1 <0.4.0" - aws_signature_v4: ">=0.3.1+1 <0.4.0" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_db_common_dart: ">=0.2.0+1 <0.3.0" + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" drift: ">=2.3.0 <2.4.0" intl: ^0.17.0 meta: ^1.7.0 path: ^1.8.0 - smithy: ">=0.4.0 <0.5.0" - smithy_aws: ">=0.4.0 <0.5.0" + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" uuid: ">=3.0.6 <=3.0.7" dev_dependencies: diff --git a/packages/api/amplify_api/CHANGELOG.md b/packages/api/amplify_api/CHANGELOG.md index 39674df26e..34bca5c72a 100644 --- a/packages/api/amplify_api/CHANGELOG.md +++ b/packages/api/amplify_api/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.0.0-next.4 + +### Fixes +- fix(api): do not include null values in ModelMutations.create ([#2504](https://github.com/aws-amplify/amplify-flutter/pull/2504)) +- fix(api): model helpers use targetNames in schemas with CPK enabled ([#2559](https://github.com/aws-amplify/amplify-flutter/pull/2559)) + ## 1.0.0-next.3 ### Breaking Changes diff --git a/packages/api/amplify_api/example/pubspec.yaml b/packages/api/amplify_api/example/pubspec.yaml index 722f30fba9..2d1a31cf4a 100644 --- a/packages/api/amplify_api/example/pubspec.yaml +++ b/packages/api/amplify_api/example/pubspec.yaml @@ -10,21 +10,12 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_api: - # When depending on this package from a real application you should use: - # amplify_api: ^x.y.z - # See https://dart.dev/tools/pub/dependencies#version-constraints - # The example app is bundled with the plugin so we use a path dependency on - # the parent directory to use the current plugin's version. - path: ../ - amplify_auth_cognito: - path: ../../../auth/amplify_auth_cognito - amplify_authenticator: - path: ../../../authenticator/amplify_authenticator - amplify_flutter: - path: ../../../amplify/amplify_flutter + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_authenticator: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" async: ^2.8.0 - aws_common: ^0.2.0 + aws_common: ">=0.4.0 <0.5.0" # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. diff --git a/packages/api/amplify_api/pubspec.yaml b/packages/api/amplify_api/pubspec.yaml index 30e99e5aaf..669e74b047 100644 --- a/packages/api/amplify_api/pubspec.yaml +++ b/packages/api/amplify_api/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_api description: The Amplify Flutter API category plugin, supporting GraphQL and REST operations. -version: 1.0.0-next.3 +version: 1.0.0-next.4 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 @@ -19,11 +19,11 @@ platforms: web: dependencies: - amplify_api_android: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_api_dart: ">=0.1.0 <0.2.0" - amplify_api_ios: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_flutter: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_api_android: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_api_dart: ">=0.1.0+1 <0.2.0" + amplify_api_ios: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" connectivity_plus: ^3.0.2 flutter: sdk: flutter diff --git a/packages/api/amplify_api_android/CHANGELOG.md b/packages/api/amplify_api_android/CHANGELOG.md index f1e9e8dfee..be3d57499f 100644 --- a/packages/api/amplify_api_android/CHANGELOG.md +++ b/packages/api/amplify_api_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0-next.4 + +- Minor bug fixes and improvements + ## 1.0.0-next.3 - Minor bug fixes and improvements diff --git a/packages/api/amplify_api_android/example/pubspec.yaml b/packages/api/amplify_api_android/example/pubspec.yaml index 62d7dd552b..94ca8ed048 100644 --- a/packages/api/amplify_api_android/example/pubspec.yaml +++ b/packages/api/amplify_api_android/example/pubspec.yaml @@ -8,10 +8,8 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_api: - path: ../../amplify_api - amplify_flutter: - path: ../../../amplify/amplify_flutter + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter diff --git a/packages/api/amplify_api_android/pubspec.yaml b/packages/api/amplify_api_android/pubspec.yaml index 76446ce4ff..2b1c1a94cc 100644 --- a/packages/api/amplify_api_android/pubspec.yaml +++ b/packages/api/amplify_api_android/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_api_android description: The method channel implementation for amplify_api on Android -version: 1.0.0-next.3 +version: 1.0.0-next.4 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/api/amplify_api_android issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues diff --git a/packages/api/amplify_api_dart/CHANGELOG.md b/packages/api/amplify_api_dart/CHANGELOG.md index a0712a79e7..47e0e102f3 100644 --- a/packages/api/amplify_api_dart/CHANGELOG.md +++ b/packages/api/amplify_api_dart/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.1.0+1 + +### Fixes +- fix(api): model helpers use targetNames in schemas with CPK enabled ([#2559](https://github.com/aws-amplify/amplify-flutter/pull/2559)) + ## 0.1.0 - Initial version. diff --git a/packages/api/amplify_api_dart/pubspec.yaml b/packages/api/amplify_api_dart/pubspec.yaml index 04f2491381..0a973fe4f8 100644 --- a/packages/api/amplify_api_dart/pubspec.yaml +++ b/packages/api/amplify_api_dart/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_api_dart description: The Amplify API category plugin in Dart-only, supporting GraphQL and REST operations. -version: 0.1.0 +version: 0.1.0+1 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/api/amplify_api_dart issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -9,9 +9,9 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - amplify_core: ">=1.0.0-next.2 <1.0.0-next.3" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" async: ^2.8.0 - aws_common: ">=0.3.3 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" collection: ^1.15.0 json_annotation: ^4.6.0 meta: ^1.7.0 @@ -22,7 +22,7 @@ dependencies: dev_dependencies: amplify_lints: path: ../../amplify_lints - aws_signature_v4: + aws_signature_v4: ">=0.3.1+2 <0.4.0" build_runner: ^2.0.0 build_test: ^2.1.5 build_web_compilers: ^3.2.4 diff --git a/packages/api/amplify_api_ios/CHANGELOG.md b/packages/api/amplify_api_ios/CHANGELOG.md index 50cf816824..9108a40f52 100644 --- a/packages/api/amplify_api_ios/CHANGELOG.md +++ b/packages/api/amplify_api_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0-next.4 + +- Minor bug fixes and improvements + ## 1.0.0-next.3 - Minor bug fixes and improvements diff --git a/packages/api/amplify_api_ios/example/pubspec.yaml b/packages/api/amplify_api_ios/example/pubspec.yaml index c55ff54f54..47062b247d 100644 --- a/packages/api/amplify_api_ios/example/pubspec.yaml +++ b/packages/api/amplify_api_ios/example/pubspec.yaml @@ -8,10 +8,8 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_api: - path: ../../amplify_api - amplify_flutter: - path: ../../../amplify/amplify_flutter + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter diff --git a/packages/api/amplify_api_ios/pubspec.yaml b/packages/api/amplify_api_ios/pubspec.yaml index 6a7780e37a..9afe01d46f 100644 --- a/packages/api/amplify_api_ios/pubspec.yaml +++ b/packages/api/amplify_api_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_api_ios description: The package containing the method channel implementation for amplify_api on iOS -version: 1.0.0-next.3 +version: 1.0.0-next.4 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/api/amplify_api_ios issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -10,7 +10,7 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter diff --git a/packages/auth/amplify_auth_cognito/CHANGELOG.md b/packages/auth/amplify_auth_cognito/CHANGELOG.md index 9d68b30e79..de2dce33df 100644 --- a/packages/auth/amplify_auth_cognito/CHANGELOG.md +++ b/packages/auth/amplify_auth_cognito/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.0.0-next.4 + +### Breaking Changes +- fix(auth)!: Fetch Auth Session offline behavior ([#2585](https://github.com/aws-amplify/amplify-flutter/pull/2585)) + +### Fixes +- fix(auth): SessionExpired Auth Hub event ([#2609](https://github.com/aws-amplify/amplify-flutter/pull/2609)) + ## 1.0.0-next.3 ### Breaking Changes diff --git a/packages/auth/amplify_auth_cognito/example/pubspec.yaml b/packages/auth/amplify_auth_cognito/example/pubspec.yaml index 2f7790bfa6..53fcd617e5 100644 --- a/packages/auth/amplify_auth_cognito/example/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito/example/pubspec.yaml @@ -8,35 +8,23 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_api: - path: ../../../api/amplify_api - amplify_auth_cognito: - # When depending on this package from a real application you should use: - # amplify_auth_cognito: ^x.y.z - # See https://dart.dev/tools/pub/dependencies#version-constraints - # The example app is bundled with the plugin so we use a path dependency on - # the parent directory to use the current plugin's version. - path: ../ - amplify_authenticator: - path: ../../../authenticator/amplify_authenticator - amplify_core: - path: ../../../amplify_core - amplify_flutter: - path: ../../../amplify/amplify_flutter + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_authenticator: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter go_router: ^3.0.0 dev_dependencies: - amplify_auth_cognito_dart: - path: ../../amplify_auth_cognito_dart + amplify_auth_cognito_dart: ">=0.5.0 <0.6.0" amplify_lints: path: ../../../amplify_lints amplify_test: path: ../../../amplify_test async: ^2.8.0 - aws_signature_v4: - path: ../../../aws_signature_v4 + aws_signature_v4: ">=0.3.1+2 <0.4.0" collection: any flutter_driver: sdk: flutter diff --git a/packages/auth/amplify_auth_cognito/pubspec.yaml b/packages/auth/amplify_auth_cognito/pubspec.yaml index 10d14e07ce..b91d97d5f1 100644 --- a/packages/auth/amplify_auth_cognito/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito/pubspec.yaml @@ -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.3 +version: 1.0.0-next.4 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 @@ -19,11 +19,11 @@ platforms: web: dependencies: - amplify_auth_cognito_android: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_auth_cognito_dart: ">=0.4.0 <0.5.0" - amplify_auth_cognito_ios: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_flutter: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_auth_cognito_android: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_auth_cognito_dart: ">=0.5.0 <0.6.0" + amplify_auth_cognito_ios: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" amplify_secure_storage: ">=0.1.4+1 <0.2.0" async: ^2.8.0 flutter: diff --git a/packages/auth/amplify_auth_cognito_android/CHANGELOG.md b/packages/auth/amplify_auth_cognito_android/CHANGELOG.md index 7e93fa0d0f..1879fb99df 100644 --- a/packages/auth/amplify_auth_cognito_android/CHANGELOG.md +++ b/packages/auth/amplify_auth_cognito_android/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.0-next.4 + +### Breaking Changes +- fix(auth)!: Fetch Auth Session offline behavior ([#2585](https://github.com/aws-amplify/amplify-flutter/pull/2585)) + ## 1.0.0-next.3 - Minor bug fixes and improvements diff --git a/packages/auth/amplify_auth_cognito_android/pubspec.yaml b/packages/auth/amplify_auth_cognito_android/pubspec.yaml index bab40aefef..c7f322c2b4 100644 --- a/packages/auth/amplify_auth_cognito_android/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito_android/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_auth_cognito_android description: The method channel implementation for amplify_auth_cognito on Android -version: 1.0.0-next.3 +version: 1.0.0-next.4 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/auth/amplify_auth_cognito_android issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues diff --git a/packages/auth/amplify_auth_cognito_dart/CHANGELOG.md b/packages/auth/amplify_auth_cognito_dart/CHANGELOG.md index 8377244d97..4b0f31273b 100644 --- a/packages/auth/amplify_auth_cognito_dart/CHANGELOG.md +++ b/packages/auth/amplify_auth_cognito_dart/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.5.0 + +### Fixes +- fix(auth): Clear credentials before redirect on Web ([#2603](https://github.com/aws-amplify/amplify-flutter/pull/2603)) +- fix(auth): Refresh token in non-state machine calls ([#2572](https://github.com/aws-amplify/amplify-flutter/pull/2572)) +- fix(auth): SessionExpired Auth Hub event ([#2609](https://github.com/aws-amplify/amplify-flutter/pull/2609)) + +### Breaking Changes +- fix(auth)!: Fetch Auth Session offline behavior ([#2585](https://github.com/aws-amplify/amplify-flutter/pull/2585)) + ## 0.4.0 ### Breaking Changes diff --git a/packages/auth/amplify_auth_cognito_dart/example/pubspec.yaml b/packages/auth/amplify_auth_cognito_dart/example/pubspec.yaml index 400ea335e4..e3d35ef84b 100644 --- a/packages/auth/amplify_auth_cognito_dart/example/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito_dart/example/pubspec.yaml @@ -7,12 +7,9 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - amplify_auth_cognito_dart: - path: ../ - amplify_core: - path: ../../../amplify_core - amplify_secure_storage_dart: - path: ../../../secure_storage/amplify_secure_storage_dart + amplify_auth_cognito_dart: ">=0.5.0 <0.6.0" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" example_common: path: ../../../example_common diff --git a/packages/auth/amplify_auth_cognito_dart/pubspec.yaml b/packages/auth/amplify_auth_cognito_dart/pubspec.yaml index c567d9c8c6..0da14ca7bb 100644 --- a/packages/auth/amplify_auth_cognito_dart/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito_dart/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_auth_cognito_dart description: A Dart-only implementation of the Amplify Auth plugin for Cognito. -version: 0.4.0 +version: 0.5.0 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 @@ -9,11 +9,11 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_secure_storage_dart: ">=0.1.4+1 <0.2.0" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" - aws_signature_v4: ">=0.3.1+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" collection: ^1.15.0 @@ -27,11 +27,11 @@ dependencies: meta: ^1.7.0 oauth2: ^2.0.0 path: ^1.8.0 - smithy: ">=0.4.0 <0.5.0" - smithy_aws: ">=0.4.0 <0.5.0" + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" stream_transform: ^2.0.0 uuid: ">=3.0.6 <=3.0.7" - worker_bee: ">=0.1.3+1 <0.2.0" + worker_bee: ">=0.1.3+2 <0.2.0" dev_dependencies: amplify_lints: diff --git a/packages/auth/amplify_auth_cognito_ios/CHANGELOG.md b/packages/auth/amplify_auth_cognito_ios/CHANGELOG.md index a5235d94ea..4d834c8580 100644 --- a/packages/auth/amplify_auth_cognito_ios/CHANGELOG.md +++ b/packages/auth/amplify_auth_cognito_ios/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.0-next.4 + +### Breaking Changes +- fix(auth)!: Fetch Auth Session offline behavior ([#2585](https://github.com/aws-amplify/amplify-flutter/pull/2585)) + ## 1.0.0-next.3 - Minor bug fixes and improvements diff --git a/packages/auth/amplify_auth_cognito_ios/pubspec.yaml b/packages/auth/amplify_auth_cognito_ios/pubspec.yaml index b7d6d6e545..a82d22b11e 100644 --- a/packages/auth/amplify_auth_cognito_ios/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_auth_cognito_ios description: The method channel implementation for amplify_auth_cognito on iOS -version: 1.0.0-next.3 +version: 1.0.0-next.4 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/auth/amplify_auth_cognito_ios issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -10,7 +10,7 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter diff --git a/packages/auth/amplify_auth_cognito_test/pubspec.yaml b/packages/auth/amplify_auth_cognito_test/pubspec.yaml index 64f37e3e54..36a9c9ac4f 100644 --- a/packages/auth/amplify_auth_cognito_test/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito_test/pubspec.yaml @@ -18,16 +18,12 @@ dependency_overrides: path: ../../worker_bee/worker_bee dev_dependencies: - amplify_auth_cognito_dart: - path: ../amplify_auth_cognito_dart - amplify_core: - path: ../../amplify_core + amplify_auth_cognito_dart: ">=0.5.0 <0.6.0" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" amplify_lints: path: ../../amplify_lints - amplify_secure_storage_dart: - path: ../../secure_storage/amplify_secure_storage_dart - aws_common: - path: ../../aws_common + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" + aws_common: ">=0.4.0 <0.5.0" build_runner: ^2.0.0 build_test: ^2.0.0 build_web_compilers: ^3.2.2 @@ -35,9 +31,8 @@ dev_dependencies: built_value: ">=8.4.0 <8.5.0" convert: ^3.0.0 http: ^0.13.0 - smithy: - smithy_aws: + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" stream_transform: ^2.0.0 test: ^1.16.0 - worker_bee: - path: ../../worker_bee/worker_bee + worker_bee: ">=0.1.3+2 <0.2.0" diff --git a/packages/authenticator/amplify_authenticator/CHANGELOG.md b/packages/authenticator/amplify_authenticator/CHANGELOG.md index 513ba97d71..0625221d68 100644 --- a/packages/authenticator/amplify_authenticator/CHANGELOG.md +++ b/packages/authenticator/amplify_authenticator/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.0.0-next.3 + +### Fixes +- fix(authenticator): ARB syntax ([#2560](https://github.com/aws-amplify/amplify-flutter/pull/2560)) + +### Breaking Changes +- fix(auth)!: Fetch Auth Session offline behavior ([#2585](https://github.com/aws-amplify/amplify-flutter/pull/2585)) + ## 1.0.0-next.2 ### Fixes diff --git a/packages/authenticator/amplify_authenticator/example/pubspec.yaml b/packages/authenticator/amplify_authenticator/example/pubspec.yaml index f66a43d70d..629e83ff83 100644 --- a/packages/authenticator/amplify_authenticator/example/pubspec.yaml +++ b/packages/authenticator/amplify_authenticator/example/pubspec.yaml @@ -22,10 +22,9 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_auth_cognito: 1.0.0-next.0 - amplify_authenticator: - path: ../ - amplify_flutter: 1.0.0-next.0 + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_authenticator: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter @@ -38,8 +37,7 @@ dependencies: sdk: flutter dev_dependencies: - amplify_api: - path: ../../../api/amplify_api + amplify_api: ">=1.0.0-next.4 <1.0.0-next.5" amplify_authenticator_test: path: ../../amplify_authenticator_test amplify_lints: diff --git a/packages/authenticator/amplify_authenticator/pubspec.yaml b/packages/authenticator/amplify_authenticator/pubspec.yaml index f94866bd53..a90d98ad03 100644 --- a/packages/authenticator/amplify_authenticator/pubspec.yaml +++ b/packages/authenticator/amplify_authenticator/pubspec.yaml @@ -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.2 +version: 1.0.0-next.3 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 @@ -10,11 +10,11 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_auth_cognito: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_flutter: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" collection: ^1.15.0 flutter: sdk: flutter @@ -22,7 +22,7 @@ dependencies: sdk: flutter intl: ^0.17.0 meta: ^1.7.0 - smithy: ">=0.4.0 <0.5.0" + smithy: ">=0.4.0+1 <0.5.0" stream_transform: ^2.0.0 dev_dependencies: diff --git a/packages/authenticator/amplify_authenticator_test/pubspec.yaml b/packages/authenticator/amplify_authenticator_test/pubspec.yaml index f03822e74f..7c0e0f420b 100644 --- a/packages/authenticator/amplify_authenticator_test/pubspec.yaml +++ b/packages/authenticator/amplify_authenticator_test/pubspec.yaml @@ -8,8 +8,8 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_authenticator: - amplify_flutter: + amplify_authenticator: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" amplify_test: path: ../../amplify_test flutter: diff --git a/packages/aws_common/CHANGELOG.md b/packages/aws_common/CHANGELOG.md index be10067bbe..898a4281aa 100644 --- a/packages/aws_common/CHANGELOG.md +++ b/packages/aws_common/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.4.0 + +### Fixes +- fix(aws_common): AWSFile contentType getter should not throw exception + ## 0.3.5+1 - Minor bug fixes and improvements diff --git a/packages/aws_common/pubspec.yaml b/packages/aws_common/pubspec.yaml index 8fce86f274..39fed9db18 100644 --- a/packages/aws_common/pubspec.yaml +++ b/packages/aws_common/pubspec.yaml @@ -1,6 +1,6 @@ name: aws_common description: Common types and utilities used across AWS and Amplify packages. -version: 0.3.5+1 +version: 0.4.0 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/aws_common issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues diff --git a/packages/aws_sdk/smoke_test/pubspec.yaml b/packages/aws_sdk/smoke_test/pubspec.yaml index a0f36ec9c7..e49912d00a 100644 --- a/packages/aws_sdk/smoke_test/pubspec.yaml +++ b/packages/aws_sdk/smoke_test/pubspec.yaml @@ -6,14 +6,14 @@ environment: sdk: '>=2.17.0 <3.0.0' dependencies: - aws_common: - aws_signature_v4: + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" fixnum: ^1.0.0 meta: ^1.8.0 - smithy: - smithy_aws: + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" dev_dependencies: amplify_lints: ^2.0.0 diff --git a/packages/aws_signature_v4/CHANGELOG.md b/packages/aws_signature_v4/CHANGELOG.md index bac6c0dd78..90fe01cfa2 100644 --- a/packages/aws_signature_v4/CHANGELOG.md +++ b/packages/aws_signature_v4/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.3.1+2 + +- Minor bug fixes and improvements + ## 0.3.1+1 ### Fixes diff --git a/packages/aws_signature_v4/example/pubspec.yaml b/packages/aws_signature_v4/example/pubspec.yaml index 7a5f925a0f..cd0bcd8cb4 100644 --- a/packages/aws_signature_v4/example/pubspec.yaml +++ b/packages/aws_signature_v4/example/pubspec.yaml @@ -6,10 +6,8 @@ environment: dependencies: args: ^2.3.0 - aws_common: - path: ../../aws_common - aws_signature_v4: - path: ../ + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" collection: ^1.15.0 path: ^1.8.0 diff --git a/packages/aws_signature_v4/lib/src/version.dart b/packages/aws_signature_v4/lib/src/version.dart index 039164b715..ee5a33ea9a 100644 --- a/packages/aws_signature_v4/lib/src/version.dart +++ b/packages/aws_signature_v4/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.3.1+1'; +const packageVersion = '0.3.1+2'; diff --git a/packages/aws_signature_v4/pubspec.yaml b/packages/aws_signature_v4/pubspec.yaml index 5fffb16186..5f2861ae60 100644 --- a/packages/aws_signature_v4/pubspec.yaml +++ b/packages/aws_signature_v4/pubspec.yaml @@ -1,6 +1,6 @@ name: aws_signature_v4 description: Dart implementation of the AWS Signature Version 4 algorithm, for communication with AWS services. -version: 0.3.1+1 +version: 0.3.1+2 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/aws_signature_v4 issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -10,7 +10,7 @@ environment: dependencies: async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" collection: ^1.15.0 convert: ^3.0.0 crypto: ^3.0.0 diff --git a/packages/common/amplify_db_common/pubspec.yaml b/packages/common/amplify_db_common/pubspec.yaml index e81c766a51..6dd943998b 100644 --- a/packages/common/amplify_db_common/pubspec.yaml +++ b/packages/common/amplify_db_common/pubspec.yaml @@ -10,7 +10,7 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_db_common_dart: ">=0.2.0 <0.3.0" + amplify_db_common_dart: ">=0.2.0+1 <0.3.0" drift: ">=2.3.0 <2.4.0" flutter: sdk: flutter diff --git a/packages/common/amplify_db_common_dart/CHANGELOG.md b/packages/common/amplify_db_common_dart/CHANGELOG.md index 23077054a4..9f92122c82 100644 --- a/packages/common/amplify_db_common_dart/CHANGELOG.md +++ b/packages/common/amplify_db_common_dart/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.0+1 + +- Minor bug fixes and improvements + ## 0.2.0 ### Breaking Changes diff --git a/packages/common/amplify_db_common_dart/example/pubspec.yaml b/packages/common/amplify_db_common_dart/example/pubspec.yaml index 0a5b35220b..a3cceb8393 100644 --- a/packages/common/amplify_db_common_dart/example/pubspec.yaml +++ b/packages/common/amplify_db_common_dart/example/pubspec.yaml @@ -10,8 +10,7 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - amplify_db_common_dart: - path: ../ + amplify_db_common_dart: ">=0.2.0+1 <0.3.0" drift: ">=2.3.0 <2.4.0" example_common: path: ../../../example_common diff --git a/packages/common/amplify_db_common_dart/pubspec.yaml b/packages/common/amplify_db_common_dart/pubspec.yaml index c0f94b76f3..fc1b7343d1 100644 --- a/packages/common/amplify_db_common_dart/pubspec.yaml +++ b/packages/common/amplify_db_common_dart/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_db_common_dart description: Common utilities for working with databases such as sqlite. -version: 0.2.0 +version: 0.2.0+1 homepage: https://github.com/aws-amplify/amplify-flutter/tree/next repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/common/amplify_db_common_dart issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -9,9 +9,9 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" drift: ">=2.3.0 <2.4.0" meta: ^1.7.0 path: ^1.8.0 diff --git a/packages/secure_storage/amplify_secure_storage/example/pubspec.yaml b/packages/secure_storage/amplify_secure_storage/example/pubspec.yaml index 8fa9c5896c..da50541a4f 100644 --- a/packages/secure_storage/amplify_secure_storage/example/pubspec.yaml +++ b/packages/secure_storage/amplify_secure_storage/example/pubspec.yaml @@ -16,12 +16,10 @@ dependencies: dev_dependencies: amplify_lints: path: ../../../amplify_lints - amplify_secure_storage_dart: - path: ../../amplify_secure_storage_test + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" amplify_secure_storage_test: path: ../../amplify_secure_storage_test - aws_common: - path: ../../../aws_common + aws_common: ">=0.4.0 <0.5.0" flutter_test: sdk: flutter integration_test: diff --git a/packages/secure_storage/amplify_secure_storage/pubspec.yaml b/packages/secure_storage/amplify_secure_storage/pubspec.yaml index 3095b763d5..a733c0e33f 100644 --- a/packages/secure_storage/amplify_secure_storage/pubspec.yaml +++ b/packages/secure_storage/amplify_secure_storage/pubspec.yaml @@ -10,7 +10,7 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_secure_storage_dart: ">=0.1.4+1 <0.2.0" + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" async: ^2.8.0 file: ^6.0.0 flutter: diff --git a/packages/secure_storage/amplify_secure_storage_dart/CHANGELOG.md b/packages/secure_storage/amplify_secure_storage_dart/CHANGELOG.md index a373c67f6e..bf84103eb3 100644 --- a/packages/secure_storage/amplify_secure_storage_dart/CHANGELOG.md +++ b/packages/secure_storage/amplify_secure_storage_dart/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.4+2 + +- Minor bug fixes and improvements + ## 0.1.4+1 ### Fixes diff --git a/packages/secure_storage/amplify_secure_storage_dart/example/pubspec.yaml b/packages/secure_storage/amplify_secure_storage_dart/example/pubspec.yaml index 95743cdafb..c850c3906b 100644 --- a/packages/secure_storage/amplify_secure_storage_dart/example/pubspec.yaml +++ b/packages/secure_storage/amplify_secure_storage_dart/example/pubspec.yaml @@ -10,8 +10,7 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - amplify_secure_storage_dart: - path: ../ + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" example_common: path: ../../../example_common diff --git a/packages/secure_storage/amplify_secure_storage_dart/pubspec.yaml b/packages/secure_storage/amplify_secure_storage_dart/pubspec.yaml index ac1b9ec071..b030734399 100644 --- a/packages/secure_storage/amplify_secure_storage_dart/pubspec.yaml +++ b/packages/secure_storage/amplify_secure_storage_dart/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_secure_storage_dart description: A Dart-only implementation of `amplify_secure_storage`, using `dart:ffi` for Desktop and `dart:html` for Web. -version: 0.1.4+1 +version: 0.1.4+2 homepage: https://github.com/aws-amplify/amplify-flutter/tree/next repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/secure_storage/amplify_secure_storage_dart issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -21,7 +21,7 @@ platforms: dependencies: async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" ffi: ^2.0.0 @@ -30,7 +30,7 @@ dependencies: meta: ^1.7.0 path: ^1.8.0 win32: ^3.0.0 - worker_bee: ">=0.1.3+1 <0.2.0" + worker_bee: ">=0.1.3+2 <0.2.0" dev_dependencies: amplify_lints: diff --git a/packages/secure_storage/amplify_secure_storage_test/pubspec.yaml b/packages/secure_storage/amplify_secure_storage_test/pubspec.yaml index 21cdb3da63..74e1c38dc3 100644 --- a/packages/secure_storage/amplify_secure_storage_test/pubspec.yaml +++ b/packages/secure_storage/amplify_secure_storage_test/pubspec.yaml @@ -8,8 +8,7 @@ environment: dependencies: test: ^1.16.0 - amplify_secure_storage_dart: - path: ../amplify_secure_storage_dart + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" dependency_overrides: aws_common: diff --git a/packages/smithy/goldens/lib/awsJson1_0/pubspec.yaml b/packages/smithy/goldens/lib/awsJson1_0/pubspec.yaml index 93f74cbe4e..bcb1357896 100644 --- a/packages/smithy/goldens/lib/awsJson1_0/pubspec.yaml +++ b/packages/smithy/goldens/lib/awsJson1_0/pubspec.yaml @@ -8,12 +8,9 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" built_collection: ^5.0.0 shelf_router: ^1.1.0 diff --git a/packages/smithy/goldens/lib/awsJson1_1/pubspec.yaml b/packages/smithy/goldens/lib/awsJson1_1/pubspec.yaml index dfb87527fa..d0b4550687 100644 --- a/packages/smithy/goldens/lib/awsJson1_1/pubspec.yaml +++ b/packages/smithy/goldens/lib/awsJson1_1/pubspec.yaml @@ -8,14 +8,10 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - aws_signature_v4: - path: ../../../../aws_signature_v4 - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" built_collection: ^5.0.0 shelf_router: ^1.1.0 diff --git a/packages/smithy/goldens/lib/restJson1/pubspec.yaml b/packages/smithy/goldens/lib/restJson1/pubspec.yaml index 85d9feda18..030793fe4b 100644 --- a/packages/smithy/goldens/lib/restJson1/pubspec.yaml +++ b/packages/smithy/goldens/lib/restJson1/pubspec.yaml @@ -8,15 +8,11 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy + smithy: ">=0.4.0+1 <0.5.0" built_collection: ^5.0.0 - aws_signature_v4: - path: ../../../../aws_signature_v4 - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + aws_signature_v4: ">=0.3.1+2 <0.4.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" meta: ^1.7.0 shelf_router: ^1.1.0 diff --git a/packages/smithy/goldens/lib/restXml/pubspec.yaml b/packages/smithy/goldens/lib/restXml/pubspec.yaml index 7f91164671..6838ce3f40 100644 --- a/packages/smithy/goldens/lib/restXml/pubspec.yaml +++ b/packages/smithy/goldens/lib/restXml/pubspec.yaml @@ -8,14 +8,10 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - smithy_aws: - path: ../../../smithy_aws - aws_signature_v4: - path: ../../../../aws_signature_v4 - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" meta: ^1.7.0 built_collection: ^5.0.0 diff --git a/packages/smithy/goldens/lib/restXmlWithNamespace/pubspec.yaml b/packages/smithy/goldens/lib/restXmlWithNamespace/pubspec.yaml index 8c08b27cc9..adc92d9ba0 100644 --- a/packages/smithy/goldens/lib/restXmlWithNamespace/pubspec.yaml +++ b/packages/smithy/goldens/lib/restXmlWithNamespace/pubspec.yaml @@ -8,12 +8,9 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" xml: ">=6.1.0 <=6.2.2" fixnum: ^1.0.0 diff --git a/packages/smithy/goldens/lib2/awsJson1_0/pubspec.yaml b/packages/smithy/goldens/lib2/awsJson1_0/pubspec.yaml index e74fc2376c..6e7044de84 100644 --- a/packages/smithy/goldens/lib2/awsJson1_0/pubspec.yaml +++ b/packages/smithy/goldens/lib2/awsJson1_0/pubspec.yaml @@ -8,12 +8,9 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" built_collection: ^5.0.0 shelf_router: ^1.1.0 diff --git a/packages/smithy/goldens/lib2/awsJson1_1/pubspec.yaml b/packages/smithy/goldens/lib2/awsJson1_1/pubspec.yaml index 6c7d969e8e..cb1fd3ab7d 100644 --- a/packages/smithy/goldens/lib2/awsJson1_1/pubspec.yaml +++ b/packages/smithy/goldens/lib2/awsJson1_1/pubspec.yaml @@ -8,14 +8,10 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - aws_signature_v4: - path: ../../../../aws_signature_v4 - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" built_collection: ^5.0.0 fixnum: ^1.0.0 diff --git a/packages/smithy/goldens/lib2/custom/pubspec.yaml b/packages/smithy/goldens/lib2/custom/pubspec.yaml index 97ca7304b1..58ff370b9f 100644 --- a/packages/smithy/goldens/lib2/custom/pubspec.yaml +++ b/packages/smithy/goldens/lib2/custom/pubspec.yaml @@ -8,14 +8,10 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - smithy_aws: - path: ../../../smithy_aws - aws_signature_v4: - path: ../../../../aws_signature_v4 - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" meta: ^1.7.0 built_collection: ^5.0.0 diff --git a/packages/smithy/goldens/lib2/restJson1/pubspec.yaml b/packages/smithy/goldens/lib2/restJson1/pubspec.yaml index 467ece36a1..4ad292aee6 100644 --- a/packages/smithy/goldens/lib2/restJson1/pubspec.yaml +++ b/packages/smithy/goldens/lib2/restJson1/pubspec.yaml @@ -8,20 +8,16 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" fixnum: ^1.0.0 built_collection: ^5.0.0 meta: ^1.7.0 shelf_router: ^1.1.0 shelf: ^1.4.0 - aws_signature_v4: - path: ../../../../aws_signature_v4 + aws_signature_v4: ">=0.3.1+2 <0.4.0" dependency_overrides: smithy: diff --git a/packages/smithy/goldens/lib2/restXml/pubspec.yaml b/packages/smithy/goldens/lib2/restXml/pubspec.yaml index ceed818d8d..fca6718408 100644 --- a/packages/smithy/goldens/lib2/restXml/pubspec.yaml +++ b/packages/smithy/goldens/lib2/restXml/pubspec.yaml @@ -8,12 +8,9 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" fixnum: ^1.0.0 built_collection: ^5.0.0 @@ -21,8 +18,7 @@ dependencies: xml: ">=6.1.0 <=6.2.2" shelf_router: ^1.1.0 shelf: ^1.4.0 - aws_signature_v4: - path: ../../../../aws_signature_v4 + aws_signature_v4: ">=0.3.1+2 <0.4.0" dependency_overrides: smithy: diff --git a/packages/smithy/goldens/lib2/restXmlWithNamespace/pubspec.yaml b/packages/smithy/goldens/lib2/restXmlWithNamespace/pubspec.yaml index bdf203d3d9..b587bb8737 100644 --- a/packages/smithy/goldens/lib2/restXmlWithNamespace/pubspec.yaml +++ b/packages/smithy/goldens/lib2/restXmlWithNamespace/pubspec.yaml @@ -8,12 +8,9 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - smithy: - path: ../../../smithy - smithy_aws: - path: ../../../smithy_aws - aws_common: - path: ../../../../aws_common + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" + aws_common: ">=0.4.0 <0.5.0" built_value: ">=8.4.0 <8.5.0" xml: ">=6.1.0 <=6.2.2" fixnum: ^1.0.0 diff --git a/packages/smithy/goldens/pubspec.yaml b/packages/smithy/goldens/pubspec.yaml index 2a918e6fd7..d599648d94 100644 --- a/packages/smithy/goldens/pubspec.yaml +++ b/packages/smithy/goldens/pubspec.yaml @@ -7,10 +7,8 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - aws_common: - path: ../../aws_common - smithy: - path: ../smithy + aws_common: ">=0.4.0 <0.5.0" + smithy: ">=0.4.0+1 <0.5.0" dependency_overrides: aws_common: diff --git a/packages/smithy/smithy/CHANGELOG.md b/packages/smithy/smithy/CHANGELOG.md index 8ec513ef5f..0792e678a7 100644 --- a/packages/smithy/smithy/CHANGELOG.md +++ b/packages/smithy/smithy/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.4.0+1 + +### Features +- feat(smithy_aws): add copyWith to S3ClientConfig + ## 0.4.0 ### Breaking Changes diff --git a/packages/smithy/smithy/pubspec.yaml b/packages/smithy/smithy/pubspec.yaml index f824f5b6a5..029dc57aae 100644 --- a/packages/smithy/smithy/pubspec.yaml +++ b/packages/smithy/smithy/pubspec.yaml @@ -1,6 +1,6 @@ name: smithy description: Smithy client runtime for Dart with common utilities for I/O and serialization. -version: 0.4.0 +version: 0.4.0+1 homepage: https://github.com/aws-amplify/amplify-flutter/tree/next repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/smithy/smithy issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -10,7 +10,7 @@ environment: dependencies: async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" collection: ^1.15.0 diff --git a/packages/smithy/smithy_aws/CHANGELOG.md b/packages/smithy/smithy_aws/CHANGELOG.md index 114d901526..d5f900ee66 100644 --- a/packages/smithy/smithy_aws/CHANGELOG.md +++ b/packages/smithy/smithy_aws/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.4.1 + +### Features +- feat(smithy_aws): add copyWith to S3ClientConfig + ## 0.4.0 - Minor bug fixes and improvements diff --git a/packages/smithy/smithy_aws/pubspec.yaml b/packages/smithy/smithy_aws/pubspec.yaml index c5c039e506..78cac15c4f 100644 --- a/packages/smithy/smithy_aws/pubspec.yaml +++ b/packages/smithy/smithy_aws/pubspec.yaml @@ -1,6 +1,6 @@ name: smithy_aws description: Smithy runtime for AWS clients with utilities for endpoint resolution, retry behavior, and SigV4 signing. -version: 0.4.0 +version: 0.4.1 homepage: https://github.com/aws-amplify/amplify-flutter/tree/next repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/smithy/smithy_aws issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -9,8 +9,8 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - aws_common: ">=0.3.5+1 <0.4.0" - aws_signature_v4: ">=0.3.1+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" collection: ^1.15.0 @@ -21,7 +21,7 @@ dependencies: json_annotation: ^4.7.0 meta: ^1.7.0 path: ^1.8.0 - smithy: ">=0.4.0 <0.5.0" + smithy: ">=0.4.0+1 <0.5.0" xml: ">=6.1.0 <=6.2.2" dev_dependencies: diff --git a/packages/smithy/smithy_codegen/pubspec.yaml b/packages/smithy/smithy_codegen/pubspec.yaml index 7fa3e801bf..bbed06a071 100644 --- a/packages/smithy/smithy_codegen/pubspec.yaml +++ b/packages/smithy/smithy_codegen/pubspec.yaml @@ -9,8 +9,8 @@ environment: dependencies: args: ^2.3.0 - aws_common: ">=0.3.3 <0.4.0" - aws_signature_v4: ">=0.3.1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" build_cli_annotations: ^2.0.0 built_collection: ^5.1.1 built_value: ">=8.4.0 <8.5.0" @@ -30,8 +30,8 @@ dependencies: pubspec_parse: ^1.2.0 shelf: ^1.1.0 shelf_router: ^1.1.0 - smithy: ">=0.3.1 <0.4.0" - smithy_aws: ">=0.3.1 <0.4.0" + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.0+1 <0.5.0" tuple: ^2.0.0 xml: ">=6.1.0 <=6.2.2" yaml_edit: ^2.0.1 diff --git a/packages/smithy/smithy_test/pubspec.yaml b/packages/smithy/smithy_test/pubspec.yaml index 13022937d3..5c0a9dd487 100644 --- a/packages/smithy/smithy_test/pubspec.yaml +++ b/packages/smithy/smithy_test/pubspec.yaml @@ -9,13 +9,13 @@ environment: dependencies: async: ^2.8.0 - aws_common: ^0.2.0 - aws_signature_v4: ^0.2.0 + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" built_value: ">=8.4.0 <8.5.0" collection: ^1.15.0 fixnum: ^1.0.0 path: ^1.8.0 - smithy: ^0.1.0 + smithy: ">=0.4.0+1 <0.5.0" test: ^1.16.0 tuple: ^2.0.0 xml: ">=6.1.0 <=6.2.2" diff --git a/packages/storage/amplify_storage_s3/CHANGELOG.md b/packages/storage/amplify_storage_s3/CHANGELOG.md index c821b96f23..6f38875a35 100644 --- a/packages/storage/amplify_storage_s3/CHANGELOG.md +++ b/packages/storage/amplify_storage_s3/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0-next.4 + +- Minor bug fixes and improvements + ## 1.0.0-next.3 ### Fixes diff --git a/packages/storage/amplify_storage_s3/example/pubspec.yaml b/packages/storage/amplify_storage_s3/example/pubspec.yaml index fd16264ad9..a793a47b29 100644 --- a/packages/storage/amplify_storage_s3/example/pubspec.yaml +++ b/packages/storage/amplify_storage_s3/example/pubspec.yaml @@ -8,23 +8,13 @@ environment: flutter: ">=3.0.0" dependencies: - amplify_auth_cognito: - # When depending on this package from a real application you should use: - # amplify_auth_cognito: ^x.y.z - # See https://dart.dev/tools/pub/dependencies#version-constraints - # The example app is bundled with the plugin so we use a path dependency on - # the parent directory to use the current plugin's version. - path: ../../../auth/amplify_auth_cognito - amplify_authenticator: - path: ../../../authenticator/amplify_authenticator - amplify_core: - path: ../../../amplify_core - amplify_flutter: - path: ../../../amplify/amplify_flutter + amplify_auth_cognito: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_authenticator: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_flutter: ">=1.0.0-next.4 <1.0.0-next.5" amplify_secure_storage: path: ../../../secure_storage/amplify_secure_storage - amplify_storage_s3: - path: ../ + amplify_storage_s3: ">=1.0.0-next.4 <1.0.0-next.5" flutter: sdk: flutter go_router: ^5.0.5 @@ -32,12 +22,10 @@ dependencies: dev_dependencies: amplify_lints: path: ../../../amplify_lints - amplify_storage_s3_dart: - path: ../../amplify_storage_s3_dart + amplify_storage_s3_dart: ">=0.1.4+2 <0.2.0" amplify_test: path: ../../../amplify_test - aws_common: - path: ../../../aws_common + aws_common: ">=0.4.0 <0.5.0" drift: ">=2.3.0 <2.4.0" flutter_driver: sdk: flutter diff --git a/packages/storage/amplify_storage_s3/pubspec.yaml b/packages/storage/amplify_storage_s3/pubspec.yaml index 2414bf1f06..297a830996 100644 --- a/packages/storage/amplify_storage_s3/pubspec.yaml +++ b/packages/storage/amplify_storage_s3/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_storage_s3 description: The Amplify Flutter Storage category plugin using the AWS S3 provider. -version: 1.0.0-next.3 +version: 1.0.0-next.4 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/storage/amplify_storage_s3 issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -19,10 +19,10 @@ platforms: web: dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" amplify_db_common: ">=0.1.2+1 <0.2.0" - amplify_storage_s3_dart: ">=0.1.4+1 <0.2.0" - aws_common: ">=0.3.5+1 <0.4.0" + amplify_storage_s3_dart: ">=0.1.4+2 <0.2.0" + aws_common: ">=0.4.0 <0.5.0" flutter: sdk: flutter meta: ^1.7.0 @@ -32,7 +32,7 @@ dev_dependencies: amplify_lints: ^2.0.0 amplify_test: path: ../../amplify_test - aws_signature_v4: + aws_signature_v4: ">=0.3.1+2 <0.4.0" flutter_test: sdk: flutter mocktail: ^0.3.0 diff --git a/packages/storage/amplify_storage_s3_dart/CHANGELOG.md b/packages/storage/amplify_storage_s3_dart/CHANGELOG.md index aaf2426552..6f2ef1069d 100644 --- a/packages/storage/amplify_storage_s3_dart/CHANGELOG.md +++ b/packages/storage/amplify_storage_s3_dart/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.5 + +### Fixes +- fix(storage): incorrect transferred bytes emitted from upload task + +### Features +- feat(storage): allow configuring transfer acceleration + ## 0.1.4+1 - Minor bug fixes and improvements diff --git a/packages/storage/amplify_storage_s3_dart/example/pubspec.yaml b/packages/storage/amplify_storage_s3_dart/example/pubspec.yaml index 6f9b6b2ce7..ba071924dd 100644 --- a/packages/storage/amplify_storage_s3_dart/example/pubspec.yaml +++ b/packages/storage/amplify_storage_s3_dart/example/pubspec.yaml @@ -7,14 +7,10 @@ environment: sdk: '>=2.17.6 <3.0.0' dependencies: - amplify_auth_cognito_dart: - path: ../../../auth/amplify_auth_cognito_dart - amplify_core: - path: ../../../amplify_core - amplify_secure_storage_dart: - path: ../../../secure_storage/amplify_secure_storage_dart - amplify_storage_s3_dart: - path: ../ + amplify_auth_cognito_dart: ">=0.5.0 <0.6.0" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_secure_storage_dart: ">=0.1.4+2 <0.2.0" + amplify_storage_s3_dart: ">=0.1.4+2 <0.2.0" example_common: path: ../../../example_common diff --git a/packages/storage/amplify_storage_s3_dart/pubspec.yaml b/packages/storage/amplify_storage_s3_dart/pubspec.yaml index ed499398c9..43d7f41ffe 100644 --- a/packages/storage/amplify_storage_s3_dart/pubspec.yaml +++ b/packages/storage/amplify_storage_s3_dart/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_storage_s3_dart description: A Dart-only implementation of the Amplify Storage plugin for S3. -version: 0.1.4+1 +version: 0.1.5 homepage: https://docs.amplify.aws/lib/q/platform/flutter/ repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/storage/amplify_storage_s3_dart issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -9,19 +9,19 @@ environment: sdk: '>=2.17.0 <3.0.0' dependencies: - amplify_core: ">=1.0.0-next.3 <1.0.0-next.4" - amplify_db_common_dart: ">=0.2.0 <0.3.0" + amplify_core: ">=1.0.0-next.4 <1.0.0-next.5" + amplify_db_common_dart: ">=0.2.0+1 <0.3.0" async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" - aws_signature_v4: ">=0.3.1+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" + aws_signature_v4: ">=0.3.1+2 <0.4.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" drift: ">=2.3.0 <2.4.0" fixnum: ^1.0.0 meta: ^1.7.0 path: ^1.8.0 - smithy: ">=0.4.0 <0.5.0" - smithy_aws: ">=0.4.0 <0.5.0" + smithy: ">=0.4.0+1 <0.5.0" + smithy_aws: ">=0.4.1 <0.5.0" dev_dependencies: amplify_lints: diff --git a/packages/worker_bee/e2e/pubspec.yaml b/packages/worker_bee/e2e/pubspec.yaml index 3a6a1a8061..e97a6b9dac 100644 --- a/packages/worker_bee/e2e/pubspec.yaml +++ b/packages/worker_bee/e2e/pubspec.yaml @@ -6,15 +6,13 @@ environment: sdk: '>=2.17.0 <3.0.0' dependencies: - aws_common: - path: ../../aws_common + aws_common: ">=0.4.0 <0.5.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" fixnum: ^1.0.0 meta: ^1.7.0 test: ^1.19.0 - worker_bee: - path: ../worker_bee + worker_bee: ">=0.1.3+2 <0.2.0" dependency_overrides: aws_common: diff --git a/packages/worker_bee/e2e_test/pubspec.yaml b/packages/worker_bee/e2e_test/pubspec.yaml index 622d12fc2e..5b15d4f576 100644 --- a/packages/worker_bee/e2e_test/pubspec.yaml +++ b/packages/worker_bee/e2e_test/pubspec.yaml @@ -14,8 +14,7 @@ dependency_overrides: dev_dependencies: amplify_lints: path: ../../amplify_lints - aws_common: - path: ../../aws_common + aws_common: ">=0.4.0 <0.5.0" build_runner: ^2.0.0 build_test: ^2.0.0 build_web_compilers: ^3.2.3 @@ -26,7 +25,6 @@ dev_dependencies: path: ../e2e meta: ^1.7.0 test: ^1.19.0 - worker_bee: - path: ../worker_bee + worker_bee: ">=0.1.3+2 <0.2.0" worker_bee_builder: path: ../worker_bee_builder diff --git a/packages/worker_bee/worker_bee/CHANGELOG.md b/packages/worker_bee/worker_bee/CHANGELOG.md index cd743ad0eb..e9d92f0d0c 100644 --- a/packages/worker_bee/worker_bee/CHANGELOG.md +++ b/packages/worker_bee/worker_bee/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.3+2 + +- Minor bug fixes and improvements + ## 0.1.3+1 - Minor bug fixes and improvements diff --git a/packages/worker_bee/worker_bee/pubspec.yaml b/packages/worker_bee/worker_bee/pubspec.yaml index 8ec0d531cb..848e1999dc 100644 --- a/packages/worker_bee/worker_bee/pubspec.yaml +++ b/packages/worker_bee/worker_bee/pubspec.yaml @@ -1,6 +1,6 @@ name: worker_bee description: A cross-platform isolated worker runtime for Dart Web, VM, and Flutter. -version: 0.1.3+1 +version: 0.1.3+2 homepage: https://github.com/aws-amplify/amplify-flutter/tree/next repository: https://github.com/aws-amplify/amplify-flutter/tree/next/packages/worker_bee/worker_bee issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -10,7 +10,7 @@ environment: dependencies: async: ^2.8.0 - aws_common: ">=0.3.5+1 <0.4.0" + aws_common: ">=0.4.0 <0.5.0" built_collection: ^5.0.0 built_value: ">=8.4.0 <8.5.0" collection: ^1.15.0 diff --git a/packages/worker_bee/worker_bee_builder/pubspec.yaml b/packages/worker_bee/worker_bee_builder/pubspec.yaml index b297f5340d..b20e1b7da2 100644 --- a/packages/worker_bee/worker_bee_builder/pubspec.yaml +++ b/packages/worker_bee/worker_bee_builder/pubspec.yaml @@ -20,7 +20,7 @@ dependencies: source_gen: ^1.2.1 stream_channel: ^2.1.0 tuple: ^2.0.0 - worker_bee: ">=0.1.3+1 <0.2.0" + worker_bee: ">=0.1.3+2 <0.2.0" dev_dependencies: amplify_lints: