@podium/client 4.5.30 → 4.5.32
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 +14 -0
- package/lib/resolver.content.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [4.5.32](https://github.com/podium-lib/client/compare/v4.5.31...v4.5.32) (2023-09-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @metrics/client to v2.5.1 ([c7f6b5b](https://github.com/podium-lib/client/commit/c7f6b5b1f22f700e17b86b031412955a77fdbc07))
|
|
7
|
+
|
|
8
|
+
## [4.5.31](https://github.com/podium-lib/client/compare/v4.5.30...v4.5.31) (2023-05-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Replace .abort() with .destroy() ([a41f44a](https://github.com/podium-lib/client/commit/a41f44a6c4aff7aec8201d05ce220dbdbb648cfd))
|
|
14
|
+
|
|
1
15
|
## [4.5.30](https://github.com/podium-lib/client/compare/v4.5.29...v4.5.30) (2023-02-15)
|
|
2
16
|
|
|
3
17
|
|
package/lib/resolver.content.js
CHANGED
|
@@ -209,7 +209,7 @@ module.exports = class PodletClientContentResolver {
|
|
|
209
209
|
this.log.info(
|
|
210
210
|
`podlet version number in header differs from cached version number - aborting request to remote resource for content - resource: ${outgoing.name} - url: ${outgoing.contentUri}`,
|
|
211
211
|
);
|
|
212
|
-
r.
|
|
212
|
+
r.destroy();
|
|
213
213
|
outgoing.status = 'stale';
|
|
214
214
|
return;
|
|
215
215
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podium/client",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.32",
|
|
4
4
|
"main": "lib/client.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@hapi/boom": "^9.0.0",
|
|
39
|
-
"@metrics/client": "2.5.
|
|
39
|
+
"@metrics/client": "2.5.1",
|
|
40
40
|
"@podium/schemas": "4.1.34",
|
|
41
41
|
"@podium/utils": "4.4.39",
|
|
42
42
|
"abslog": "2.4.0",
|
|
@@ -48,25 +48,25 @@
|
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@podium/test-utils": "2.5.2",
|
|
51
|
-
"@semantic-release/changelog": "6.0.
|
|
51
|
+
"@semantic-release/changelog": "6.0.3",
|
|
52
52
|
"@semantic-release/commit-analyzer": "9.0.2",
|
|
53
53
|
"@semantic-release/git": "10.0.1",
|
|
54
|
-
"@semantic-release/github": "8.0
|
|
54
|
+
"@semantic-release/github": "8.1.0",
|
|
55
55
|
"@semantic-release/npm": "8.0.3",
|
|
56
56
|
"@semantic-release/release-notes-generator": "10.0.3",
|
|
57
57
|
"@sinonjs/fake-timers": "9.1.2",
|
|
58
58
|
"benchmark": "2.1.4",
|
|
59
59
|
"eslint": "7.32.0",
|
|
60
60
|
"eslint-config-airbnb-base": "14.2.1",
|
|
61
|
-
"eslint-config-prettier": "8.
|
|
62
|
-
"eslint-plugin-import": "2.
|
|
61
|
+
"eslint-config-prettier": "8.10.0",
|
|
62
|
+
"eslint-plugin-import": "2.28.1",
|
|
63
63
|
"eslint-plugin-prettier": "3.4.1",
|
|
64
64
|
"express": "4.18.2",
|
|
65
65
|
"get-stream": "6.0.1",
|
|
66
66
|
"http-proxy": "1.18.1",
|
|
67
67
|
"is-stream": "2.0.1",
|
|
68
|
-
"prettier": "2.8.
|
|
68
|
+
"prettier": "2.8.8",
|
|
69
69
|
"semantic-release": "18.0.1",
|
|
70
|
-
"tap": "16.3.
|
|
70
|
+
"tap": "16.3.8"
|
|
71
71
|
}
|
|
72
72
|
}
|