diff --git a/packages/aft/pubspec.yaml b/packages/aft/pubspec.yaml index f5aa941441..12dd781783 100644 --- a/packages/aft/pubspec.yaml +++ b/packages/aft/pubspec.yaml @@ -14,7 +14,7 @@ dependencies: built_value: ">=8.6.0 <8.7.0" checked_yaml: ^2.0.0 cli_util: ^0.3.5 - code_builder: 4.6.0 + code_builder: 4.7.0 collection: ^1.16.0 file: ">=6.0.0 <8.0.0" git: any # override diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/asf/asf_worker.worker.js.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/asf/asf_worker.worker.js.dart index 18a8a67542..a1c724e4c0 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/asf/asf_worker.worker.js.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/asf/asf_worker.worker.js.dart @@ -7,6 +7,7 @@ import 'package:aws_common/aws_common.dart'; class ASFWorkerImpl extends ASFWorker { @override String get name => 'ASFWorker'; + @override String get jsEntrypoint { // Flutter web release builds must use the bundled asset. diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/asf/asf_worker.worker.vm.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/asf/asf_worker.worker.vm.dart index 99a8e22164..03565fb37e 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/asf/asf_worker.worker.vm.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/asf/asf_worker.worker.vm.dart @@ -25,6 +25,7 @@ Future _run(SendPorts ports) async { class ASFWorkerImpl extends ASFWorker { @override String get name => 'ASFWorker'; + @override VmEntrypoint get vmEntrypoint => _run; } diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/device/confirm_device_worker.worker.js.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/device/confirm_device_worker.worker.js.dart index 46b8e5b90a..7ac15bcd8b 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/device/confirm_device_worker.worker.js.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/device/confirm_device_worker.worker.js.dart @@ -7,6 +7,7 @@ import 'package:aws_common/aws_common.dart'; class ConfirmDeviceWorkerImpl extends ConfirmDeviceWorker { @override String get name => 'ConfirmDeviceWorker'; + @override String get jsEntrypoint { // Flutter web release builds must use the bundled asset. diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/device/confirm_device_worker.worker.vm.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/device/confirm_device_worker.worker.vm.dart index 7c29ece607..6a76f9c9dd 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/device/confirm_device_worker.worker.vm.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/device/confirm_device_worker.worker.vm.dart @@ -25,6 +25,7 @@ Future _run(SendPorts ports) async { class ConfirmDeviceWorkerImpl extends ConfirmDeviceWorker { @override String get name => 'ConfirmDeviceWorker'; + @override VmEntrypoint get vmEntrypoint => _run; } diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_device_password_verifier_worker.worker.js.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_device_password_verifier_worker.worker.js.dart index d2ecacb6c6..d19e7ed7c0 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_device_password_verifier_worker.worker.js.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_device_password_verifier_worker.worker.js.dart @@ -8,6 +8,7 @@ class SrpDevicePasswordVerifierWorkerImpl extends SrpDevicePasswordVerifierWorker { @override String get name => 'SrpDevicePasswordVerifierWorker'; + @override String get jsEntrypoint { // Flutter web release builds must use the bundled asset. diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_device_password_verifier_worker.worker.vm.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_device_password_verifier_worker.worker.vm.dart index ce4813a010..4c7cbe3723 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_device_password_verifier_worker.worker.vm.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_device_password_verifier_worker.worker.vm.dart @@ -26,6 +26,7 @@ class SrpDevicePasswordVerifierWorkerImpl extends SrpDevicePasswordVerifierWorker { @override String get name => 'SrpDevicePasswordVerifierWorker'; + @override VmEntrypoint get vmEntrypoint => _run; } diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_init_worker.worker.js.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_init_worker.worker.js.dart index db3636b2d9..d3db92f44f 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_init_worker.worker.js.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_init_worker.worker.js.dart @@ -7,6 +7,7 @@ import 'package:aws_common/aws_common.dart'; class SrpInitWorkerImpl extends SrpInitWorker { @override String get name => 'SrpInitWorker'; + @override String get jsEntrypoint { // Flutter web release builds must use the bundled asset. diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_init_worker.worker.vm.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_init_worker.worker.vm.dart index 4bf83f0b7a..b02aaa6dd8 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_init_worker.worker.vm.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_init_worker.worker.vm.dart @@ -25,6 +25,7 @@ Future _run(SendPorts ports) async { class SrpInitWorkerImpl extends SrpInitWorker { @override String get name => 'SrpInitWorker'; + @override VmEntrypoint get vmEntrypoint => _run; } diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_password_verifier_worker.worker.js.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_password_verifier_worker.worker.js.dart index 6ebd4de33a..bca44f8a8e 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_password_verifier_worker.worker.js.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_password_verifier_worker.worker.js.dart @@ -7,6 +7,7 @@ import 'package:aws_common/aws_common.dart'; class SrpPasswordVerifierWorkerImpl extends SrpPasswordVerifierWorker { @override String get name => 'SrpPasswordVerifierWorker'; + @override String get jsEntrypoint { // Flutter web release builds must use the bundled asset. diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_password_verifier_worker.worker.vm.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_password_verifier_worker.worker.vm.dart index 1ae7f12b7b..8c4cdc593e 100644 --- a/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_password_verifier_worker.worker.vm.dart +++ b/packages/auth/amplify_auth_cognito_dart/lib/src/flows/srp/srp_password_verifier_worker.worker.vm.dart @@ -25,6 +25,7 @@ Future _run(SendPorts ports) async { class SrpPasswordVerifierWorkerImpl extends SrpPasswordVerifierWorker { @override String get name => 'SrpPasswordVerifierWorker'; + @override VmEntrypoint get vmEntrypoint => _run; } diff --git a/packages/secure_storage/amplify_secure_storage_dart/lib/src/worker/secure_storage_worker.worker.js.dart b/packages/secure_storage/amplify_secure_storage_dart/lib/src/worker/secure_storage_worker.worker.js.dart index 77da0b62ff..1b79fc39b0 100644 --- a/packages/secure_storage/amplify_secure_storage_dart/lib/src/worker/secure_storage_worker.worker.js.dart +++ b/packages/secure_storage/amplify_secure_storage_dart/lib/src/worker/secure_storage_worker.worker.js.dart @@ -7,6 +7,7 @@ import 'package:aws_common/aws_common.dart'; class SecureStorageWorkerImpl extends SecureStorageWorker { @override String get name => 'SecureStorageWorker'; + @override String get jsEntrypoint { // Flutter web release builds must use the bundled asset. diff --git a/packages/secure_storage/amplify_secure_storage_dart/lib/src/worker/secure_storage_worker.worker.vm.dart b/packages/secure_storage/amplify_secure_storage_dart/lib/src/worker/secure_storage_worker.worker.vm.dart index 32abdc487c..b9ef02fb62 100644 --- a/packages/secure_storage/amplify_secure_storage_dart/lib/src/worker/secure_storage_worker.worker.vm.dart +++ b/packages/secure_storage/amplify_secure_storage_dart/lib/src/worker/secure_storage_worker.worker.vm.dart @@ -25,6 +25,7 @@ Future _run(SendPorts ports) async { class SecureStorageWorkerImpl extends SecureStorageWorker { @override String get name => 'SecureStorageWorker'; + @override VmEntrypoint get vmEntrypoint => _run; } diff --git a/packages/smithy/smithy_codegen/pubspec.yaml b/packages/smithy/smithy_codegen/pubspec.yaml index 72346ce5b8..f1890d8e04 100644 --- a/packages/smithy/smithy_codegen/pubspec.yaml +++ b/packages/smithy/smithy_codegen/pubspec.yaml @@ -14,7 +14,7 @@ dependencies: build_cli_annotations: ^2.0.0 built_collection: ^5.1.1 built_value: ">=8.6.0 <8.7.0" - code_builder: 4.6.0 + code_builder: 4.7.0 collection: ^1.15.0 crclib: ^3.0.0 dart_style: 2.3.2 diff --git a/packages/worker_bee/worker_bee_builder/pubspec.yaml b/packages/worker_bee/worker_bee_builder/pubspec.yaml index f0e4814cdb..4a0b59ce65 100644 --- a/packages/worker_bee/worker_bee_builder/pubspec.yaml +++ b/packages/worker_bee/worker_bee_builder/pubspec.yaml @@ -12,7 +12,7 @@ dependencies: analyzer: ">=5.1.0 <7.0.0" async: ^2.10.0 build: ^2.2.1 - code_builder: 4.6.0 + code_builder: 4.7.0 collection: ^1.15.0 dart_style: 2.3.2 meta: ^1.7.0 diff --git a/pubspec.yaml b/pubspec.yaml index c0ffb11a9e..6f11fd7cc5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -19,7 +19,7 @@ dependencies: build_web_compilers: ^4.0.0 built_value: ">=8.6.0 <8.7.0" built_value_generator: 8.6.1 - code_builder: 4.6.0 + code_builder: 4.7.0 connectivity_plus: ">=4.0.1 <6.0.0" # This must exactly match what's included in `dart format` # on stable so that CI checks pass for generated code.