@pixelverse/strichjs-sdk 1.4.7 → 1.4.9

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
@@ -2,6 +2,28 @@
2
2
 
3
3
  The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
4
4
 
5
+ ## [1.4.9] - 2024-07-26
6
+
7
+ ### Deprecated
8
+
9
+ - This is the last release to retain compatibility with WebGL 1. Future releases will require WebGL 2, which has been widely available for several years now.
10
+
11
+ ### Fixed
12
+
13
+ - Decreased WASM size by using more space-efficient lookup tables in the PDF417 decoder.
14
+ - Decreased bundle size by not including some code that was only used for internal debugging purposes.
15
+ - Clarified documentation regarding availability of the `customLogoSrc` overlay configuration property.
16
+
17
+ ## [1.4.8] - 2024-06-19
18
+
19
+ ### Fixed
20
+
21
+ - Fixed a memory leak in the WebAssembly engine when running in debug mode.
22
+
23
+ ### Changed
24
+
25
+ - Request a smaller initial memory allocation for the WebAssembly engine (32MB instead of 64MB) to ease memory pressure on iOS. Safari currently has an open issue with WASM memory management that leads to 'Out of Memory' error in `StrichSDK.initialize()` and persists across reloads so can only be recovered from by closing and reopening the browser tab. The associated WebKit issue is: https://bugs.webkit.org/show_bug.cgi?id=222097
26
+
5
27
  ## [1.4.7] - 2024-06-03
6
28
 
7
29
  ### Fixed