···11----
22-'@atcute/varint': major
33----
44-55-alter the return shape of `decode()`
66-77-`decode()` now returns `{ value, nextOffset }` instead of `[value, nextOffset]`, on Bun this seems
88-to make a noticeable improvement.
-7
.changeset/fair-ads-shave.md
···11----
22-'@atcute/car': patch
33----
44-55-slightly faster varint decoding
66-77-avoid using subarrays here
···11----
22-'@atcute/lexicons': patch
33----
44-55-forbid empty CIDs in lexicons
-5
.changeset/fresh-deserts-lay.md
···11----
22-'@atcute/lexicon-doc': patch
33----
44-55-don't make findExternalReferences recurse
-8
.changeset/good-gifts-smile.md
···11----
22-'@atcute/varint': minor
33----
44-55-allow passing offset and length to `decode()`
66-77-`decode()` now allows specifying the offset to read from, removing the need to subarray/slice the
88-buffer before passing to the decoder.
···11----
22-'@atcute/varint': major
33----
44-55-`decode()` and `encode()` functions no longer takes in a number array
66-77-you have to use Uint8Array
-5
.changeset/ninety-rockets-rescue.md
···11----
22-'@atcute/multibase': patch
33----
44-55-faster base32 and base58 encoding/decoding
···11# @atcute/uint8array
2233+## 1.1.1
44+55+### Patch Changes
66+77+- fe963f8: avoid calling `buf.subarray()` in `decodeUtf8From()` unless necessary on browser runtime
88+- 441b28a: missing fast path for isUtf8LengthInRange in Node.js and Bun
99+310## 1.1.0
411512### Minor Changes
···11# @atcute/varint
2233+## 2.0.0
44+55+### Major Changes
66+77+- 4bd4ff0: alter the return shape of `decode()`
88+99+ `decode()` now returns `{ value, nextOffset }` instead of `[value, nextOffset]`, on Bun this seems
1010+ to make a noticeable improvement.
1111+1212+- 4bd4ff0: `decode()` and `encode()` functions no longer takes in a number array
1313+1414+ you have to use Uint8Array
1515+1616+### Minor Changes
1717+1818+- 4bd4ff0: allow passing offset and length to `decode()`
1919+2020+ `decode()` now allows specifying the offset to read from, removing the need to subarray/slice the
2121+ buffer before passing to the decoder.
2222+323## 1.0.4
424525### Patch Changes