@google-cloud/promisify 3.0.1 → 4.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/README.md +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/nodejs-promisify?activeTab=versions
|
|
6
6
|
|
|
7
|
+
## [4.0.0](https://github.com/googleapis/nodejs-promisify/compare/v3.0.1...v4.0.0) (2023-08-08)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
|
|
12
|
+
* upgrade to Node 14 ([#325](https://github.com/googleapis/nodejs-promisify/issues/325))
|
|
13
|
+
|
|
14
|
+
### Miscellaneous Chores
|
|
15
|
+
|
|
16
|
+
* Upgrade to Node 14 ([#325](https://github.com/googleapis/nodejs-promisify/issues/325)) ([57d02c1](https://github.com/googleapis/nodejs-promisify/commit/57d02c1c23c65d63131bb99c07919ff80e5604cd))
|
|
17
|
+
|
|
7
18
|
## [3.0.1](https://github.com/googleapis/nodejs-promisify/compare/v3.0.0...v3.0.1) (2022-08-23)
|
|
8
19
|
|
|
9
20
|
|
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ also contains samples.
|
|
|
92
92
|
|
|
93
93
|
## Supported Node.js Versions
|
|
94
94
|
|
|
95
|
-
Our client libraries follow the [Node.js release schedule](https://
|
|
95
|
+
Our client libraries follow the [Node.js release schedule](https://github.com/nodejs/release#release-schedule).
|
|
96
96
|
Libraries are compatible with all current _active_ and _maintenance_ versions of
|
|
97
97
|
Node.js.
|
|
98
98
|
If you are using an end-of-life version of Node.js, we recommend that you update
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google-cloud/promisify",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "A simple utility for promisifying functions and classes.",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"types": "build/src/index.d.ts",
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@compodoc/compodoc": "^1.1.9",
|
|
34
34
|
"@types/mocha": "^9.0.0",
|
|
35
|
-
"@types/node": "^
|
|
35
|
+
"@types/node": "^20.4.8",
|
|
36
36
|
"@types/sinon": "^10.0.0",
|
|
37
|
-
"c8": "^
|
|
37
|
+
"c8": "^8.0.1",
|
|
38
38
|
"chai": "^4.2.0",
|
|
39
39
|
"codecov": "^3.0.4",
|
|
40
|
-
"gts": "^
|
|
40
|
+
"gts": "^5.0.0",
|
|
41
41
|
"hard-rejection": "^2.1.0",
|
|
42
|
-
"linkinator": "^
|
|
42
|
+
"linkinator": "^5.0.1",
|
|
43
43
|
"mocha": "^8.0.0",
|
|
44
|
-
"sinon": "^
|
|
45
|
-
"typescript": "^
|
|
44
|
+
"sinon": "^15.0.0",
|
|
45
|
+
"typescript": "^5.1.6"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
48
|
+
"node": ">=14"
|
|
49
49
|
}
|
|
50
50
|
}
|