Skip to content

Commit d549934

Browse files
committed
Merge branch 'main' into fix/master-to-main
2 parents c1df5a5 + e3863bb commit d549934

28 files changed

+6846
-1333
lines changed

.github/workflows/daily_stable_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Set up stable Dart SDK
21-
uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
21+
uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
2222
with:
2323
sdk: stable
2424
- name: Activate Webdev

.github/workflows/daily_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Setup Dart SDK
15-
uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
15+
uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
1616
with:
1717
sdk: main
1818
- id: checkout

.github/workflows/dart.yml

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/dcm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
sudo apt-get install dcm=1.16.2-1 # To avoid errors add `-1` (build number) to the version
2323
sudo chmod +x /usr/bin/dcm
2424
- name: Setup Dart SDK
25-
uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
25+
uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
2626
with:
2727
sdk: dev
2828
- id: checkout

.github/workflows/release_reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Setup Dart SDK
16-
uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
16+
uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
1717
with:
1818
sdk: dev
1919
- id: checkout

dwds/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
- Replace deprecated JS code `this.__proto__` with `Object.getPrototypeOf(this)`. - [#2500](https://github.com/dart-lang/webdev/pull/2500)
66
- Migrate injected client code to `package:web`. - [#2491](https://github.com/dart-lang/webdev/pull/2491)
77
- Deprecated MetadataProvider's, CompilerOptions', SdkConfiguration's & SdkLayout's soundNullSafety. - [#2427](https://github.com/dart-lang/webdev/issues/2427)
8+
- Add load strategy and an unimplemented hot restart strategy for DDC library
9+
bundle format.
10+
- Added `useModuleName` option to `MetadataProvider` to determine whether or not
11+
to use the provided `name` in a `ModuleMetadata`. Metadata provided by DDC
12+
when using the library bundle format does not provide a useful bundle name.
13+
- Migrate to `package:web` v1.1.0.
814

915
## 24.1.0
1016

dwds/lib/src/debugging/metadata/module_metadata.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ class ModuleMetadata {
101101
///
102102
/// Used as a name of the js module created by the compiler and
103103
/// as key to store and load modules in the debugger and the browser
104+
// TODO(srujzs): Remove once https://github.com/dart-lang/sdk/issues/59618 is
105+
// resolved.
104106
final String name;
105107

106108
/// Name of the function enclosing the module

0 commit comments

Comments
 (0)