get-random-values 2.1.0 → 3.0.0
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 +11 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [3.0.0](https://github.com/kenany/get-random-values/compare/2.1.0...3.0.0) (2023-09-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* Node.js v14 and v16 are no longer supported.
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* drop Node.js v14 and v16 ([329c91b](https://github.com/kenany/get-random-values/commit/329c91b1a7b3b2e937545bf0a9c37d7df6b4f3e7))
|
|
11
|
+
|
|
1
12
|
## [2.1.0](https://github.com/KenanY/get-random-values/compare/2.0.0...2.1.0) (2023-03-26)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "get-random-values",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "`window.crypto.getRandomValues` with fallback to Node.js crypto",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"crypto"
|
|
7
7
|
],
|
|
8
|
-
"repository": "
|
|
8
|
+
"repository": "github:kenany/get-random-values",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"author": "Kenan Yildirim <kenan@kenany.me> (https://kenany.me/)",
|
|
11
11
|
"main": "index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"test": "test"
|
|
21
21
|
},
|
|
22
22
|
"engines": {
|
|
23
|
-
"node": "
|
|
23
|
+
"node": "18 || >=20"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"clean": "rimraf --glob test/**/*.d.ts *.d.ts",
|
|
@@ -38,21 +38,21 @@
|
|
|
38
38
|
"global": "^4.4.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@kenan/eslint-config": "^
|
|
42
|
-
"@semantic-release/changelog": "^6.0.
|
|
41
|
+
"@kenan/eslint-config": "^11.0.1",
|
|
42
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
43
43
|
"@semantic-release/git": "^10.0.1",
|
|
44
|
-
"@tsconfig/
|
|
44
|
+
"@tsconfig/node18": "^18.2.2",
|
|
45
45
|
"@types/lodash.isfunction": "^3.0.7",
|
|
46
|
-
"@types/tape": "^
|
|
47
|
-
"conventional-changelog-conventionalcommits": "^
|
|
48
|
-
"eslint": "^8.
|
|
46
|
+
"@types/tape": "^5.6.1",
|
|
47
|
+
"conventional-changelog-conventionalcommits": "^7.0.2",
|
|
48
|
+
"eslint": "^8.49.0",
|
|
49
49
|
"is-browser": "^2.1.0",
|
|
50
50
|
"lodash.isfunction": "^3.0.9",
|
|
51
|
-
"rimraf": "^
|
|
52
|
-
"semantic-release": "^
|
|
53
|
-
"tape": "^5.6.
|
|
54
|
-
"type-coverage": "^2.
|
|
55
|
-
"typescript": "^
|
|
51
|
+
"rimraf": "^5.0.1",
|
|
52
|
+
"semantic-release": "^22.0.1",
|
|
53
|
+
"tape": "^5.6.6",
|
|
54
|
+
"type-coverage": "^2.26.3",
|
|
55
|
+
"typescript": "^5.2.2"
|
|
56
56
|
},
|
|
57
57
|
"browser": {
|
|
58
58
|
"crypto": false
|