@gala-chain/launchpad-sdk 3.12.4 → 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 +12 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
3
15
|
## 3.12.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-sdk",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.5",
|
|
4
4
|
"description": "TypeScript SDK for Gala Launchpad Backend API - Production-ready DeFi token launchpad integration with wallet-based authentication, GalaChain trading, and comprehensive user operations. 100% tested (22/22 endpoints working).",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"dotenv": "^17.2.3",
|
|
148
148
|
"ethers": "^6.15.0",
|
|
149
149
|
"socket.io-client": "^4.8.1",
|
|
150
|
-
"uuid": "^
|
|
150
|
+
"uuid": "^9.0.1",
|
|
151
151
|
"web-file-polyfill": "^1.0.4",
|
|
152
152
|
"zod": "^3.25.76",
|
|
153
153
|
"zod-to-json-schema": "^3.24.6"
|