[docs] Merge stable changes into main changelog

Change-Id: Ibd756739a08fd7e44b32ec7f5d8eccf29c666895
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/332182
Commit-Queue: Kevin Chisholm <kevinjchisholm@google.com>
Reviewed-by: William Hesse <whesse@google.com>
Reviewed-by: Jonas Termansen <sortie@google.com>
This commit is contained in:
Kevin Chisholm 2023-10-25 12:22:12 +00:00 committed by Commit Queue
parent cfd04d3b51
commit 844fe6d955

View file

@ -276,6 +276,47 @@ constraint][language version] lower bound to 3.2 or greater (`sdk: '^3.2.0'`).
changed between direct, dev and transitive dependency.
- The command `dart pub upgrade` no longer shows unchanged dependencies.
## 3.1.5 - 2023-10-25
This is a patch release that:
- Fixes an issue affecting Dart compiled to JavaScript running in Node.js 21. A
change in Node.js 21 affected the Dart Web compiler runtime. This patch
release accomodates for those changes (issue #53810).
[#53810]: https://github.com/dart-lang/sdk/issues/53810
## 3.1.4 - 2023-10-18
This is a patch release that:
- Fixes an issue in the Dart VM, users are not being able to see
value of variables while debugging code (issue [#53747]).
[#53654]: https://github.com/dart-lang/sdk/issues/53747
## 3.1.3 - 2023-09-27
This is a patch release that:
- Fixes a bug in dart2js which would cause the compiler to crash when using
`@staticInterop` `@anonymous` factory constructors with type parameters (see
issue [#53579] for more details).
- The standalone Dart VM now exports symbols only for the Dart_* embedding API
functions, avoiding conflicts with other DSOs loaded into the same process,
such as shared libraries loaded through `dart:ffi`, that may have different
versions of the same symbols (issue [#53503]).
- Fixes an issue with super slow access to variables while debugging.
The fix avoids searching static functions in the imported libraries
as references to members are fully resolved by the front-end. (issue
[#53541])
[#53579]: https://github.com/dart-lang/sdk/issues/53579
[#53267]: https://github.com/dart-lang/sdk/issues/53503
[#53541]: https://github.com/dart-lang/sdk/issues/53541
## 3.1.2 - 2023-09-13
This is a patch release that: