Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

is:wasm-ready tag #1336

Merged
merged 13 commits into from
Feb 9, 2024
8 changes: 4 additions & 4 deletions lib/src/report/multi_platform.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Future<ReportSection> multiPlatform(String packageDir, Pubspec pubspec) async {

Subsection scorePlatforms(
List<String> tags, List<Explanation> explanations) {
// Scoring and the report only takes these platforms into account.
final tagNames = const {
PanaTags.platformIos: 'iOS',
PanaTags.platformAndroid: 'Android',
Expand All @@ -45,12 +46,13 @@ Future<ReportSection> multiPlatform(String packageDir, Pubspec pubspec) async {
PanaTags.platformMacos: 'macOS',
PanaTags.platformLinux: 'Linux',
};
final officialTags = tags.where(tagNames.containsKey).toList();
final sdkExplanations =
explanations.where((e) => e.tag != null && e.tag!.startsWith('sdk:'));
final platformExplanations = explanations
.where((e) => e.tag == null || !e.tag!.startsWith('sdk:'));
final officialExplanations = platformExplanations.where((e) =>
!tags.contains(e.tag) &&
!officialTags.contains(e.tag) &&
(e.tag == null || tagNames.containsKey(e.tag)));
final trustExplanations = explanations.where((e) => tags.contains(e.tag));
final paragraphs = <Paragraph>[
Expand All @@ -59,7 +61,7 @@ Future<ReportSection> multiPlatform(String packageDir, Pubspec pubspec) async {
if (sdkExplanations.isNotEmpty)
// This empty line is required for `package:markdown` to render the following list correctly.
RawParagraph(''),
for (final tag in tags.where((e) => e.startsWith('platform')))
for (final tag in officialTags.where((e) => e.startsWith('platform')))
RawParagraph('* ✓ ${tagNames[tag]}'),
if (officialExplanations.isNotEmpty)
RawParagraph('\nThese platforms are not supported:\n'),
Expand All @@ -70,8 +72,6 @@ Future<ReportSection> multiPlatform(String packageDir, Pubspec pubspec) async {
...trustExplanations.map(explanationToIssue),
];

final officialTags = tags.where(tagNames.containsKey).toList();

final status =
officialTags.where((tag) => tag.startsWith('platform:')).isEmpty
? ReportStatus.failed
Expand Down
13 changes: 13 additions & 0 deletions lib/src/tag/_specs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class Runtime {
nativeAot,
nativeJit,
web,
wasm,
];

static final nativeAot = Runtime(
Expand All @@ -89,6 +90,12 @@ class Runtime {
tag: PanaTags.runtimeWeb,
);

static final wasm = Runtime(
'wasm',
{..._onAllPlatforms, 'ui', 'ui_web', 'js_interop', 'js_interop_unsafe'},
sigurdm marked this conversation as resolved.
Show resolved Hide resolved
tag: PanaTags.isWasmReady,
);

static final flutterNative = Runtime(
'flutter-native',
{
Expand Down Expand Up @@ -216,6 +223,12 @@ class Platform {
flutterRuntime: Runtime.flutterWeb,
tag: PanaTags.platformWeb,
);
static final wasm = Platform(
'Wasm',
dartRuntime: Runtime.wasm,
flutterRuntime: Runtime.wasm,
tag: PanaTags.platformWasm,
);
sigurdm marked this conversation as resolved.
Show resolved Hide resolved
static final windows = Platform(
'Windows',
dartRuntime: Runtime.nativeJit,
Expand Down
2 changes: 2 additions & 0 deletions lib/src/tag/pana_tags.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ abstract class PanaTags {
static const runtimeFlutterNative = 'runtime:flutter-native';
static const runtimeFlutterWeb = 'runtime:flutter-web';
static const runtimeWeb = 'runtime:web';
static const isWasmReady = 'is:wasm-ready';

// platform tags
static const platformAndroid = 'platform:android';
static const platformIos = 'platform:ios';
static const platformLinux = 'platform:linux';
static const platformMacos = 'platform:macos';
static const platformWeb = 'platform:web';
static const platformWasm = 'platform:wasm';
sigurdm marked this conversation as resolved.
Show resolved Hide resolved
static const platformWindows = 'platform:windows';

// license tags
Expand Down
1 change: 1 addition & 0 deletions test/goldens/end2end/async-2.11.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"runtime:native-aot",
"runtime:native-jit",
"runtime:web",
"is:wasm-ready",
"is:null-safe",
"is:dart3-compatible",
"license:bsd-3-clause",
Expand Down
3 changes: 1 addition & 2 deletions test/goldens/end2end/audio_service-0.18.10.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@
"typed_data",
"uuid",
"vector_math",
"web",
"win32",
"xdg_directories"
],
Expand Down Expand Up @@ -170,7 +169,7 @@
"grantedPoints": 20,
"maxPoints": 20,
"status": "passed",
"summary": "### [*] 10/10 points: All of the package dependencies are supported in the latest version\n\n|Package|Constraint|Compatible|Latest|\n|:-|:-|:-|:-|\n|[`audio_service_platform_interface`]|`^0.1.0`|0.1.1|0.1.1|\n|[`audio_service_web`]|`^0.1.1`|0.1.1|0.1.1|\n|[`audio_session`]|`^0.1.6+1`|0.1.16|0.1.16|\n|[`clock`]|`^1.1.0`|1.1.1|1.1.1|\n|[`flutter`]|`flutter`|0.0.0|0.0.0|\n|[`flutter_cache_manager`]|`^3.0.1`|3.3.1|3.3.1|\n|[`flutter_web_plugins`]|`flutter`|0.0.0|0.0.0|\n|[`js`]|`^0.6.3`|0.6.7|0.6.7|\n|[`rxdart`]|`>=0.26.0 <0.28.0`|0.27.7|0.27.7|\n\n<details><summary>Transitive dependencies</summary>\n\n|Package|Constraint|Compatible|Latest|\n|:-|:-|:-|:-|\n|[`async`]|-|2.11.0|2.11.0|\n|[`characters`]|-|1.3.0|1.3.0|\n|[`collection`]|-|1.18.0|1.18.0|\n|[`crypto`]|-|3.0.3|3.0.3|\n|[`ffi`]|-|2.1.0|2.1.0|\n|[`file`]|-|7.0.0|7.0.0|\n|[`http`]|-|1.1.0|1.1.0|\n|[`http_parser`]|-|4.0.2|4.0.2|\n|[`material_color_utilities`]|-|0.5.0|0.8.0|\n|[`meta`]|-|1.10.0|1.11.0|\n|[`path`]|-|1.8.3|1.8.3|\n|[`path_provider`]|-|2.1.1|2.1.1|\n|[`path_provider_android`]|-|2.2.1|2.2.1|\n|[`path_provider_foundation`]|-|2.3.1|2.3.1|\n|[`path_provider_linux`]|-|2.2.1|2.2.1|\n|[`path_provider_platform_interface`]|-|2.1.1|2.1.1|\n|[`path_provider_windows`]|-|2.2.1|2.2.1|\n|[`platform`]|-|3.1.3|3.1.3|\n|[`plugin_platform_interface`]|-|2.1.6|2.1.6|\n|[`sky_engine`]|-|0.0.99|0.0.99|\n|[`source_span`]|-|1.10.0|1.10.0|\n|[`sprintf`]|-|7.0.0|7.0.0|\n|[`sqflite`]|-|2.3.0|2.3.0|\n|[`sqflite_common`]|-|2.5.0|2.5.0|\n|[`string_scanner`]|-|1.2.0|1.2.0|\n|[`synchronized`]|-|3.1.0|3.1.0|\n|[`term_glyph`]|-|1.2.1|1.2.1|\n|[`typed_data`]|-|1.3.2|1.3.2|\n|[`uuid`]|-|4.1.0|4.1.0|\n|[`vector_math`]|-|2.1.4|2.1.4|\n|[`web`]|-|0.3.0|0.3.0|\n|[`win32`]|-|5.0.9|5.0.9|\n|[`xdg_directories`]|-|1.0.3|1.0.3|\n</details>\n\nTo reproduce run `dart pub outdated --no-dev-dependencies --up-to-date --no-dependency-overrides`.\n\n[`audio_service_platform_interface`]: https://pub.dev/packages/audio_service_platform_interface\n[`audio_service_web`]: https://pub.dev/packages/audio_service_web\n[`audio_session`]: https://pub.dev/packages/audio_session\n[`clock`]: https://pub.dev/packages/clock\n[`flutter`]: https://pub.dev/packages/flutter\n[`flutter_cache_manager`]: https://pub.dev/packages/flutter_cache_manager\n[`flutter_web_plugins`]: https://pub.dev/packages/flutter_web_plugins\n[`js`]: https://pub.dev/packages/js\n[`rxdart`]: https://pub.dev/packages/rxdart\n[`async`]: https://pub.dev/packages/async\n[`characters`]: https://pub.dev/packages/characters\n[`collection`]: https://pub.dev/packages/collection\n[`crypto`]: https://pub.dev/packages/crypto\n[`ffi`]: https://pub.dev/packages/ffi\n[`file`]: https://pub.dev/packages/file\n[`http`]: https://pub.dev/packages/http\n[`http_parser`]: https://pub.dev/packages/http_parser\n[`material_color_utilities`]: https://pub.dev/packages/material_color_utilities\n[`meta`]: https://pub.dev/packages/meta\n[`path`]: https://pub.dev/packages/path\n[`path_provider`]: https://pub.dev/packages/path_provider\n[`path_provider_android`]: https://pub.dev/packages/path_provider_android\n[`path_provider_foundation`]: https://pub.dev/packages/path_provider_foundation\n[`path_provider_linux`]: https://pub.dev/packages/path_provider_linux\n[`path_provider_platform_interface`]: https://pub.dev/packages/path_provider_platform_interface\n[`path_provider_windows`]: https://pub.dev/packages/path_provider_windows\n[`platform`]: https://pub.dev/packages/platform\n[`plugin_platform_interface`]: https://pub.dev/packages/plugin_platform_interface\n[`sky_engine`]: https://pub.dev/packages/sky_engine\n[`source_span`]: https://pub.dev/packages/source_span\n[`sprintf`]: https://pub.dev/packages/sprintf\n[`sqflite`]: https://pub.dev/packages/sqflite\n[`sqflite_common`]: https://pub.dev/packages/sqflite_common\n[`string_scanner`]: https://pub.dev/packages/string_scanner\n[`synchronized`]: https://pub.dev/packages/synchronized\n[`term_glyph`]: https://pub.dev/packages/term_glyph\n[`typed_data`]: https://pub.dev/packages/typed_data\n[`uuid`]: https://pub.dev/packages/uuid\n[`vector_math`]: https://pub.dev/packages/vector_math\n[`web`]: https://pub.dev/packages/web\n[`win32`]: https://pub.dev/packages/win32\n[`xdg_directories`]: https://pub.dev/packages/xdg_directories\n\n\n### [*] 10/10 points: Package supports latest stable Dart and Flutter SDKs\n"
"summary": "### [*] 10/10 points: All of the package dependencies are supported in the latest version\n\n|Package|Constraint|Compatible|Latest|\n|:-|:-|:-|:-|\n|[`audio_service_platform_interface`]|`^0.1.0`|0.1.1|0.1.1|\n|[`audio_service_web`]|`^0.1.1`|0.1.1|0.1.1|\n|[`audio_session`]|`^0.1.6+1`|0.1.16|0.1.16|\n|[`clock`]|`^1.1.0`|1.1.1|1.1.1|\n|[`flutter`]|`flutter`|0.0.0|0.0.0|\n|[`flutter_cache_manager`]|`^3.0.1`|3.3.1|3.3.1|\n|[`flutter_web_plugins`]|`flutter`|0.0.0|0.0.0|\n|[`js`]|`^0.6.3`|0.6.7|0.6.7|\n|[`rxdart`]|`>=0.26.0 <0.28.0`|0.27.7|0.27.7|\n\n<details><summary>Transitive dependencies</summary>\n\n|Package|Constraint|Compatible|Latest|\n|:-|:-|:-|:-|\n|[`async`]|-|2.11.0|2.11.0|\n|[`characters`]|-|1.3.0|1.3.0|\n|[`collection`]|-|1.18.0|1.18.0|\n|[`crypto`]|-|3.0.3|3.0.3|\n|[`ffi`]|-|2.1.0|2.1.0|\n|[`file`]|-|7.0.0|7.0.0|\n|[`http`]|-|1.1.0|1.1.0|\n|[`http_parser`]|-|4.0.2|4.0.2|\n|[`material_color_utilities`]|-|0.8.0|0.8.0|\n|[`meta`]|-|1.11.0|1.11.0|\n|[`path`]|-|1.8.3|1.8.3|\n|[`path_provider`]|-|2.1.1|2.1.1|\n|[`path_provider_android`]|-|2.2.1|2.2.1|\n|[`path_provider_foundation`]|-|2.3.1|2.3.1|\n|[`path_provider_linux`]|-|2.2.1|2.2.1|\n|[`path_provider_platform_interface`]|-|2.1.1|2.1.1|\n|[`path_provider_windows`]|-|2.2.1|2.2.1|\n|[`platform`]|-|3.1.3|3.1.3|\n|[`plugin_platform_interface`]|-|2.1.6|2.1.6|\n|[`sky_engine`]|-|0.0.99|0.0.99|\n|[`source_span`]|-|1.10.0|1.10.0|\n|[`sprintf`]|-|7.0.0|7.0.0|\n|[`sqflite`]|-|2.3.0|2.3.0|\n|[`sqflite_common`]|-|2.5.0|2.5.0|\n|[`string_scanner`]|-|1.2.0|1.2.0|\n|[`synchronized`]|-|3.1.0|3.1.0|\n|[`term_glyph`]|-|1.2.1|1.2.1|\n|[`typed_data`]|-|1.3.2|1.3.2|\n|[`uuid`]|-|4.1.0|4.1.0|\n|[`vector_math`]|-|2.1.4|2.1.4|\n|[`win32`]|-|5.0.9|5.0.9|\n|[`xdg_directories`]|-|1.0.3|1.0.3|\n</details>\n\nTo reproduce run `dart pub outdated --no-dev-dependencies --up-to-date --no-dependency-overrides`.\n\n[`audio_service_platform_interface`]: https://pub.dev/packages/audio_service_platform_interface\n[`audio_service_web`]: https://pub.dev/packages/audio_service_web\n[`audio_session`]: https://pub.dev/packages/audio_session\n[`clock`]: https://pub.dev/packages/clock\n[`flutter`]: https://pub.dev/packages/flutter\n[`flutter_cache_manager`]: https://pub.dev/packages/flutter_cache_manager\n[`flutter_web_plugins`]: https://pub.dev/packages/flutter_web_plugins\n[`js`]: https://pub.dev/packages/js\n[`rxdart`]: https://pub.dev/packages/rxdart\n[`async`]: https://pub.dev/packages/async\n[`characters`]: https://pub.dev/packages/characters\n[`collection`]: https://pub.dev/packages/collection\n[`crypto`]: https://pub.dev/packages/crypto\n[`ffi`]: https://pub.dev/packages/ffi\n[`file`]: https://pub.dev/packages/file\n[`http`]: https://pub.dev/packages/http\n[`http_parser`]: https://pub.dev/packages/http_parser\n[`material_color_utilities`]: https://pub.dev/packages/material_color_utilities\n[`meta`]: https://pub.dev/packages/meta\n[`path`]: https://pub.dev/packages/path\n[`path_provider`]: https://pub.dev/packages/path_provider\n[`path_provider_android`]: https://pub.dev/packages/path_provider_android\n[`path_provider_foundation`]: https://pub.dev/packages/path_provider_foundation\n[`path_provider_linux`]: https://pub.dev/packages/path_provider_linux\n[`path_provider_platform_interface`]: https://pub.dev/packages/path_provider_platform_interface\n[`path_provider_windows`]: https://pub.dev/packages/path_provider_windows\n[`platform`]: https://pub.dev/packages/platform\n[`plugin_platform_interface`]: https://pub.dev/packages/plugin_platform_interface\n[`sky_engine`]: https://pub.dev/packages/sky_engine\n[`source_span`]: https://pub.dev/packages/source_span\n[`sprintf`]: https://pub.dev/packages/sprintf\n[`sqflite`]: https://pub.dev/packages/sqflite\n[`sqflite_common`]: https://pub.dev/packages/sqflite_common\n[`string_scanner`]: https://pub.dev/packages/string_scanner\n[`synchronized`]: https://pub.dev/packages/synchronized\n[`term_glyph`]: https://pub.dev/packages/term_glyph\n[`typed_data`]: https://pub.dev/packages/typed_data\n[`uuid`]: https://pub.dev/packages/uuid\n[`vector_math`]: https://pub.dev/packages/vector_math\n[`win32`]: https://pub.dev/packages/win32\n[`xdg_directories`]: https://pub.dev/packages/xdg_directories\n\n\n### [*] 10/10 points: Package supports latest stable Dart and Flutter SDKs\n"
}
]
},
Expand Down
6 changes: 2 additions & 4 deletions test/goldens/end2end/audio_service-0.18.10.json_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ Because:
|[`file`]|-|7.0.0|7.0.0|
|[`http`]|-|1.1.0|1.1.0|
|[`http_parser`]|-|4.0.2|4.0.2|
|[`material_color_utilities`]|-|0.5.0|0.8.0|
|[`meta`]|-|1.10.0|1.11.0|
|[`material_color_utilities`]|-|0.8.0|0.8.0|
|[`meta`]|-|1.11.0|1.11.0|
|[`path`]|-|1.8.3|1.8.3|
|[`path_provider`]|-|2.1.1|2.1.1|
|[`path_provider_android`]|-|2.2.1|2.2.1|
Expand All @@ -116,7 +116,6 @@ Because:
|[`typed_data`]|-|1.3.2|1.3.2|
|[`uuid`]|-|4.1.0|4.1.0|
|[`vector_math`]|-|2.1.4|2.1.4|
|[`web`]|-|0.3.0|0.3.0|
|[`win32`]|-|5.0.9|5.0.9|
|[`xdg_directories`]|-|1.0.3|1.0.3|
</details>
Expand Down Expand Up @@ -162,7 +161,6 @@ To reproduce run `dart pub outdated --no-dev-dependencies --up-to-date --no-depe
[`typed_data`]: https://pub.dev/packages/typed_data
[`uuid`]: https://pub.dev/packages/uuid
[`vector_math`]: https://pub.dev/packages/vector_math
[`web`]: https://pub.dev/packages/web
[`win32`]: https://pub.dev/packages/win32
[`xdg_directories`]: https://pub.dev/packages/xdg_directories

Expand Down
1 change: 1 addition & 0 deletions test/goldens/end2end/http-0.13.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"runtime:native-aot",
"runtime:native-jit",
"runtime:web",
"is:wasm-ready",
"is:null-safe",
"is:dart3-compatible",
"license:bsd-3-clause",
Expand Down
1 change: 1 addition & 0 deletions test/goldens/end2end/lints-1.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"runtime:native-aot",
"runtime:native-jit",
"runtime:web",
"is:wasm-ready",
"is:null-safe",
"is:dart3-compatible",
"license:bsd-3-clause",
Expand Down
5 changes: 2 additions & 3 deletions test/goldens/end2end/nsd_android-1.2.2.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@
"material_color_utilities",
"meta",
"sky_engine",
"vector_math",
"web"
"vector_math"
],
"tags": [
"sdk:flutter",
Expand Down Expand Up @@ -103,7 +102,7 @@
"grantedPoints": 20,
"maxPoints": 20,
"status": "passed",
"summary": "### [*] 10/10 points: All of the package dependencies are supported in the latest version\n\n|Package|Constraint|Compatible|Latest|\n|:-|:-|:-|:-|\n|[`flutter`]|`flutter`|0.0.0|0.0.0|\n\n<details><summary>Transitive dependencies</summary>\n\n|Package|Constraint|Compatible|Latest|\n|:-|:-|:-|:-|\n|[`characters`]|-|1.3.0|1.3.0|\n|[`collection`]|-|1.18.0|1.18.0|\n|[`material_color_utilities`]|-|0.5.0|0.8.0|\n|[`meta`]|-|1.10.0|1.11.0|\n|[`sky_engine`]|-|0.0.99|0.0.99|\n|[`vector_math`]|-|2.1.4|2.1.4|\n|[`web`]|-|0.3.0|0.3.0|\n</details>\n\nTo reproduce run `dart pub outdated --no-dev-dependencies --up-to-date --no-dependency-overrides`.\n\n[`flutter`]: https://pub.dev/packages/flutter\n[`characters`]: https://pub.dev/packages/characters\n[`collection`]: https://pub.dev/packages/collection\n[`material_color_utilities`]: https://pub.dev/packages/material_color_utilities\n[`meta`]: https://pub.dev/packages/meta\n[`sky_engine`]: https://pub.dev/packages/sky_engine\n[`vector_math`]: https://pub.dev/packages/vector_math\n[`web`]: https://pub.dev/packages/web\n\n\n### [*] 10/10 points: Package supports latest stable Dart and Flutter SDKs\n"
"summary": "### [*] 10/10 points: All of the package dependencies are supported in the latest version\n\n|Package|Constraint|Compatible|Latest|\n|:-|:-|:-|:-|\n|[`flutter`]|`flutter`|0.0.0|0.0.0|\n\n<details><summary>Transitive dependencies</summary>\n\n|Package|Constraint|Compatible|Latest|\n|:-|:-|:-|:-|\n|[`characters`]|-|1.3.0|1.3.0|\n|[`collection`]|-|1.18.0|1.18.0|\n|[`material_color_utilities`]|-|0.8.0|0.8.0|\n|[`meta`]|-|1.11.0|1.11.0|\n|[`sky_engine`]|-|0.0.99|0.0.99|\n|[`vector_math`]|-|2.1.4|2.1.4|\n</details>\n\nTo reproduce run `dart pub outdated --no-dev-dependencies --up-to-date --no-dependency-overrides`.\n\n[`flutter`]: https://pub.dev/packages/flutter\n[`characters`]: https://pub.dev/packages/characters\n[`collection`]: https://pub.dev/packages/collection\n[`material_color_utilities`]: https://pub.dev/packages/material_color_utilities\n[`meta`]: https://pub.dev/packages/meta\n[`sky_engine`]: https://pub.dev/packages/sky_engine\n[`vector_math`]: https://pub.dev/packages/vector_math\n\n\n### [*] 10/10 points: Package supports latest stable Dart and Flutter SDKs\n"
}
]
},
Expand Down
6 changes: 2 additions & 4 deletions test/goldens/end2end/nsd_android-1.2.2.json_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,10 @@ Because:
|:-|:-|:-|:-|
|[`characters`]|-|1.3.0|1.3.0|
|[`collection`]|-|1.18.0|1.18.0|
|[`material_color_utilities`]|-|0.5.0|0.8.0|
|[`meta`]|-|1.10.0|1.11.0|
|[`material_color_utilities`]|-|0.8.0|0.8.0|
|[`meta`]|-|1.11.0|1.11.0|
|[`sky_engine`]|-|0.0.99|0.0.99|
|[`vector_math`]|-|2.1.4|2.1.4|
|[`web`]|-|0.3.0|0.3.0|
</details>

To reproduce run `dart pub outdated --no-dev-dependencies --up-to-date --no-dependency-overrides`.
Expand All @@ -109,7 +108,6 @@ To reproduce run `dart pub outdated --no-dev-dependencies --up-to-date --no-depe
[`meta`]: https://pub.dev/packages/meta
[`sky_engine`]: https://pub.dev/packages/sky_engine
[`vector_math`]: https://pub.dev/packages/vector_math
[`web`]: https://pub.dev/packages/web


### [*] 10/10 points: Package supports latest stable Dart and Flutter SDKs
4 changes: 2 additions & 2 deletions test/goldens/end2end/skiplist-0.1.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"grantedPoints": 0,
"maxPoints": 50,
"status": "failed",
"summary": "### [x] 0/50 points: code has no errors, warnings, lints, or formatting issues\n\n* Running `dart pub outdated` failed with the following output:\n\n```\nThe lower bound of \"sdk: '>=1.0.0 <=3.2.0'\" must be 2.12.0'\nor higher to enable null safety.\n```\n"
"summary": "### [x] 0/50 points: code has no errors, warnings, lints, or formatting issues\n\n* Running `dart pub outdated` failed with the following output:\n\n```\nThe lower bound of \"sdk: '>=1.0.0 <=3.2.5'\" must be 2.12.0'\nor higher to enable null safety.\n```\n"
},
{
"id": "dependency",
Expand All @@ -98,5 +98,5 @@
"maxPoints": 130
},
"urlProblems": [],
"errorMessage": "Running `dart pub outdated` failed with the following output:\n\n```\nThe lower bound of \"sdk: '>=1.0.0 <=3.2.0'\" must be 2.12.0'\nor higher to enable null safety.\n```"
"errorMessage": "Running `dart pub outdated` failed with the following output:\n\n```\nThe lower bound of \"sdk: '>=1.0.0 <=3.2.5'\" must be 2.12.0'\nor higher to enable null safety.\n```"
}
2 changes: 1 addition & 1 deletion test/goldens/end2end/skiplist-0.1.0.json_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Run `dart pub get` for more information.
* Running `dart pub outdated` failed with the following output:

```
The lower bound of "sdk: '>=1.0.0 <=3.2.0'" must be 2.12.0'
The lower bound of "sdk: '>=1.0.0 <=3.2.5'" must be 2.12.0'
or higher to enable null safety.
```

Expand Down