Co-authored-by: satyarohith <satyarohith@users.noreply.github.com>
This commit is contained in:
denobot 2024-04-11 07:38:50 +02:00 committed by GitHub
parent 7cef1d9f51
commit b5af8daf01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,20 @@
### 0.222.0 / 2024.04.11
- [unstable] BREAKING(semver): remove comparator.semver field (#4533)
- deprecate(log): deprecate internal utility methods (#4436)
- deprecation(console): copy `std/console` APIs into `std/cli` and deprecate
`std/console` (#4547)
- deprecation(crypto): rename an export to match style guide, deprecating
original and two other obsolete imports (#4525)
- deprecation(encoding): make exported function names consistent with
`std/encoding` (#4555)
- deprecation(yaml): cleanup schema exports (#4566)
- feat(expect): support `expect.addSnapshotSerialize()` api (#4537)
- feat(semver): `greaterThanRange()` and `lessThanRange()` (#4534)
- feat(testing): add `after`, `before`, `test` aliases (#4541)
- fix(cli): make the output of `promptSecret()` consistent with `prompt()`
(#4549)
### 0.221.0 / 2024.03.27
- feat(expect): add `expect.{closeTo, stringContaining, stringMatching}` (#4508)

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.221.0";
export const VERSION = "0.222.0";