Releases: tinovyatkin/pass-js
Releases · tinovyatkin/pass-js
v6.6.3
v6.6.0
6.5.1
v6.5.0
[FEATURE] Added support for sharingProhibited
flag [#148]. Thanks to @krivochenko !
v6.4.9
v6.4.8
Added CRC32 check while unzipping at Template.fromBuffer
v6.4.6
v6.4.5
v6.4.4
v6.4.0
- [Feature 🎉 ] implemented
Template.fromBuffer
method that much likeTemplate.load
allows to load everything but from a Buffer with ZIP file content. For example:const s3 = new AWS.S3({ apiVersion: "2006-03-01", region: "us-west-2" }); const s3file = await s3 .getObject({ Bucket: "bucket", Key: "pass-template.zip" }) .promise(); const template = await Template.fromBuffer(s3file.Body);
- [Bug 🐛 ] Fixed creation of passes with localizations set in the Template
- [Documentation 📚 ] Updated
README
, thank you @nickasd - [Dependencies 📦 ] Replaced
color-string
() withcolor-name
and custom function () - [Dependencies 📦 ] Added
event-iterator
andyauzl
forTemplate.fromBuffer
implementation