From 294fc0749589f9f981e1e953c3a29edb1d056652 Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Fri, 27 Jun 2025 10:24:26 -0700 Subject: [PATCH] chore(shorebird_cli): update bundletool from 1.17.1 to 1.18.1 (#3200) --- packages/shorebird_cli/lib/src/cache.dart | 4 ++-- packages/shorebird_cli/test/src/cache_test.dart | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/shorebird_cli/lib/src/cache.dart b/packages/shorebird_cli/lib/src/cache.dart index 3e7d0b64..6f3060d2 100644 --- a/packages/shorebird_cli/lib/src/cache.dart +++ b/packages/shorebird_cli/lib/src/cache.dart @@ -372,7 +372,7 @@ class BundleToolArtifact extends CachedArtifact { @override String get storageUrl { - return 'https://github.com/google/bundletool/releases/download/1.17.1/bundletool-all-1.17.1.jar'; + return 'https://github.com/google/bundletool/releases/download/1.18.1/bundletool-all-1.18.1.jar'; } @override @@ -383,5 +383,5 @@ class BundleToolArtifact extends CachedArtifact { // ```shell // shasum --algorithm 256 /path/to/file // ``` - '''45881ead13388872d82c4255b195488b7fc33f2cac5a9a977b0afc5e92367592'''; + '''675786493983787ffa11550bdb7c0715679a44e1643f3ff980a529e9c822595c'''; } diff --git a/packages/shorebird_cli/test/src/cache_test.dart b/packages/shorebird_cli/test/src/cache_test.dart index c68edf6f..d41a7734 100644 --- a/packages/shorebird_cli/test/src/cache_test.dart +++ b/packages/shorebird_cli/test/src/cache_test.dart @@ -355,7 +355,7 @@ void main() { final expected = [ perEngine('patch-darwin-x64.zip'), - 'https://github.com/google/bundletool/releases/download/1.17.1/bundletool-all-1.17.1.jar', + 'https://github.com/google/bundletool/releases/download/1.18.1/bundletool-all-1.18.1.jar', perEngine('aot-tools.dill'), ].map(Uri.parse).toList(); @@ -379,7 +379,7 @@ void main() { final expected = [ perEngine('patch-windows-x64.zip'), - 'https://github.com/google/bundletool/releases/download/1.17.1/bundletool-all-1.17.1.jar', + 'https://github.com/google/bundletool/releases/download/1.18.1/bundletool-all-1.18.1.jar', perEngine('aot-tools.dill'), ].map(Uri.parse).toList(); @@ -403,7 +403,7 @@ void main() { final expected = [ perEngine('patch-linux-x64.zip'), - 'https://github.com/google/bundletool/releases/download/1.17.1/bundletool-all-1.17.1.jar', + 'https://github.com/google/bundletool/releases/download/1.18.1/bundletool-all-1.18.1.jar', perEngine('aot-tools.dill'), ].map(Uri.parse).toList();