Skip to content

Commit b21e307

Browse files
authored
Prepare 3.0.7+1 hotfix release for Webdev (#2220)
1 parent 1aa7c52 commit b21e307

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

fixtures/_webdevSmoke/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ publish_to: none
1414
# and build_web_compilers constraint should match those defined
1515
# in pubspec.dart.
1616
environment:
17-
sdk: ">=3.1.0-340.0.dev <4.0.0"
17+
sdk: ">=3.0.0-188.0.dev <4.0.0"
1818

1919
dev_dependencies:
2020
build_runner: '>=1.6.2 <3.0.0'

fixtures/_webdevSoundSmoke/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A test fixture for webdev testing with sound support.
44
publish_to: none
55

66
environment:
7-
sdk: ">=3.1.0-340.0.dev <4.0.0"
7+
sdk: ">=3.0.0-188.0.dev <4.0.0"
88

99
dev_dependencies:
1010
build_runner: ^2.4.0

webdev/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.7+1
2+
3+
- Downgrade `dwds` constraint to `19.0.2+1` to fix a versioning conflict with the Dart SDK. - [#53459](https://github.com/dart-lang/sdk/issues/53459).
4+
15
## 3.0.7
26

37
- Update `build_web_compilers` constraint to `^4.0.4`.

webdev/lib/src/serve/webdev_server.dart

-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ class WebDevServer {
139139
verbose: options.configuration.verbose,
140140
experiments: options.configuration.experiments,
141141
sdkConfigurationProvider: const DefaultSdkConfigurationProvider(),
142-
canaryFeatures: options.configuration.canaryFeatures,
143142
);
144143
}
145144
var shouldServeDevTools =

webdev/lib/src/version.dart

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webdev/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: webdev
22
# Every time this changes you need to run `dart run build_runner build`.
3-
version: 3.0.7
3+
version: 3.0.7+1
44
# We should not depend on a dev SDK before publishing.
55
# publish_to: none
66
description: >-
77
A CLI for Dart web development. Provides an easy and consistent set of
88
features for users and tools to build and deploy web applications with Dart.
99
repository: https://github.com/dart-lang/webdev/tree/master/webdev
1010
environment:
11-
sdk: ">=3.1.0-340.0.dev <4.0.0"
11+
sdk: ">=3.0.0-188.0.dev <4.0.0"
1212

1313
dependencies:
1414
args: ^2.3.1
@@ -19,7 +19,7 @@ dependencies:
1919
crypto: ^3.0.2
2020
dds: ^2.2.0
2121
# Pin DWDS to avoid dependency conflicts with vm_service:
22-
dwds: 20.0.1
22+
dwds: 19.0.2+1
2323
http: ^0.13.4
2424
http_multi_server: ^3.2.0
2525
io: ^1.0.3

0 commit comments

Comments
 (0)