balena-auth 4.1.0 → 4.1.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.
- package/package.json +22 -12
- package/CHANGELOG.md +0 -75
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-auth",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "Balena session authentication utilities",
|
|
5
5
|
"main": "build/auth.js",
|
|
6
6
|
"types": "build/auth.d.ts",
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
"build": "tsc",
|
|
34
34
|
"pretest": "npm run build && npm run lint",
|
|
35
35
|
"test": "npm run test:node && npm run test:browser",
|
|
36
|
-
"prepublish": "require-npm4-to-publish",
|
|
37
36
|
"prepack": "npm run build",
|
|
38
37
|
"prereadme": "npm run build",
|
|
39
38
|
"readme": "jsdoc2md --template doc/README.hbs build/*.js > README.md"
|
|
@@ -42,23 +41,30 @@
|
|
|
42
41
|
"license": "Apache-2.0",
|
|
43
42
|
"devDependencies": {
|
|
44
43
|
"@balena/lint": "^5.1.0",
|
|
45
|
-
"@
|
|
44
|
+
"@types/chai": "^4.3.3",
|
|
45
|
+
"@types/chai-as-promised": "^7.1.5",
|
|
46
46
|
"@types/jsonwebtoken": "^7.2.3",
|
|
47
|
-
"@types/mocha": "^
|
|
47
|
+
"@types/mocha": "^9.1.1",
|
|
48
48
|
"@types/node": "^8.10.61",
|
|
49
|
-
"balena-config-karma": "^
|
|
49
|
+
"balena-config-karma": "^4.0.0",
|
|
50
50
|
"balena-settings-client": "^4.0.0",
|
|
51
|
+
"buffer": "^5.7.1",
|
|
51
52
|
"catch-uncommitted": "^1.0.0",
|
|
53
|
+
"chai": "^4.3.6",
|
|
54
|
+
"chai-as-promised": "^7.1.1",
|
|
55
|
+
"crypto-browserify": "^3.12.0",
|
|
52
56
|
"husky": "^4.2.5",
|
|
53
57
|
"jsdoc-to-markdown": "^3.0.0",
|
|
54
58
|
"jsonwebtoken": "^7.3.0",
|
|
55
|
-
"karma": "^
|
|
56
|
-
"mocha": "^
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
+
"karma": "^5.2.3",
|
|
60
|
+
"mocha": "^10.0.0",
|
|
61
|
+
"os-browserify": "^0.3.0",
|
|
62
|
+
"process": "^0.11.10",
|
|
59
63
|
"rimraf": "^2.6.1",
|
|
60
|
-
"
|
|
61
|
-
"
|
|
64
|
+
"stream-browserify": "^3.0.0",
|
|
65
|
+
"ts-node": "^10.9.1",
|
|
66
|
+
"typescript": "^4.8.3",
|
|
67
|
+
"util": "^0.12.4"
|
|
62
68
|
},
|
|
63
69
|
"dependencies": {
|
|
64
70
|
"@types/jwt-decode": "^2.2.1",
|
|
@@ -73,6 +79,10 @@
|
|
|
73
79
|
}
|
|
74
80
|
},
|
|
75
81
|
"engines": {
|
|
76
|
-
"node": ">=10.17.0"
|
|
82
|
+
"node": ">=10.17.0",
|
|
83
|
+
"npm": ">=5.0.0"
|
|
84
|
+
},
|
|
85
|
+
"versionist": {
|
|
86
|
+
"publishedAt": "2022-09-22T21:55:29.321Z"
|
|
77
87
|
}
|
|
78
88
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file
|
|
4
|
-
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
|
-
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
|
-
|
|
7
|
-
# v4.1.0
|
|
8
|
-
## (2020-11-11)
|
|
9
|
-
|
|
10
|
-
* Update balena-settings-storage from 6.0.0 to 7.0.0 [josecoelho]
|
|
11
|
-
|
|
12
|
-
# v4.0.2
|
|
13
|
-
## (2020-07-13)
|
|
14
|
-
|
|
15
|
-
* Add .versionbot/CHANGELOG.yml for nested changelogs [Pagan Gazzard]
|
|
16
|
-
|
|
17
|
-
# v4.0.1
|
|
18
|
-
## (2020-07-03)
|
|
19
|
-
|
|
20
|
-
* Explicitly add tslib dependency [Pagan Gazzard]
|
|
21
|
-
|
|
22
|
-
# v4.0.0
|
|
23
|
-
## (2020-07-02)
|
|
24
|
-
|
|
25
|
-
* Specify node 10+ [Pagan Gazzard]
|
|
26
|
-
* Switch to native promises [Pagan Gazzard]
|
|
27
|
-
* Update target to es2015 [Pagan Gazzard]
|
|
28
|
-
* Update to balena-settings-storage 6.x [Pagan Gazzard]
|
|
29
|
-
|
|
30
|
-
# v3.1.1
|
|
31
|
-
## (2020-07-02)
|
|
32
|
-
|
|
33
|
-
* Switch to @balena/lint for linting [Pagan Gazzard]
|
|
34
|
-
|
|
35
|
-
# v3.1.0
|
|
36
|
-
## (2020-06-01)
|
|
37
|
-
|
|
38
|
-
* Generate and use type declarations [Pagan Gazzard]
|
|
39
|
-
|
|
40
|
-
## 3.0.1 - 2020-01-20
|
|
41
|
-
|
|
42
|
-
* Update dependencies [Pagan Gazzard]
|
|
43
|
-
|
|
44
|
-
## v3.0.0 - 2018-10-17
|
|
45
|
-
|
|
46
|
-
* Rename everything 'resin' to 'balena' [Tim Perry]
|
|
47
|
-
|
|
48
|
-
## v2.0.1 - 2018-09-17
|
|
49
|
-
|
|
50
|
-
* Use resinCI for publishing to npm [Thodoris Greasidis]
|
|
51
|
-
* Pin bluebird typings & prettier versions to fix the tests [Thodoris Greasidis]
|
|
52
|
-
|
|
53
|
-
## v2.0.0 - 2017-10-16
|
|
54
|
-
|
|
55
|
-
* Expose ResinAuth instead of ResinAuth.ResinAuth #12 [MoranF]
|
|
56
|
-
|
|
57
|
-
## v1.0.3 - 2017-10-10
|
|
58
|
-
|
|
59
|
-
* Keep build output after tests, so we can deploy it #10 [Tim Perry]
|
|
60
|
-
|
|
61
|
-
## v1.0.2 - 2017-10-10
|
|
62
|
-
|
|
63
|
-
* Ignore & remove all built files, but publish them once generated #9 [Ariel Flesler]
|
|
64
|
-
|
|
65
|
-
## v1.0.1 - 2017-10-09
|
|
66
|
-
|
|
67
|
-
* Change project repo to resin-io-modules #7 [Ariel Flesler]
|
|
68
|
-
|
|
69
|
-
## v1.0.0 - 2017-10-04
|
|
70
|
-
|
|
71
|
-
* Support auth with both JWTs and API Keys #2 [Ariel Flesler]
|
|
72
|
-
|
|
73
|
-
## v0.9.0 - 2017-09-21
|
|
74
|
-
|
|
75
|
-
* Add the basic project files to the repo [Ariel Flesler]
|