Skip to content

Prep to publish dwds 16.0.0 #1701

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

Closed
Closed
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
18 changes: 9 additions & 9 deletions dwds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## 16.0.0-dev
## 16.0.0
- Fix a hang and report errors on hot reload exceptions from the injected
client.
- Remove `AppInspector.evaluate` code that has been replaced by expression
evaluation using a compiler in all scenarios.
- Fix a bug where evaluation would fail with more than one parameter in
the scope.
- Remove showing uncaptured values from the stack during evaluation.
- Remove showing un-captured values from the stack during evaluation.
- Refactor code to break most circular dependencies between files.
- Migrate `package:dwds` to null safety.

Expand Down Expand Up @@ -34,7 +34,7 @@
- Update the min SDK constraint to 2.17.0.

## 14.0.1
- Add `libraryFilters` optional parameter to the vm service implememtation
- Add `libraryFilters` optional parameter to the vm service implementation
of `getSourceReport`.
- Update temp variable detection heuristics so internal JS type objects do
not show in the debugger.
Expand Down Expand Up @@ -126,7 +126,7 @@

## 11.5.1

- Update SDK contraint to `>=2.15.0 <3.0.0`.
- Update SDK constraint to `>=2.15.0 <3.0.0`.

## 11.5.0

Expand Down Expand Up @@ -216,7 +216,7 @@

## 11.1.2
- Return empty library from `ChromeProxyService.getObject` for
libraries present in medatata but not loaded at runtime.
libraries present in metadata but not loaded at runtime.
- Log failures to load kernel during expression evaluation.
- Show lowered final fields using their original dart names.
- Limit simultaneous connections to asset server to prevent broken sockets.
Expand Down Expand Up @@ -373,7 +373,7 @@

## 7.0.2

- Depend on the latest `pacakge:sse`.
- Depend on the latest `package:sse`.
- Add more verbose logging around `hotRestart`, `fullReload` and
entrypoint injection.

Expand Down Expand Up @@ -409,7 +409,7 @@
- Change `ExpressionCompiler` to require a new `updateDependencies` method.
- Update a number of `LoadStrategy` APIs to remove heuristics and rely on
the `MetadataProvider`.
- No longer require a `LogWriter` and corresponding `verbose` arguement
- No longer require a `LogWriter` and corresponding `verbose` argument
but instead properly use `package:logger`.
- `FrontendServerRequireStrategyProvider` now requires a `digestProvider`.

Expand Down Expand Up @@ -478,7 +478,7 @@
- Implemented the 'PossibleBreakpoints' report kind for `getSourceReport()`.
- Change the returned errors for the unimplemented `getClassList` and `reloadSources`
methods to -32601 ('method does not exist / is not available').
- Do not include native JavaScipt objects on stack returned from the debugger.
- Do not include native JavaScript objects on stack returned from the debugger.

## 3.1.0

Expand Down Expand Up @@ -568,7 +568,7 @@
- Expose `middleware` and `handler`.

**Breaking Change:** The `AssetHandler` will not automatically be added the
DWDS handler cascade. You must now also add the `middelware` to your server's
DWDS handler cascade. You must now also add the `middleware` to your server's
pipeline.

## 0.8.5
Expand Down
246 changes: 123 additions & 123 deletions dwds/lib/src/injected/client.js

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

2 changes: 1 addition & 1 deletion dwds/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 dwds/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dwds
# Every time this changes you need to run `dart run build_runner build`.
version: 16.0.0-dev
version: 16.0.0
description: >-
A service that proxies between the Chrome debug protocol and the Dart VM
service protocol.
Expand Down