From 546d944566053acb2e04e7f2ddb13a10e6bca49c Mon Sep 17 00:00:00 2001 From: Ricardo Dalarme Date: Tue, 9 Dec 2025 09:30:39 -0300 Subject: [PATCH 1/5] chore: upgrade very_good_analysis to 10.1.0-rc.2 --- bricks/test_optimizer/hooks/pubspec.yaml | 2 +- e2e/helpers/command_helper.dart | 2 +- e2e/pubspec.yaml | 2 +- lib/src/cli/templates/test_optimizer_bundle.dart | 2 +- pubspec.yaml | 2 +- test/helpers/command_helper.dart | 2 +- test/src/commands/dart/commands/dart_test_test.dart | 2 +- .../commands/check/commands/licenses_test.dart | 12 ++++++------ test/src/commands/test/test_test.dart | 3 +-- tool/spdx_license/hooks/pubspec.yaml | 2 +- tool/spdx_license/pubspec.yaml | 2 +- 11 files changed, 16 insertions(+), 17 deletions(-) diff --git a/bricks/test_optimizer/hooks/pubspec.yaml b/bricks/test_optimizer/hooks/pubspec.yaml index 5b2b9fd15..b8293ca47 100644 --- a/bricks/test_optimizer/hooks/pubspec.yaml +++ b/bricks/test_optimizer/hooks/pubspec.yaml @@ -13,4 +13,4 @@ dependencies: dev_dependencies: mocktail: ^1.0.0 test: ^1.25.0 - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0-rc.2 diff --git a/e2e/helpers/command_helper.dart b/e2e/helpers/command_helper.dart index 106134e37..8016e603b 100644 --- a/e2e/helpers/command_helper.dart +++ b/e2e/helpers/command_helper.dart @@ -15,7 +15,7 @@ void Function() _overridePrint(void Function(List) fn) { return () { final printLogs = []; final spec = ZoneSpecification( - print: (_, _, _, String msg) { + print: (_, _, _, msg) { printLogs.add(msg); }, ); diff --git a/e2e/pubspec.yaml b/e2e/pubspec.yaml index fa9081e0a..e232c183c 100644 --- a/e2e/pubspec.yaml +++ b/e2e/pubspec.yaml @@ -13,6 +13,6 @@ dev_dependencies: pub_updater: ^0.5.0 test: ^1.25.0 universal_io: ^2.0.4 - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0-rc.2 very_good_cli: path: ../ diff --git a/lib/src/cli/templates/test_optimizer_bundle.dart b/lib/src/cli/templates/test_optimizer_bundle.dart index 330ff0483..73c829361 100644 --- a/lib/src/cli/templates/test_optimizer_bundle.dart +++ b/lib/src/cli/templates/test_optimizer_bundle.dart @@ -35,7 +35,7 @@ final testOptimizerBundle = MasonBundle.fromJson({ { "path": "pubspec.yaml", "data": - "bmFtZTogaG9va3MKcHVibGlzaF90bzogbm9uZQoKZW52aXJvbm1lbnQ6CiAgc2RrOiBeMy4xMC4wCgpkZXBlbmRlbmNpZXM6CiAgbWFzb246IF4wLjEuMAogIHBhdGg6IF4xLjguMQoKIyBCZXdhcmU6IG9uIGhvb2tzLCBldmVuIGRldiBkZXBlbmRlbmNpZXMgaGF2ZSB0byBiZSBjb21wYXRpYmxlIHRvIGFsbCBkYXJ0IHZlcnNpb25zIGNvdmVyZWQgYnkKIyB0aGUgc2RrIGNvbnN0cmFpbnRzIGFib3ZlCmRldl9kZXBlbmRlbmNpZXM6CiAgbW9ja3RhaWw6IF4xLjAuMAogIHRlc3Q6IF4xLjI1LjAKICB2ZXJ5X2dvb2RfYW5hbHlzaXM6IF4xMC4wLjAK", + "bmFtZTogaG9va3MKcHVibGlzaF90bzogbm9uZQoKZW52aXJvbm1lbnQ6CiAgc2RrOiBeMy4xMC4wCgpkZXBlbmRlbmNpZXM6CiAgbWFzb246IF4wLjEuMAogIHBhdGg6IF4xLjguMQoKIyBCZXdhcmU6IG9uIGhvb2tzLCBldmVuIGRldiBkZXBlbmRlbmNpZXMgaGF2ZSB0byBiZSBjb21wYXRpYmxlIHRvIGFsbCBkYXJ0IHZlcnNpb25zIGNvdmVyZWQgYnkKIyB0aGUgc2RrIGNvbnN0cmFpbnRzIGFib3ZlCmRldl9kZXBlbmRlbmNpZXM6CiAgbW9ja3RhaWw6IF4xLjAuMAogIHRlc3Q6IF4xLjI1LjAKICB2ZXJ5X2dvb2RfYW5hbHlzaXM6IF4xMC4xLjAtcmMuMgo=", "type": "text", }, { diff --git a/pubspec.yaml b/pubspec.yaml index 7b00b4b58..ab70f047d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -38,7 +38,7 @@ dev_dependencies: build_verify: ^3.1.0 mocktail: ^1.0.4 test: ^1.25.8 - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0-rc.2 executables: very_good: diff --git a/test/helpers/command_helper.dart b/test/helpers/command_helper.dart index c18d02d69..82eb9305a 100644 --- a/test/helpers/command_helper.dart +++ b/test/helpers/command_helper.dart @@ -15,7 +15,7 @@ void Function() _overridePrint(void Function(List) fn) { return () { final printLogs = []; final spec = ZoneSpecification( - print: (_, _, _, String msg) { + print: (_, _, _, msg) { printLogs.add(msg); }, ); diff --git a/test/src/commands/dart/commands/dart_test_test.dart b/test/src/commands/dart/commands/dart_test_test.dart index 215c8347d..28179114e 100644 --- a/test/src/commands/dart/commands/dart_test_test.dart +++ b/test/src/commands/dart/commands/dart_test_test.dart @@ -85,7 +85,7 @@ void main() { dartTest = _MockDartTestCommand(); testCommand = DartTestCommand( logger: logger, - dartInstalled: ({required Logger logger}) async => isFlutterInstalled, + dartInstalled: ({required logger}) async => isFlutterInstalled, dartTest: dartTest.call, )..argResultOverrides = argResults; when( diff --git a/test/src/commands/packages/commands/check/commands/licenses_test.dart b/test/src/commands/packages/commands/check/commands/licenses_test.dart index 11f0bdce5..144bf9a8b 100644 --- a/test/src/commands/packages/commands/check/commands/licenses_test.dart +++ b/test/src/commands/packages/commands/check/commands/licenses_test.dart @@ -1095,7 +1095,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage, cliCompletionConfigPackage, }); - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = name == veryGoodTestRunnerConfigPackage.name ? [mitLicenseMatch] @@ -1142,7 +1142,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage, cliCompletionConfigPackage, }); - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = name == veryGoodTestRunnerConfigPackage.name ? [mitLicenseMatch] @@ -1191,7 +1191,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage, cliCompletionConfigPackage, }); - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = name == veryGoodTestRunnerConfigPackage.name ? [mitLicenseMatch] @@ -1315,7 +1315,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage.name: [mitLicenseMatch], cliCompletionConfigPackage.name: [bsdLicenseMatch], }; - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = packageLicenseMatch[name]!; @@ -1364,7 +1364,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage.name: [mitLicenseMatch], cliCompletionConfigPackage.name: [bsdLicenseMatch], }; - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = packageLicenseMatch[name]!; @@ -1415,7 +1415,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage.name: [mitLicenseMatch], cliCompletionConfigPackage.name: [bsdLicenseMatch], }; - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = packageLicenseMatch[name]!; diff --git a/test/src/commands/test/test_test.dart b/test/src/commands/test/test_test.dart index cc39567f2..f90929b7b 100644 --- a/test/src/commands/test/test_test.dart +++ b/test/src/commands/test/test_test.dart @@ -86,8 +86,7 @@ void main() { flutterTest = _MockFlutterTestCommand(); testCommand = TestCommand( logger: logger, - flutterInstalled: ({required Logger logger}) async => - isFlutterInstalled, + flutterInstalled: ({required logger}) async => isFlutterInstalled, flutterTest: flutterTest.call, )..argResultOverrides = argResults; when( diff --git a/tool/spdx_license/hooks/pubspec.yaml b/tool/spdx_license/hooks/pubspec.yaml index a6c9b1884..478f8e47e 100644 --- a/tool/spdx_license/hooks/pubspec.yaml +++ b/tool/spdx_license/hooks/pubspec.yaml @@ -18,4 +18,4 @@ dependencies: dev_dependencies: mocktail: ^1.0.3 test: ">=1.25.2 <1.27.0" - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0-rc.2 diff --git a/tool/spdx_license/pubspec.yaml b/tool/spdx_license/pubspec.yaml index bcb130ba5..be7a5404e 100644 --- a/tool/spdx_license/pubspec.yaml +++ b/tool/spdx_license/pubspec.yaml @@ -10,4 +10,4 @@ environment: dev_dependencies: test: ^1.25.2 - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0-rc.2 From a84337170166b7e2cf10dfd84dfe8173868423ee Mon Sep 17 00:00:00 2001 From: Ricardo Dalarme Date: Tue, 9 Dec 2025 09:30:39 -0300 Subject: [PATCH 2/5] chore: upgrade very_good_analysis to 10.1.0-rc.2 --- bricks/test_optimizer/hooks/pubspec.yaml | 2 +- e2e/helpers/command_helper.dart | 2 +- e2e/pubspec.yaml | 2 +- lib/src/cli/templates/test_optimizer_bundle.dart | 2 +- pubspec.yaml | 2 +- test/helpers/command_helper.dart | 2 +- test/src/commands/dart/commands/dart_test_test.dart | 2 +- .../commands/check/commands/licenses_test.dart | 12 ++++++------ test/src/commands/test/test_test.dart | 3 +-- tool/spdx_license/hooks/pubspec.yaml | 2 +- tool/spdx_license/pubspec.yaml | 2 +- 11 files changed, 16 insertions(+), 17 deletions(-) diff --git a/bricks/test_optimizer/hooks/pubspec.yaml b/bricks/test_optimizer/hooks/pubspec.yaml index 5b2b9fd15..5c56fea00 100644 --- a/bricks/test_optimizer/hooks/pubspec.yaml +++ b/bricks/test_optimizer/hooks/pubspec.yaml @@ -13,4 +13,4 @@ dependencies: dev_dependencies: mocktail: ^1.0.0 test: ^1.25.0 - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0 diff --git a/e2e/helpers/command_helper.dart b/e2e/helpers/command_helper.dart index 106134e37..8016e603b 100644 --- a/e2e/helpers/command_helper.dart +++ b/e2e/helpers/command_helper.dart @@ -15,7 +15,7 @@ void Function() _overridePrint(void Function(List) fn) { return () { final printLogs = []; final spec = ZoneSpecification( - print: (_, _, _, String msg) { + print: (_, _, _, msg) { printLogs.add(msg); }, ); diff --git a/e2e/pubspec.yaml b/e2e/pubspec.yaml index fa9081e0a..4141e920a 100644 --- a/e2e/pubspec.yaml +++ b/e2e/pubspec.yaml @@ -13,6 +13,6 @@ dev_dependencies: pub_updater: ^0.5.0 test: ^1.25.0 universal_io: ^2.0.4 - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0 very_good_cli: path: ../ diff --git a/lib/src/cli/templates/test_optimizer_bundle.dart b/lib/src/cli/templates/test_optimizer_bundle.dart index 330ff0483..187cae0dc 100644 --- a/lib/src/cli/templates/test_optimizer_bundle.dart +++ b/lib/src/cli/templates/test_optimizer_bundle.dart @@ -35,7 +35,7 @@ final testOptimizerBundle = MasonBundle.fromJson({ { "path": "pubspec.yaml", "data": - "bmFtZTogaG9va3MKcHVibGlzaF90bzogbm9uZQoKZW52aXJvbm1lbnQ6CiAgc2RrOiBeMy4xMC4wCgpkZXBlbmRlbmNpZXM6CiAgbWFzb246IF4wLjEuMAogIHBhdGg6IF4xLjguMQoKIyBCZXdhcmU6IG9uIGhvb2tzLCBldmVuIGRldiBkZXBlbmRlbmNpZXMgaGF2ZSB0byBiZSBjb21wYXRpYmxlIHRvIGFsbCBkYXJ0IHZlcnNpb25zIGNvdmVyZWQgYnkKIyB0aGUgc2RrIGNvbnN0cmFpbnRzIGFib3ZlCmRldl9kZXBlbmRlbmNpZXM6CiAgbW9ja3RhaWw6IF4xLjAuMAogIHRlc3Q6IF4xLjI1LjAKICB2ZXJ5X2dvb2RfYW5hbHlzaXM6IF4xMC4wLjAK", + "bmFtZTogaG9va3MKcHVibGlzaF90bzogbm9uZQoKZW52aXJvbm1lbnQ6CiAgc2RrOiBeMy4xMC4wCgpkZXBlbmRlbmNpZXM6CiAgbWFzb246IF4wLjEuMAogIHBhdGg6IF4xLjguMQoKIyBCZXdhcmU6IG9uIGhvb2tzLCBldmVuIGRldiBkZXBlbmRlbmNpZXMgaGF2ZSB0byBiZSBjb21wYXRpYmxlIHRvIGFsbCBkYXJ0IHZlcnNpb25zIGNvdmVyZWQgYnkKIyB0aGUgc2RrIGNvbnN0cmFpbnRzIGFib3ZlCmRldl9kZXBlbmRlbmNpZXM6CiAgbW9ja3RhaWw6IF4xLjAuMAogIHRlc3Q6IF4xLjI1LjAKICB2ZXJ5X2dvb2RfYW5hbHlzaXM6IF4xMC4xLjAK", "type": "text", }, { diff --git a/pubspec.yaml b/pubspec.yaml index 7b00b4b58..019a317cd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -38,7 +38,7 @@ dev_dependencies: build_verify: ^3.1.0 mocktail: ^1.0.4 test: ^1.25.8 - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0 executables: very_good: diff --git a/test/helpers/command_helper.dart b/test/helpers/command_helper.dart index c18d02d69..82eb9305a 100644 --- a/test/helpers/command_helper.dart +++ b/test/helpers/command_helper.dart @@ -15,7 +15,7 @@ void Function() _overridePrint(void Function(List) fn) { return () { final printLogs = []; final spec = ZoneSpecification( - print: (_, _, _, String msg) { + print: (_, _, _, msg) { printLogs.add(msg); }, ); diff --git a/test/src/commands/dart/commands/dart_test_test.dart b/test/src/commands/dart/commands/dart_test_test.dart index 42361a7c9..dfb56f577 100644 --- a/test/src/commands/dart/commands/dart_test_test.dart +++ b/test/src/commands/dart/commands/dart_test_test.dart @@ -86,7 +86,7 @@ void main() { dartTest = _MockDartTestCommand(); testCommand = DartTestCommand( logger: logger, - dartInstalled: ({required Logger logger}) async => isFlutterInstalled, + dartInstalled: ({required logger}) async => isFlutterInstalled, dartTest: dartTest.call, )..argResultOverrides = argResults; when( diff --git a/test/src/commands/packages/commands/check/commands/licenses_test.dart b/test/src/commands/packages/commands/check/commands/licenses_test.dart index 11f0bdce5..144bf9a8b 100644 --- a/test/src/commands/packages/commands/check/commands/licenses_test.dart +++ b/test/src/commands/packages/commands/check/commands/licenses_test.dart @@ -1095,7 +1095,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage, cliCompletionConfigPackage, }); - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = name == veryGoodTestRunnerConfigPackage.name ? [mitLicenseMatch] @@ -1142,7 +1142,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage, cliCompletionConfigPackage, }); - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = name == veryGoodTestRunnerConfigPackage.name ? [mitLicenseMatch] @@ -1191,7 +1191,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage, cliCompletionConfigPackage, }); - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = name == veryGoodTestRunnerConfigPackage.name ? [mitLicenseMatch] @@ -1315,7 +1315,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage.name: [mitLicenseMatch], cliCompletionConfigPackage.name: [bsdLicenseMatch], }; - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = packageLicenseMatch[name]!; @@ -1364,7 +1364,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage.name: [mitLicenseMatch], cliCompletionConfigPackage.name: [bsdLicenseMatch], }; - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = packageLicenseMatch[name]!; @@ -1415,7 +1415,7 @@ and limitations under the License.'''); veryGoodTestRunnerConfigPackage.name: [mitLicenseMatch], cliCompletionConfigPackage.name: [bsdLicenseMatch], }; - detectLicenseOverride = (String name, _) async { + detectLicenseOverride = (name, _) async { final detectorResult = _MockResult(); final licenseMatch = packageLicenseMatch[name]!; diff --git a/test/src/commands/test/test_test.dart b/test/src/commands/test/test_test.dart index 0dd685cb1..1ab4fa2e2 100644 --- a/test/src/commands/test/test_test.dart +++ b/test/src/commands/test/test_test.dart @@ -87,8 +87,7 @@ void main() { flutterTest = _MockFlutterTestCommand(); testCommand = TestCommand( logger: logger, - flutterInstalled: ({required Logger logger}) async => - isFlutterInstalled, + flutterInstalled: ({required logger}) async => isFlutterInstalled, flutterTest: flutterTest.call, )..argResultOverrides = argResults; when( diff --git a/tool/spdx_license/hooks/pubspec.yaml b/tool/spdx_license/hooks/pubspec.yaml index a6c9b1884..9a49bce7b 100644 --- a/tool/spdx_license/hooks/pubspec.yaml +++ b/tool/spdx_license/hooks/pubspec.yaml @@ -18,4 +18,4 @@ dependencies: dev_dependencies: mocktail: ^1.0.3 test: ">=1.25.2 <1.27.0" - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0 diff --git a/tool/spdx_license/pubspec.yaml b/tool/spdx_license/pubspec.yaml index bcb130ba5..43469b60e 100644 --- a/tool/spdx_license/pubspec.yaml +++ b/tool/spdx_license/pubspec.yaml @@ -10,4 +10,4 @@ environment: dev_dependencies: test: ^1.25.2 - very_good_analysis: ^10.0.0 + very_good_analysis: ^10.1.0 From 4c89f928d34bc031e0eca347e01f679c2bcfafb0 Mon Sep 17 00:00:00 2001 From: Ricardo Dalarme Date: Fri, 6 Feb 2026 10:45:48 -0300 Subject: [PATCH 3/5] chore: update sdpx licenses --- tool/spdx_license/test/spdx_license.gen.dart | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tool/spdx_license/test/spdx_license.gen.dart b/tool/spdx_license/test/spdx_license.gen.dart index 17882dfef..541338f57 100644 --- a/tool/spdx_license/test/spdx_license.gen.dart +++ b/tool/spdx_license/test/spdx_license.gen.dart @@ -12,7 +12,7 @@ library spdx_license; /// {@template spdx_license} -/// A list of all 719 SPDX licenses. +/// A list of all 726 SPDX licenses. /// /// These have been automatically generated from the SPDX License brick. /// {@endtemplate} @@ -126,6 +126,7 @@ enum SpdxLicense { $C_UDA_1_0._('C-UDA-1.0'), $CAL_1_0._('CAL-1.0'), $CAL_1_0_Combined_Work_Exception._('CAL-1.0-Combined-Work-Exception'), + $CAPEC_tou._('CAPEC-tou'), $CATOSL_1_1._('CATOSL-1.1'), $CC_BY_1_0._('CC-BY-1.0'), $CC_BY_2_0._('CC-BY-2.0'), @@ -350,6 +351,7 @@ enum SpdxLicense { $HPND_sell_variant._('HPND-sell-variant'), $HPND_sell_variant_MIT_disclaimer._('HPND-sell-variant-MIT-disclaimer'), $HPND_sell_variant_MIT_disclaimer_rev._('HPND-sell-variant-MIT-disclaimer-rev'), + $HPND_sell_variant_critical_systems._('HPND-sell-variant-critical-systems'), $HTMLTIDY._('HTMLTIDY'), $HaskellReport._('HaskellReport'), $Hippocratic_2_1._('Hippocratic-2.1'), @@ -435,6 +437,7 @@ enum SpdxLicense { $MIT_testregex._('MIT-testregex'), $MITNFA._('MITNFA'), $MMIXware._('MMIXware'), + $MMPL_1_0_1._('MMPL-1.0.1'), $MPEG_SSG._('MPEG-SSG'), $MPL_1_0._('MPL-1.0'), $MPL_1_1._('MPL-1.1'), @@ -535,6 +538,7 @@ enum SpdxLicense { $OSL_2_1._('OSL-2.1'), $OSL_3_0._('OSL-3.0'), $OSSP._('OSSP'), + $OpenMDW_1_0._('OpenMDW-1.0'), $OpenPBS_2_3._('OpenPBS-2.3'), $OpenSSL._('OpenSSL'), $OpenSSL_standalone._('OpenSSL-standalone'), @@ -545,6 +549,7 @@ enum SpdxLicense { $PHP_3_01._('PHP-3.01'), $PPL._('PPL'), $PSF_2_0._('PSF-2.0'), + $ParaType_Free_Font_1_3._('ParaType-Free-Font-1.3'), $Parity_6_0_0._('Parity-6.0.0'), $Parity_7_0_0._('Parity-7.0.0'), $Pixar._('Pixar'), @@ -632,6 +637,7 @@ enum SpdxLicense { $UPL_1_0._('UPL-1.0'), $URT_RLE._('URT-RLE'), $Ubuntu_font_1_0._('Ubuntu-font-1.0'), + $UnRAR._('UnRAR'), $Unicode_3_0._('Unicode-3.0'), $Unicode_DFS_2015._('Unicode-DFS-2015'), $Unicode_DFS_2016._('Unicode-DFS-2016'), @@ -643,6 +649,7 @@ enum SpdxLicense { $VOSTROM._('VOSTROM'), $VSL_1_0._('VSL-1.0'), $Vim._('Vim'), + $Vixie_Cron._('Vixie-Cron'), $W3C._('W3C'), $W3C_19980720._('W3C-19980720'), $W3C_20150513._('W3C-20150513'), From aa5ca75923f76f589332d2dc1b1b97a825af9517 Mon Sep 17 00:00:00 2001 From: Marcos Sevilla Date: Mon, 9 Feb 2026 12:05:49 +0100 Subject: [PATCH 4/5] chore(e2e): update expected output for coverage --- e2e/test/commands/create/dart_cli/dart_cli_test.dart | 2 +- e2e/test/commands/create/dart_package/dart_pkg_test.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/test/commands/create/dart_cli/dart_cli_test.dart b/e2e/test/commands/create/dart_cli/dart_cli_test.dart index cd02e167a..25f860258 100644 --- a/e2e/test/commands/create/dart_cli/dart_cli_test.dart +++ b/e2e/test/commands/create/dart_cli/dart_cli_test.dart @@ -46,7 +46,7 @@ void main() { '--coverage=coverage', '--reporter=compact', ], workingDirectory: workingDirectory); - expect(testResult.stdout, contains('All tests passed!')); + expect(testResult.stdout, contains('All other tests passed!')); // collect coverage await expectSuccessfulProcessResult('dart', [ diff --git a/e2e/test/commands/create/dart_package/dart_pkg_test.dart b/e2e/test/commands/create/dart_package/dart_pkg_test.dart index b40e93059..119fa0a3b 100644 --- a/e2e/test/commands/create/dart_package/dart_pkg_test.dart +++ b/e2e/test/commands/create/dart_package/dart_pkg_test.dart @@ -46,7 +46,7 @@ void main() { '--coverage=coverage', '--reporter=compact', ], workingDirectory: workingDirectory); - expect(testResult.stdout, contains('All tests passed!')); + expect(testResult.stdout, contains('All other tests passed!')); // collect coverage await expectSuccessfulProcessResult('dart', [ From 08c55753c4c9815cac267a8f72cf32178da0f29f Mon Sep 17 00:00:00 2001 From: Marcos Sevilla Date: Mon, 9 Feb 2026 12:37:14 +0100 Subject: [PATCH 5/5] revert changes to dart_pkg e2e --- e2e/test/commands/create/dart_package/dart_pkg_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/test/commands/create/dart_package/dart_pkg_test.dart b/e2e/test/commands/create/dart_package/dart_pkg_test.dart index 119fa0a3b..b40e93059 100644 --- a/e2e/test/commands/create/dart_package/dart_pkg_test.dart +++ b/e2e/test/commands/create/dart_package/dart_pkg_test.dart @@ -46,7 +46,7 @@ void main() { '--coverage=coverage', '--reporter=compact', ], workingDirectory: workingDirectory); - expect(testResult.stdout, contains('All other tests passed!')); + expect(testResult.stdout, contains('All tests passed!')); // collect coverage await expectSuccessfulProcessResult('dart', [