Releases: Hexagon/base64
Releases · Hexagon/base64
2.0.4
2.0.3
@hexagon/base64 2.0.3
No significant changes in the interface, but the major version is bumped due to the full build toolchain being replaced with Deno and esbuild. This removes a lot of cruft from the repository. The codebase is also converted from JavaScript with JSDoc typings to full TypeScript.
Do note that the default export for CommonJS is dropped
Previously:
const base64 = require("@hexagon/base64");
From 2.0
const { base64 } = require("@hexagon/base64");
// Which also enables importing the individual functions directly
const { fromString, toString } = require("@hexagon/base64");
Full Changelog: 1.1.28...2.0.2
1.1.28
Optimizations:
- Pre-calculated values and regular expressions for improved performance.
Maintenance:
- Upgraded development dependencies.
Full Changelog: 1.1.27...1.1.28
1.1.27
1.1.26
Changes
Maintenance release
- chore: Update dev dependencies
- chore: Update CI pipelines
- chore: Bringing the code into the present. Example
var
->let
/const
- chore: Add native Deno config files
Full Changelog: 1.1.25...1.1.26
1.1.25
1.1.24
1.1.23
1.1.22
Changes
- Dev dependency update
- Documentation typo fix
- Documentation update
Full Changelog: 1.1.21...1.1.22