@adobe/spacecat-shared-tokowaka-client 1.13.3 → 1.13.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,3 +1,15 @@
1
+ ## [@adobe/spacecat-shared-tokowaka-client-v1.13.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-tokowaka-client-v1.13.4...@adobe/spacecat-shared-tokowaka-client-v1.13.5) (2026-05-04)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **deps:** update dependency uuid to v14 [security] ([#1555](https://github.com/adobe/spacecat-shared/issues/1555)) ([9c1fdda](https://github.com/adobe/spacecat-shared/commit/9c1fddab68014d16a6b5cc53965a08303345ed79))
6
+
7
+ ## [@adobe/spacecat-shared-tokowaka-client-v1.13.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-tokowaka-client-v1.13.3...@adobe/spacecat-shared-tokowaka-client-v1.13.4) (2026-04-15)
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cm-client:** preserve broken symlinks when zipping repositories ([#1468](https://github.com/adobe/spacecat-shared/issues/1468)) ([943662a](https://github.com/adobe/spacecat-shared/commit/943662ac5d3765ee2a289355b9bf1e23c6c88230))
12
+
1
13
  ## [@adobe/spacecat-shared-tokowaka-client-v1.13.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-tokowaka-client-v1.13.2...@adobe/spacecat-shared-tokowaka-client-v1.13.3) (2026-04-09)
2
14
 
3
15
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-tokowaka-client",
3
- "version": "1.13.3",
3
+ "version": "1.13.5",
4
4
  "description": "Tokowaka Client for SpaceCat - Edge optimization config management",
5
5
  "type": "module",
6
6
  "engines": {
@@ -40,7 +40,7 @@
40
40
  "hast-util-from-html": "2.0.3",
41
41
  "mdast-util-from-markdown": "2.0.3",
42
42
  "mdast-util-to-hast": "13.2.1",
43
- "uuid": "13.0.0"
43
+ "uuid": "14.0.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "aws-sdk-client-mock": "4.1.0",
@@ -219,7 +219,8 @@ describe('HTML Utils', () => {
219
219
 
220
220
  const elapsed = Date.now() - startTime;
221
221
  expect(html).to.equal('<html>Optimized HTML</html>');
222
- expect(fetchStub.callCount).to.equal(2); // warmup + actual
222
+ // warmup + actual, but CI timing can cause an extra retry
223
+ expect(fetchStub.callCount).to.be.at.least(2);
223
224
  expect(elapsed).to.be.at.least(750); // Default warmup delay for optimized is 750ms
224
225
  });
225
226