diff --git a/packages/shorebird_cli/lib/src/cache.dart b/packages/shorebird_cli/lib/src/cache.dart index 7b40346b..61fb150e 100644 --- a/packages/shorebird_cli/lib/src/cache.dart +++ b/packages/shorebird_cli/lib/src/cache.dart @@ -353,7 +353,7 @@ class BundleToolArtifact extends CachedArtifact { @override String get storageUrl { - return 'https://github.com/google/bundletool/releases/download/1.15.6/bundletool-all-1.15.6.jar'; + return 'https://github.com/google/bundletool/releases/download/1.17.1/bundletool-all-1.17.1.jar'; } @override @@ -364,5 +364,5 @@ class BundleToolArtifact extends CachedArtifact { // ```shell // shasum --algorithm 256 /path/to/file // ``` - '''38ae8a10bcdacef07ecce8211188c5c92b376be96da38ff3ee1f2cf4895b2cb8'''; + '''45881ead13388872d82c4255b195488b7fc33f2cac5a9a977b0afc5e92367592'''; } diff --git a/packages/shorebird_cli/test/src/cache_test.dart b/packages/shorebird_cli/test/src/cache_test.dart index a850a14e..1d429893 100644 --- a/packages/shorebird_cli/test/src/cache_test.dart +++ b/packages/shorebird_cli/test/src/cache_test.dart @@ -303,8 +303,9 @@ void main() { group('when checksum validation fails', () { setUp(() { - when(() => checksumChecker.checkFile(any(), any())) - .thenReturn(false); + when( + () => checksumChecker.checkFile(any(), any()), + ).thenReturn(false); }); test('fails with the correct message', () async { @@ -344,7 +345,7 @@ void main() { final expected = [ perEngine('patch-darwin-x64.zip'), - 'https://github.com/google/bundletool/releases/download/1.15.6/bundletool-all-1.15.6.jar', + 'https://github.com/google/bundletool/releases/download/1.17.1/bundletool-all-1.17.1.jar', perEngine('aot-tools.dill'), ].map(Uri.parse).toList(); @@ -370,7 +371,7 @@ void main() { final expected = [ perEngine('patch-windows-x64.zip'), - 'https://github.com/google/bundletool/releases/download/1.15.6/bundletool-all-1.15.6.jar', + 'https://github.com/google/bundletool/releases/download/1.17.1/bundletool-all-1.17.1.jar', perEngine('aot-tools.dill'), ].map(Uri.parse).toList(); @@ -396,7 +397,7 @@ void main() { final expected = [ perEngine('patch-linux-x64.zip'), - 'https://github.com/google/bundletool/releases/download/1.15.6/bundletool-all-1.15.6.jar', + 'https://github.com/google/bundletool/releases/download/1.17.1/bundletool-all-1.17.1.jar', perEngine('aot-tools.dill'), ].map(Uri.parse).toList();