balena-request 11.5.7 → 11.5.8
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/.versionbot/CHANGELOG.yml +15 -1
- package/CHANGELOG.md +4 -0
- package/karma.conf.js +11 -13
- package/package.json +2 -2
- package/source.tar +0 -0
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Fix overriding the whole webpack resolve section of karma tests
|
|
3
|
+
hash: c5823879e00d5089c5fda7be05253be804b41574
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
Signed-off-by: Thodoris Greasidis <thodoris@balena.io>
|
|
9
|
+
signed-off-by: Thodoris Greasidis <thodoris@balena.io>
|
|
10
|
+
author: Thodoris Greasidis
|
|
11
|
+
nested: []
|
|
12
|
+
version: 11.5.8
|
|
13
|
+
title: ""
|
|
14
|
+
date: 2022-09-22T22:00:54.489Z
|
|
1
15
|
- commits:
|
|
2
16
|
- subject: Replace balenaCI with flowzone
|
|
3
17
|
hash: 357d06a0ecbc122edca6c235afbff86dfafbade1
|
|
@@ -29,7 +43,7 @@
|
|
|
29
43
|
nested: []
|
|
30
44
|
version: 11.5.7
|
|
31
45
|
title: ""
|
|
32
|
-
date: 2022-09-
|
|
46
|
+
date: 2022-09-22T11:56:28.774Z
|
|
33
47
|
- commits:
|
|
34
48
|
- subject: Fix the typings to properly mark the auth parameter as optional
|
|
35
49
|
hash: e809a9b4dcf3deb5f693e2f734fb7e056498372e
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## 11.5.8 - 2022-09-22
|
|
8
|
+
|
|
9
|
+
* Fix overriding the whole webpack resolve section of karma tests [Thodoris Greasidis]
|
|
10
|
+
|
|
7
11
|
## 11.5.7 - 2022-09-22
|
|
8
12
|
|
|
9
13
|
* Replace balenaCI with flowzone [Thodoris Greasidis]
|
package/karma.conf.js
CHANGED
|
@@ -6,19 +6,17 @@ module.exports = (config) => {
|
|
|
6
6
|
karmaConfig.logLevel = config.LOG_INFO;
|
|
7
7
|
// polyfill required for mockttp & balena-request
|
|
8
8
|
// the next major might not require them any more
|
|
9
|
-
karmaConfig.webpack.resolve = {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
zlib: require.resolve('browserify-zlib'),
|
|
21
|
-
},
|
|
9
|
+
karmaConfig.webpack.resolve.fallback = {
|
|
10
|
+
assert: require.resolve('assert'),
|
|
11
|
+
constants: false,
|
|
12
|
+
crypto: false,
|
|
13
|
+
fs: false,
|
|
14
|
+
os: false,
|
|
15
|
+
path: false,
|
|
16
|
+
stream: require.resolve('stream-browserify'),
|
|
17
|
+
url: false,
|
|
18
|
+
util: false,
|
|
19
|
+
zlib: require.resolve('browserify-zlib'),
|
|
22
20
|
};
|
|
23
21
|
karmaConfig.webpack.plugins = [
|
|
24
22
|
new getKarmaConfig.webpack.ProvidePlugin({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-request",
|
|
3
|
-
"version": "11.5.
|
|
3
|
+
"version": "11.5.8",
|
|
4
4
|
"description": "Balena HTTP client",
|
|
5
5
|
"main": "build/request.js",
|
|
6
6
|
"types": "build/request.d.ts",
|
|
@@ -79,6 +79,6 @@
|
|
|
79
79
|
"balena-auth": "^4.0.0"
|
|
80
80
|
},
|
|
81
81
|
"versionist": {
|
|
82
|
-
"publishedAt": "2022-09-
|
|
82
|
+
"publishedAt": "2022-09-22T22:00:54.619Z"
|
|
83
83
|
}
|
|
84
84
|
}
|
package/source.tar
CHANGED
|
Binary file
|