@capturebridge/sdk 0.19.2 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
 
9
+ ## [0.20.0] - 2023-11-20
10
+
11
+ ### Changed
12
+
13
+ - `Verifone.readMagstripe()` was previously returning a base64 encoded `NULL`
14
+ byte (e.g. the string `"AA=="`) for empty tracks, it is now returning `null`
15
+ for empty tracks.
16
+
9
17
  ## [0.19.2] - 2023-11-18
10
18
 
11
19
  ### Changed
package/Version.js CHANGED
@@ -4,5 +4,5 @@
4
4
  * @constant
5
5
  * @type {string}
6
6
  */
7
- const VERSION = '0.19.2'
7
+ const VERSION = '0.20.0'
8
8
  export default VERSION
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capturebridge/sdk",
3
- "version": "0.19.2",
3
+ "version": "0.20.0",
4
4
  "description": "Capture Bridge JavaScript SDK for web applications",
5
5
  "type": "module",
6
6
  "types": "types.d.ts",