@gala-chain/launchpad-sdk 3.5.1 → 3.5.2
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 +16 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/utils/validation.d.ts +1 -3
- package/dist/utils/validation.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to the Gala Launchpad SDK will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [3.5.2] - 2025-10-02
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- **Internal code quality improvements** - DRY refactoring to eliminate code duplication
|
|
11
|
+
- Consolidated validation helper functions (`validateOptionalUrl`, `validatePositiveDecimalString`)
|
|
12
|
+
- Reduced ~250 lines of duplicated validation logic
|
|
13
|
+
- Fixed regex bug in `validateLaunchTokenData` (double-escaped pattern)
|
|
14
|
+
- Removed legacy address format wrapper functions
|
|
15
|
+
- No breaking changes - 100% backward compatible
|
|
16
|
+
|
|
17
|
+
### Benefits
|
|
18
|
+
- ✅ Improved code maintainability and consistency
|
|
19
|
+
- ✅ Reduced bundle size through code consolidation
|
|
20
|
+
- ✅ Better validation error messages
|
|
21
|
+
- ✅ All tests passing, zero regressions
|
|
22
|
+
|
|
7
23
|
## [3.5.1] - 2025-10-01
|
|
8
24
|
|
|
9
25
|
### Changed
|