Skip to content

Releases: tinovyatkin/pass-js

v6.6.3

06 Nov 03:12
v6.6.3
a011b73
Compare
Choose a tag to compare

Rebuld using Typescript 3.7 and new optional chaining feature. No functional changes.

v6.6.0

06 Oct 08:08
v6.6.0
9cd6adc
Compare
Choose a tag to compare

Fixed NFC datatype mismatch (#235)

6.5.1

22 Aug 06:16
f8e8924
Compare
Choose a tag to compare
  • [FIX 🐛 ] Wait for APN response before resolving #193

v6.5.0

11 Jul 02:04
v6.5.0
5682b50
Compare
Choose a tag to compare

[FEATURE] Added support for sharingProhibited flag [#148]. Thanks to @krivochenko !

v6.4.9

24 Jun 22:02
v6.4.9
f676fef
Compare
Choose a tag to compare

Do not normalize valid URL passed to webServiceURL as string. Closes #127

v6.4.8

22 Jun 18:28
v6.4.8
9907bc3
Compare
Choose a tag to compare

Added CRC32 check while unzipping at Template.fromBuffer

v6.4.6

18 Jun 16:54
v6.4.6
22f5795
Compare
Choose a tag to compare

Fixes #108

v6.4.5

18 Jun 16:54
v6.4.5
b51a0d5
Compare
Choose a tag to compare

Re-parse dates specified as string to allow invalid dates in resulted pass.json. See #85

v6.4.4

23 May 21:03
v6.4.4
f7ecae8
Compare
Choose a tag to compare

Fixed bug with non-Unicode strings in pass.json. Thank you @Asp3ctus !

v6.4.0

19 May 02:06
v6.4.0
4be4b7f
Compare
Choose a tag to compare
  • [Feature 🎉 ] implemented Template.fromBuffer method that much like Template.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 (install size) with color-name and custom function (install size)
  • [Dependencies 📦 ] Added event-iterator install size and yauzl install size for Template.fromBuffer implementation