Skip to content

Releases: Hexagon/base64

2.0.4

18 Oct 20:02
Compare
Choose a tag to compare

Changes

Chores and more tests.

  • chore: Build script cleanuo
  • chore: Dev dependency update
  • test: Add tests for non-namespaced import
  • chore: Exclude more files from jsr package

Full Changelog: 2.0.0...2.0.4

2.0.3

07 Oct 21:58
Compare
Choose a tag to compare

@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

18 Sep 22:28
Compare
Choose a tag to compare

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

06 Aug 19:47
Compare
Choose a tag to compare

Changes

  • Full (dev) dependency and build pipeline update

Full Changelog: 1.1.26...1.1.27

1.1.26

03 Feb 19:25
Compare
Choose a tag to compare

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

22 Sep 18:43
Compare
Choose a tag to compare

Changes

  • fix: Documentation fix
  • chore: update dev dependencies

Full Changelog: 1.1.24...1.1.25

1.1.24

16 Sep 18:14
efd124b
Compare
Choose a tag to compare

Changes

  • Documentation update
  • Update README.md by @xcelr8 in #79

New Contributors

Full Changelog: 1.1.23...1.1.24

1.1.23

11 Aug 19:00
88b4706
Compare
Choose a tag to compare

Changes

  • Documentation update

Full Changelog: 1.1.22...1.1.23

1.1.22

01 Jul 22:35
da12d52
Compare
Choose a tag to compare

Changes

  • Dev dependency update
  • Documentation typo fix
  • Documentation update

Full Changelog: 1.1.21...1.1.22

1.1.21

19 Jun 19:32
Compare
Choose a tag to compare

New feature

  • Add base64 and base64 validation

Full Changelog: 1.0.20...1.1.21