@podium/client 5.3.4 → 5.3.6

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,17 @@
1
+ ## [5.3.6](https://github.com/podium-lib/client/compare/v5.3.5...v5.3.6) (2025-07-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** remove clonedeep dependency ([#471](https://github.com/podium-lib/client/issues/471)) ([d77e266](https://github.com/podium-lib/client/commit/d77e26656010d417c0b3e00ca1649ae094122246))
7
+
8
+ ## [5.3.5](https://github.com/podium-lib/client/compare/v5.3.4...v5.3.5) (2025-06-27)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency @metrics/client to v2.5.5 ([#469](https://github.com/podium-lib/client/issues/469)) ([638033b](https://github.com/podium-lib/client/commit/638033b30f74acd06b104212b00b174d57a64f62))
14
+
1
15
  ## [5.3.4](https://github.com/podium-lib/client/compare/v5.3.3...v5.3.4) (2025-06-24)
2
16
 
3
17
 
@@ -1,4 +1,3 @@
1
- import clonedeep from 'lodash.clonedeep';
2
1
  import abslog from 'abslog';
3
2
  import assert from 'assert';
4
3
 
@@ -36,7 +35,7 @@ export default class PodletClientCacheResolver {
36
35
  if (outgoing.status !== 'stale') {
37
36
  const cached = this.#registry.get(outgoing.name);
38
37
  if (cached) {
39
- outgoing.manifest = clonedeep(cached);
38
+ outgoing.manifest = { ...cached };
40
39
  outgoing.status = 'cached';
41
40
  this.#log.debug(
42
41
  `loaded manifest from cache - resource: ${outgoing.name}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podium/client",
3
- "version": "5.3.4",
3
+ "version": "5.3.6",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -92,12 +92,11 @@
92
92
  },
93
93
  "dependencies": {
94
94
  "@hapi/boom": "10.0.1",
95
- "@metrics/client": "2.5.4",
95
+ "@metrics/client": "2.5.5",
96
96
  "@podium/schemas": "5.1.0",
97
97
  "@podium/utils": "5.5.0",
98
98
  "abslog": "2.4.4",
99
99
  "http-cache-semantics": "^4.0.3",
100
- "lodash.clonedeep": "^4.5.0",
101
100
  "ttl-mem-cache": "4.1.0",
102
101
  "undici": "6.21.3"
103
102
  },
@@ -105,7 +104,7 @@
105
104
  "@podium/eslint-config": "1.0.14",
106
105
  "@podium/podlet": "5.2.4",
107
106
  "@podium/semantic-release-config": "2.0.0",
108
- "@podium/test-utils": "3.1.0-next.5",
107
+ "@podium/test-utils": "3.0.18",
109
108
  "@podium/typescript-config": "1.0.0",
110
109
  "@semantic-release/changelog": "6.0.3",
111
110
  "@semantic-release/git": "10.0.1",
@@ -113,7 +112,7 @@
113
112
  "@semantic-release/npm": "12.0.1",
114
113
  "@semantic-release/release-notes-generator": "13.0.0",
115
114
  "@sinonjs/fake-timers": "11.3.1",
116
- "@types/readable-stream": "4.0.20",
115
+ "@types/readable-stream": "4.0.21",
117
116
  "benchmark": "2.1.4",
118
117
  "eslint": "9.28.0",
119
118
  "eslint-config-prettier": "9.1.0",