Skip to content

Releases: laterpay/supertab-browser

v8.1.2

18 Nov 14:00
Compare
Choose a tag to compare

8.1.2 (2024-11-18)

Bug Fixes

  • close the document after write to prevent "sticky" window (f9b0165)

v8.1.1

18 Nov 13:02
Compare
Choose a tag to compare

8.1.1 (2024-11-18)

Bug Fixes

  • disable pre-fetching of desired window location (9bc4452)

v8.1.0

18 Nov 07:24
Compare
Choose a tag to compare

8.1.0 (2024-11-18)

Features

  • Include purchase ids in purchase method response (#122) (6958cfd)

v8.0.2

14 Nov 16:18
Compare
Choose a tag to compare

8.0.2 (2024-11-14)

Bug Fixes

  • set window location if fails to fetch URL (a0b449b)

v8.0.1

05 Nov 09:59
Compare
Choose a tag to compare

8.0.1 (2024-11-05)

Bug Fixes

v8.0.0

01 Nov 07:54
Compare
Choose a tag to compare

8.0.0 (2024-11-01)

Features

BREAKING CHANGES

  • purchaseStatus in .purchase method is renamed to purchaseOutcome.

v7.0.0

31 Oct 13:32
Compare
Choose a tag to compare

7.0.0 (2024-10-31)

feature

  • Include more currency details in offerings and tabs (#104) (c9eefa5)

BREAKING CHANGES

  • Change currency type from string (isoCode) to object (isoCode, baseUnit)

Details

Offerings, tabs and tab purchases now contain more currency details in the form of an object. Before, they contained just the currency iso code string.

type PublicCurrencyDetails = Pick<Currency, "isoCode" | "baseUnit">;

// Example
const currency: PublicCurrencyDetails = {
  isoCode: "USD",
  baseUnit: 100,
};

Why

We're implementing Google's Monetization Provider API for experiences.js and we need to know the currency's base unit for the response data.

Changes

  • fix: Correct typo in STG token URL
  • Add missing data to mock user
  • Include currency isoCode and baseUnit in offerings
  • Include currency iso code and base unit in tabs
  • Fix inconsitent currency handling in test mock api

v6.13.0

04 Oct 07:52
Compare
Choose a tag to compare

6.13.0 (2024-10-04)

Features

  • return purchaseStatus in .purchase() (#94) (13eae65)

v6.12.7

27 Sep 13:03
Compare
Choose a tag to compare

6.12.7 (2024-09-27)

Bug Fixes

v6.12.6

27 Sep 12:54
Compare
Choose a tag to compare

6.12.6 (2024-09-27)

Bug Fixes

  • Don't require full tab before payment (#75) (4333b1c)