Skip to content

Releases: denoland/std

0.102.0

19 Jul 18:22
95565a6
Compare
Choose a tag to compare

0.102.0 / 2021.07.19

  • feat: Add std/collections (#993)
  • fix(encoding/toml): fix comment line starting with whitespaces (#1017)
  • fix(encoding/toml): parse keys correctly (#1019)
  • fix(hash): fix handling of non-byte-sized TypedArray views (#1012)
  • fix(testing): Don't merge diff when it's not spaces even if it's surrounded by
    word-diff (#1032)

0.101.0

12 Jul 23:53
5f2e439
Compare
Choose a tag to compare

0.101.0 / 2021.07.13

  • BREAKING(encoding/hex): remove encodedLen, encodeToString, decodedLen,
    decodeString, errInvalidByte, errLength (#733)
  • BREAKING(mime/multipart): return array for multiple values with same form name
    (#722)
  • BREAKING(std/uuid): rework v4 and v5 module (#971)
  • feat(async): add deadline to async module (#1022)
  • feat(async): add debounce method to async module (#1006)
  • feat(encoding/toml): fix bad string format. Improve coverage (#991)
  • feat(hash): add BLAKE3 hash support (#994)
  • feat(http): Add Cookie domain validation (#1009)
  • feat(http): Allow passing path and domain attributes while removing cookies
    (#1005)
  • feat(io): add copy function (#1016)
  • feat(io/streams): add autoClose option to writableStreamFromWriter (#964)
  • feat(std/node): add writeBuffer of internal binding fs module (#888)
  • fix: improve type safety for browser-compatible modules (#995)
  • fix(encoding/toml): serializes mixed array (#1001)
  • fix(encoding/toml): throws parse error when toml uses invalid whitespaces
    (#1013)
  • fix(http): setCookie with maxAge of 0 (#992)
  • fix(http/server): Swallow NotConnected errors from listener.accept() (#761)
  • fix(io/bufio): fix handling of trailing new line (#990)
  • fix(node/module): More descriptive error in "createRequire" (#997)
  • fix(path): Add question mark as a glob indicator (#1024)
  • fix(testing): use return type of never for fail (#1002)

0.100.0

12 Jul 23:47
635da0f
Compare
Choose a tag to compare

0.100.0 / 2021.06.29

  • feat(testing/asserts): improved strings diff (#948)
  • feat(testing/asserts): use assertion signature for "assertExists" (#969)
  • fix(node/events): align EventEmitter#addListener with native node tests (#976)
  • fix(path): fix type error in glob.ts with noImplicitAny: false config (#977)

0.99.0

15 Jun 20:24
e9bc068
Compare
Choose a tag to compare

0.99.0 / 2021.06.15

  • feat(mime): make createPart of MultipartWriter public (#960)
  • feat(node/util): add inherits (#958)
  • fix(node/events): fix EventEmitter#removeAllListeners (#968)
  • fix(node/process): make process.env enumerable (#957)
  • fix(node/util): fix util.inherits (#959)

0.98.0

08 Jun 20:40
e2360e7
Compare
Choose a tag to compare

0.98.0 / 2021.06.08

  • feat(async): add async/tee (#919)
  • feat(async/mux): take AsyncIterable as source iterator (#923)
  • feat(io/bufio): add encoding options to readLines and readStringDelim
    (#921)
  • feat(node/perf_hooks): add perf_hooks module (#945)
  • fix(encoding/binary): allow getNBytes to read until EOF (#932)
  • fix(encoding/binary): respect non 0 byte offsets (#826)
  • fix(node/events): fix EventEmitter#once to pass native node tests (#935)
  • fix(node/events): fix getMaxListeners and setMaxListeners to pass native node
    tests (#928)
  • fix(node/fs): fix type error in fs.watch impl (#947)
  • fix(testing/asserts): fix handling of Weak* objects (#951)

0.97.0

17 May 14:43
69245d3
Compare
Choose a tag to compare

0.97.0 / 2021.05.17

  • fix(io/buffer): make Buffer compatible with Deploy (#912)
  • fix(io/bufio): readDelim returns wrong result if delim strides over chunks
    (#877)
  • fix(node/events): accept only functions as listener arguments (#916)
  • fix(testing): support array values in assertObjectMatch (#906)

0.96.0

12 May 11:41
07be23e
Compare
Choose a tag to compare

0.96.0 / 2021.05.11

  • feat(fs/walk): show path in walk error (#875)
  • feat(http): allow custom response code (#855)
  • feat(io): add readRange, readRangeSync (#884)
  • feat(mime/multipart): add options to readForm (#895)
  • feat(node): add console module (#892)
  • feat(node/assert): add rejects and doesNotReject (#894)
  • feat(std/node): add implementation of os.homedir() (#873)
  • fix(http/file_server): keep url and name consistent (#908)
  • fix(io): Improve readDelims() performance (#867)
  • fix(io/streams): don't use a byte ReadableStream (#891)
  • fix(node/assert): enable test-assert-fail.js and align assert.fail to it
    (#874)
  • fix(node/child_process): Try to fix flaky tests (#876)
  • fix(node/stream): make Stream the default export (#901)

0.95.0

23 Apr 14:31
7498d9d
Compare
Choose a tag to compare

0.95.0 / 2021.04.23

  • feat(node): add basic support for child_process.spawn (#785)
  • feat(path/glob): add caseInsensitive option (#854)
  • fix(node/fs): actually export everything (#862)

0.94.0

20 Apr 23:48
12e9b2e
Compare
Choose a tag to compare

0.94.0 / 2021.04.20

  • feat(node/fs): add fstat and fstatSync (#847)
  • feat(streams): add readableStreamFromReader (#852)
  • fix(path): reduce circular dependency (#858)
  • fix(testing): equals does not differentiate undefined/absent keys (#849)

0.92.0

02 Apr 05:21
e2d6f55
Compare
Choose a tag to compare

0.92.0 / 2021.04.02

  • feat: make bufio compatible to Deno Deploy (#831)
  • feat: add symlink adn symlinkSync to node/fs (#825)
  • feat: add format and improve deprecate in node/util (#693)
  • feat: add io/buffer and io/util module (#808) …
  • fix: handle upstream type changes (#834)
  • refactor: Promise<void> return types are unnecessary boilerplate in
    encoding. (#818)
  • chore: remove unused import in http (#817)