@podium/client 5.2.0-next.9 → 5.2.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +10 -9
package/CHANGELOG.md CHANGED
@@ -1,3 +1,29 @@
1
+ ## [5.2.1](https://github.com/podium-lib/client/compare/v5.2.0...v5.2.1) (2024-11-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @podium/utils to v5.4.0 ([#443](https://github.com/podium-lib/client/issues/443)) ([efbe56b](https://github.com/podium-lib/client/commit/efbe56bbed26871566705856adbfa622702bdfa0))
7
+
8
+ # [5.2.0](https://github.com/podium-lib/client/compare/v5.1.18...v5.2.0) (2024-11-06)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * improve error messages when fetching from manifest, content and fallback routes when a timeout occurs ([e188bbc](https://github.com/podium-lib/client/commit/e188bbc40d30ed2e21947dd29de76bd218907428))
14
+ * update @podium/schemas to 5.1.0 ([95dafaa](https://github.com/podium-lib/client/commit/95dafaa0a5e9a6687f545f3a9983a647a4f6c1cb))
15
+ * update @podium/utils to support hints asset collection ([fe97c44](https://github.com/podium-lib/client/commit/fe97c44bc6d29d1e45d335235cd3b1ef6eeafeaa))
16
+ * use AbortController instead of AbortSignal to avoid unhandled exception ([#412](https://github.com/podium-lib/client/issues/412)) ([87f5ffe](https://github.com/podium-lib/client/commit/87f5ffe553aa49189658a9be0e19d1323878a55a))
17
+ * use AbortSignal to ensure timeouts are respected ([08899d9](https://github.com/podium-lib/client/commit/08899d974246037cb1893a5b6d06bd6df58815e2))
18
+
19
+
20
+ ### Features
21
+
22
+ * keep track of which resources have emitted early hints and emit complete event once all resources have emitted ([7cf916a](https://github.com/podium-lib/client/commit/7cf916ab286a3c6cb8fbfdae46634b58f2be256f))
23
+ * read assets from podlets using 103 early hints ([64e4b27](https://github.com/podium-lib/client/commit/64e4b27773b87c220bcab1028ecdda82be2aa9fc))
24
+ * replace early hints with header link reading ([4429681](https://github.com/podium-lib/client/commit/44296811441a857fabeaebb583c42da28ec47705))
25
+ * write early hints to browser ([42513a3](https://github.com/podium-lib/client/commit/42513a38f5304648f7b2fb915995c66dc1dd3594))
26
+
1
27
  # [5.2.0-next.9](https://github.com/podium-lib/client/compare/v5.2.0-next.8...v5.2.0-next.9) (2024-11-06)
2
28
 
3
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podium/client",
3
- "version": "5.2.0-next.9",
3
+ "version": "5.2.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -40,7 +40,7 @@
40
40
  "@hapi/boom": "10.0.1",
41
41
  "@metrics/client": "2.5.3",
42
42
  "@podium/schemas": "5.1.0",
43
- "@podium/utils": "5.3.2",
43
+ "@podium/utils": "5.4.0",
44
44
  "abslog": "2.4.4",
45
45
  "http-cache-semantics": "^4.0.3",
46
46
  "lodash.clonedeep": "^4.5.0",
@@ -48,22 +48,22 @@
48
48
  "undici": "6.20.1"
49
49
  },
50
50
  "devDependencies": {
51
+ "@podium/eslint-config": "1.0.0",
52
+ "@podium/semantic-release-config": "2.0.0",
51
53
  "@podium/test-utils": "3.1.0-next.5",
54
+ "@podium/typescript-config": "1.0.0",
52
55
  "@semantic-release/changelog": "6.0.3",
53
56
  "@semantic-release/git": "10.0.1",
54
57
  "@semantic-release/github": "10.0.6",
55
58
  "@semantic-release/npm": "12.0.1",
56
59
  "@semantic-release/release-notes-generator": "13.0.0",
57
- "eslint-config-prettier": "9.1.0",
58
- "eslint-plugin-prettier": "5.1.3",
59
- "express": "4.21.1",
60
- "@podium/eslint-config": "1.0.0",
61
- "@podium/semantic-release-config": "2.0.0",
62
- "@podium/typescript-config": "1.0.0",
63
60
  "@sinonjs/fake-timers": "11.3.1",
64
61
  "@types/readable-stream": "4.0.18",
65
62
  "benchmark": "2.1.4",
66
63
  "eslint": "9.6.0",
64
+ "eslint-config-prettier": "9.1.0",
65
+ "eslint-plugin-prettier": "5.1.3",
66
+ "express": "4.21.1",
67
67
  "get-stream": "9.0.1",
68
68
  "http-proxy": "1.18.1",
69
69
  "is-stream": "4.0.1",
@@ -71,6 +71,7 @@
71
71
  "prettier": "3.3.2",
72
72
  "semantic-release": "24.1.2",
73
73
  "tap": "18.7.2",
74
- "typescript": "5.6.3"
74
+ "typescript": "5.6.3",
75
+ "why-is-node-running": "3.2.1"
75
76
  }
76
77
  }