@adobe/spacecat-shared-tokowaka-client 1.13.3 → 1.13.4
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 +6 -0
- package/package.json +1 -1
- package/test/utils/html-utils.test.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [@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)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **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))
|
|
6
|
+
|
|
1
7
|
## [@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
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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
|
|