Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
denobot 2023-12-21 09:00:41 -05:00 committed by GitHub
parent 6507a76435
commit 5ddf32a1ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,23 @@
### 0.210.0 / 2023.12.21
- BREAKING(crypto): remove `toHashString()` (#3924)
- BREAKING(encoding): remove deprecated APIs (#3952)
- BREAKING(http): remove deprecated `std/http/method` API (#3951)
- deprecation(encoding): deprecate `base32.byteLength()` (#4000)
- deprecation(semver): comparator min and max properties (#3974)
- deprecation(semver): deprecate `SemVer` argument for `parse()` and
`canParse()` (#3939)
- deprecation(semver): deprecate `rcompare()` (#3958)
- deprecation(semver): rename `isSemVerComparator()` (#3957)
- deprecation(signal): move deprecation forward (#4004)
- feat(cli): command line spinner (#3968)
- feat(collections): improve `mapValues()` typing (#3978)
- feat(log): add support for structured JSON logging (#3960)
- feat(testing): enable the `using` keyword on `FakeTime()` (#3961)
- fix(http): account for period in signed cookie name (#3977)
- fix(path/extname): fix incorrect import (#3970)
- perf(streams): make `toBlob()` 20-30% faster (#3934)
### 0.209.0 / 2023.12.13
- BREAKIING(fs): remove `EOL` enum, add OS-dependent `EOL` (#3850)

View File

@ -5,4 +5,4 @@
* the cli's API is stable. In the future when std becomes stable, likely we
* will match versions with cli as we have in the past.
*/
export const VERSION = "0.209.0";
export const VERSION = "0.210.0";