@lightspeed/ecom-headless 1.2.0-rc.0 → 1.2.1-rc.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 +12 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.2.1 - 2026-09-24
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- update compatible test and development tooling dependencies
|
|
8
|
+
|
|
3
9
|
## 1.2.0 - 2026-09-02
|
|
4
10
|
|
|
5
11
|
### Added
|
|
@@ -9,6 +15,12 @@
|
|
|
9
15
|
### Changed
|
|
10
16
|
|
|
11
17
|
- Expose native product-grid media and domain-specific change subscriptions for custom Storefront layouts.
|
|
18
|
+
- Align Cart and Customer callback and multi-select product option types with the Storefront runtime contract; see `packages/ecom-headless/UPGRADE.md`.
|
|
19
|
+
- Increase the main ESM gzip budget from 3 KB to 3.3 KB for callback-aware Cart and Customer operations.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Await Storefront Cart and Customer operation callbacks before resolving.
|
|
12
24
|
|
|
13
25
|
## 1.1.4 - 2026-05-21
|
|
14
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lightspeed/ecom-headless",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1-rc.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -85,20 +85,20 @@
|
|
|
85
85
|
"node": "^22.13.0 || >=24.0.0"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@jest/globals": "^30.0
|
|
88
|
+
"@jest/globals": "^30.5.0",
|
|
89
89
|
"@lightspeed/eslint-config": "workspace:*",
|
|
90
90
|
"@size-limit/preset-small-lib": "^11.2.0",
|
|
91
|
-
"@types/jest": "^
|
|
91
|
+
"@types/jest": "^30.0.0",
|
|
92
92
|
"@types/node": "^22",
|
|
93
93
|
"eslint": "^9.33.0",
|
|
94
|
-
"jest": "^30.0
|
|
94
|
+
"jest": "^30.5.0",
|
|
95
95
|
"msw": "2.10.4",
|
|
96
96
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
97
97
|
"size-limit": "^11.2.0",
|
|
98
98
|
"ts-jest": "^29.1.5",
|
|
99
99
|
"ts-node": "^10.9.2",
|
|
100
|
-
"tsc-alias": "^1.
|
|
101
|
-
"tsx": "^4.
|
|
100
|
+
"tsc-alias": "^1.9.2",
|
|
101
|
+
"tsx": "^4.23.13",
|
|
102
102
|
"typescript": "5.9.3",
|
|
103
103
|
"unbuild": "^3.5.0"
|
|
104
104
|
},
|