[changelog] Move utf8 return type change to 3.2

The change (81df36216f) landed after the cut off and isn't in 3.1: https://api.dart.dev/stable/3.1.0/dart-convert/Utf8Codec-class.html#:~:text=inherited-,encode,-(String%20input

Change-Id: I4394c546e07727bfd54e2f397b755b7460833985
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/321260
Commit-Queue: Martin Kustermann <kustermann@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
This commit is contained in:
Parker Lougheed 2023-08-21 07:38:02 +00:00 committed by Commit Queue
parent 2e9d983b15
commit 70310b06d0

View file

@ -22,6 +22,14 @@
- Added `broadcast` parameter to `Stream.empty` constructor.
#### `dart:convert`
- **Breaking change** [#52801][]:
- Changed return types of `utf8.encode()` and `Utf8Codec.encode()` from
`List<int>` to `Uint8List`.
[#52801]: https://github.com/dart-lang/sdk/issues/52801
#### `dart:developer`
- Deprecated the `Service.getIsolateID` method.
@ -85,14 +93,6 @@
[#52334]: https://github.com/dart-lang/sdk/issues/52334
#### `dart:convert`
- **Breaking change** [#52801][]:
- Changed return types of `utf8.encode()` and `Utf8Codec.encode()` from
`List<int>` to `Uint8List`.
[#52801]: https://github.com/dart-lang/sdk/issues/52801
#### `dart:core`
- `Uri.base` on native platforms now respects `IOOverrides` overriding