@gala-chain/launchpad-sdk 3.12.3 → 3.12.5

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
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.12.5
4
+
5
+ ### Patch Changes
6
+
7
+ - f92c0f6: Fix CommonJS bundle compatibility by downgrading uuid from ^13.0.0 to ^9.0.1
8
+
9
+ The CommonJS bundle (dist/index.cjs.js) was unable to load uuid@13.0.0 because that version is
10
+ ESM-only. UUID v9.0.1 is the last version with dual ESM/CommonJS support, allowing the CommonJS
11
+ bundle to properly require() the uuid package without ERR_REQUIRE_ESM errors. This fix enables
12
+ full compatibility across all three bundle formats (UMD, ESM, CJS) for Node.js CommonJS
13
+ environments and legacy bundlers.
14
+
15
+ ## 3.12.4
16
+
17
+ ### Patch Changes
18
+
19
+ - fix: Use web-file-polyfill for Node.js File API support (reverts complex lazy evaluation)
20
+
21
+ Replaces complex lazy evaluation pattern with official web-file-polyfill package. This provides a
22
+ clean, maintainable solution that allows z.instanceof(File) to work in Node.js environments
23
+ without code complexity. Reverts unnecessary schema refactoring and Rollup configuration changes
24
+ from v3.12.3.
25
+ - Add web-file-polyfill import at SDK entry point
26
+ - Revert to simple direct file schemas (no lazy evaluation)
27
+ - Revert to simple Rollup configuration (single resolve plugin)
28
+ - Fix CommonJS File API ReferenceError in Node.js 18+
29
+
3
30
  ## 3.12.3
4
31
 
5
32
  ### Patch Changes