Skip to content
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
49 changes: 23 additions & 26 deletions webdev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,29 @@
## 2.0.0-dev
## 2.0.0

- The daemon command now logs build events through `daemon.log`.
## Breaking Changes

## 2.0.0-alpha.4

- Fix an NPE is the reload logic.
- Shutdown the daemon process when the corresponding application is closed.

## 2.0.0-alpha.3

- Lots of small daemon mode bug fixes.
- Allow build_web_compilers 2.x.

## 2.0.0-alpha.2

- Open up devtools with the full uri instead of just the port. This is required
for the latest proxy because it contains a unique token in the uri for each
instance of the service.

## 2.0.0-alpha.1

- Hot restart will now invoke the `ext.flutter.disassemble` service extension if
it exists, and wait for that result to complete before reloading modules.

## 2.0.0-alpha.0

- Support building with `package:build_daemon` through `serve` command.
- The `serve` command will now only serve `web` by default.
- Deprecated the `--hot-reload` and `--live-reload` flags, in favor of the new
`--auto=<action>` option which performs an action whenever a build completes.
- The current supported actions are `restart` and `refresh`, which correspond
to the old `--hot-reload` and `--live-reload` flags.
- Support building with `package:build_daemon`. This allows shared builds as
long as the build arguments are compatible.
- This should not affect most users but might break some workflows.
- Prompts are not supported, so you may have to pass the
`-- --delete-conflicting-outputs` argument if you used to hit `y` at the
prompt.

### Features

- Added the `--debug` flag.
- Runs a proxy dart vm service with limited functionality, which talks to the
running in chrome.
- Enables [devtools](https://github.com/flutter/devtools) for web apps.
- For regular web apps currently this doesn't actually do anything yet,
except for supported frameworks which will enable some tabs.
- Use `alt+d` (or `option+d` on Mac) in the web app to launch devtools.
- Allow build_web_compilers 2.x.

## 1.0.1

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.

2 changes: 1 addition & 1 deletion webdev/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: webdev
version: 2.0.0-dev
version: 2.0.0
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/webdev
description: >-
Expand Down