Releases: adaptyvbio/bwip-js
Releases Β· adaptyvbio/bwip-js
Release list
Release v4.8.1
What's Changed in v4.8.1
π Features
- Support for raw bytes encoding via new
bytesoption - Accepts Buffer or Uint8Array for binary data
- Preserves all byte values (0x00-0xFF) without UTF-8 conversion
- Automatic
binarytextflag when using bytes option
π¦ Installation
npm install @adaptyvbio/bwip-js@4.8.1π‘ Usage Example
const bwipjs = require('@adaptyvbio/bwip-js');
// Using raw bytes
const png = await bwipjs.toBuffer({
bcid: 'datamatrix',
bytes: Buffer.from([0x00, 0xFF, 0xFE]),
scale: 3
});π Commits
- Release version 4.8.1 (Arnaud Gissinger)
- fix: gh action (Arnaud Gissinger)
π Full Changelog
Release v4.7.3
What's Changed in v4.7.3
π Features
- Support for raw bytes encoding via new
bytesoption - Accepts Buffer or Uint8Array for binary data
- Preserves all byte values (0x00-0xFF) without UTF-8 conversion
- Automatic
binarytextflag when using bytes option
π¦ Installation
npm install @adaptyvbio/bwip-js@4.7.3π‘ Usage Example
const bwipjs = require('@adaptyvbio/bwip-js');
// Using raw bytes
const png = await bwipjs.toBuffer({
bcid: 'datamatrix',
bytes: Buffer.from([0x00, 0xFF, 0xFE]),
scale: 3
});π Commits
- Release version 4.7.3 (Arnaud Gissinger)
- feat: update .npmignore and package.json for improved package management (Arnaud Gissinger)
π Full Changelog
Release v4.7.1
What's Changed in v4.7.1
π Features
- Support for raw bytes encoding via new
bytesoption - Accepts Buffer or Uint8Array for binary data
- Preserves all byte values (0x00-0xFF) without UTF-8 conversion
- Automatic
binarytextflag when using bytes option
π¦ Installation
npm install @adaptyvbio/bwip-js@4.7.1π‘ Usage Example
const bwipjs = require('@adaptyvbio/bwip-js');
// Using raw bytes
const png = await bwipjs.toBuffer({
bcid: 'datamatrix',
bytes: Buffer.from([0x00, 0xFF, 0xFE]),
scale: 3
});π Commits
- Release version 4.7.1 (Arnaud Gissinger)
- feat: add GitHub Actions workflow for creating releases and update version handling (Arnaud Gissinger)