diff options
author | Richard Viney <richard.viney@gmail.com> | 2024-06-23 16:59:06 +1200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-06-23 09:40:23 +0100 |
commit | 3592b0b847d0c4348fc37be868ac22607ce426de (patch) | |
tree | 3245d99c349932bf7c07bee1aec9b1562e375419 /CHANGELOG.md | |
parent | 6a6d5adf356993031ab2e79012e436dd2567a2f9 (diff) | |
download | gleam_stdlib-3592b0b847d0c4348fc37be868ac22607ce426de.tar.gz gleam_stdlib-3592b0b847d0c4348fc37be868ac22607ce426de.zip |
Improve Base64 decode performance
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ea30f7d..8847122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,8 +18,9 @@ - The behaviour of the string trim functions is now consistent across targets. - `iterator.yield` now yields values without waiting for the next one to become available. -- Base64 encoding speed improvements. Encoding of bit arrays over ~100KiB to - Base64 on JavaScript no longer throws an exception. +- Improved bit array Base64 encoding and decoding speed on JavaScript. +- Fixed a bug where Base64 encoding a bit array larger than ~100KiB would throw + an exception on JavaScript. ## v0.38.0 - 2024-05-24 |