Skip to content

Prepare 3.0.7+1 hotfix release for Webdev #2220

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

Merged
merged 3 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fixtures/_webdevSmoke/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ publish_to: none
# and build_web_compilers constraint should match those defined
# in pubspec.dart.
environment:
sdk: ">=3.1.0-340.0.dev <4.0.0"
sdk: ">=3.0.0-188.0.dev <4.0.0"

dev_dependencies:
build_runner: '>=1.6.2 <3.0.0'
Expand Down
2 changes: 1 addition & 1 deletion fixtures/_webdevSoundSmoke/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A test fixture for webdev testing with sound support.
publish_to: none

environment:
sdk: ">=3.1.0-340.0.dev <4.0.0"
sdk: ">=3.0.0-188.0.dev <4.0.0"

dev_dependencies:
build_runner: ^2.4.0
Expand Down
4 changes: 4 additions & 0 deletions webdev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.7+1

- 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).

## 3.0.7

- Update `build_web_compilers` constraint to `^4.0.4`.
Expand Down
1 change: 0 additions & 1 deletion webdev/lib/src/serve/webdev_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ class WebDevServer {
verbose: options.configuration.verbose,
experiments: options.configuration.experiments,
sdkConfigurationProvider: const DefaultSdkConfigurationProvider(),
canaryFeatures: options.configuration.canaryFeatures,
);
}
var shouldServeDevTools =
Expand Down
2 changes: 1 addition & 1 deletion webdev/lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

dependencies:
args: ^2.3.1
Expand All @@ -19,7 +19,7 @@ dependencies:
crypto: ^3.0.2
dds: ^2.2.0
# Pin DWDS to avoid dependency conflicts with vm_service:
dwds: 20.0.1
dwds: 19.0.2+1
http: ^0.13.4
http_multi_server: ^3.2.0
io: ^1.0.3
Expand Down