@podium/client 4.5.22 → 4.5.24
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 +2 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [4.5.24](https://github.com/podium-lib/client/compare/v4.5.23...v4.5.24) (2022-10-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Set log level for network errors to debug when throwable ([#298](https://github.com/podium-lib/client/issues/298)) ([3ba5d67](https://github.com/podium-lib/client/commit/3ba5d67192f417b4627d9f411a1fe4ffd2c98775))
|
|
7
|
+
|
|
8
|
+
## [4.5.23](https://github.com/podium-lib/client/compare/v4.5.22...v4.5.23) (2022-09-01)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Lower log level when throwable is true ([#291](https://github.com/podium-lib/client/issues/291)) ([c0d779b](https://github.com/podium-lib/client/commit/c0d779b3e22b671e5f7c6496c504b38cd9da5125))
|
|
14
|
+
|
|
1
15
|
## [4.5.22](https://github.com/podium-lib/client/compare/v4.5.21...v4.5.22) (2022-03-23)
|
|
2
16
|
|
|
3
17
|
|
package/lib/resolver.content.js
CHANGED
|
@@ -153,7 +153,7 @@ module.exports = class PodletClientContentResolver {
|
|
|
153
153
|
},
|
|
154
154
|
});
|
|
155
155
|
|
|
156
|
-
this.log.
|
|
156
|
+
this.log.debug(
|
|
157
157
|
`remote resource responded with non 200 http status code for content - code: ${response.statusCode} - resource: ${outgoing.name} - url: ${outgoing.contentUri}`,
|
|
158
158
|
);
|
|
159
159
|
|
|
@@ -250,7 +250,7 @@ module.exports = class PodletClientContentResolver {
|
|
|
250
250
|
},
|
|
251
251
|
});
|
|
252
252
|
|
|
253
|
-
this.log.
|
|
253
|
+
this.log.debug(
|
|
254
254
|
`could not create network connection to remote resource when trying to request content - resource: ${outgoing.name} - url: ${outgoing.contentUri}`,
|
|
255
255
|
);
|
|
256
256
|
reject(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podium/client",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.24",
|
|
4
4
|
"main": "lib/client.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -47,26 +47,26 @@
|
|
|
47
47
|
"ttl-mem-cache": "4.1.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@podium/test-utils": "2.
|
|
50
|
+
"@podium/test-utils": "2.5.2",
|
|
51
51
|
"@semantic-release/changelog": "6.0.1",
|
|
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.0.6",
|
|
55
55
|
"@semantic-release/npm": "8.0.3",
|
|
56
56
|
"@semantic-release/release-notes-generator": "10.0.3",
|
|
57
|
-
"@sinonjs/fake-timers": "9.1.
|
|
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.5.0",
|
|
62
|
+
"eslint-plugin-import": "2.26.0",
|
|
63
63
|
"eslint-plugin-prettier": "3.4.1",
|
|
64
|
-
"express": "4.
|
|
64
|
+
"express": "4.18.1",
|
|
65
65
|
"get-stream": "6.0.1",
|
|
66
66
|
"http-proxy": "1.18.1",
|
|
67
67
|
"is-stream": "2.0.1",
|
|
68
|
-
"prettier": "2.
|
|
68
|
+
"prettier": "2.7.1",
|
|
69
69
|
"semantic-release": "18.0.1",
|
|
70
|
-
"tap": "
|
|
70
|
+
"tap": "16.3.0"
|
|
71
71
|
}
|
|
72
72
|
}
|