@google-cloud/promisify 3.0.0 → 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 CHANGED
@@ -4,6 +4,24 @@
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
+
18
+ ## [3.0.1](https://github.com/googleapis/nodejs-promisify/compare/v3.0.0...v3.0.1) (2022-08-23)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * remove pip install statements ([#1546](https://github.com/googleapis/nodejs-promisify/issues/1546)) ([#310](https://github.com/googleapis/nodejs-promisify/issues/310)) ([c7c6883](https://github.com/googleapis/nodejs-promisify/commit/c7c688389de72ddc0181b19bceee2d95eacd3d96))
24
+
7
25
  ## [3.0.0](https://github.com/googleapis/nodejs-promisify/compare/v2.0.4...v3.0.0) (2022-05-03)
8
26
 
9
27
 
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://nodejs.org/en/about/releases/).
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.0.0",
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": "^17.0.25",
35
+ "@types/node": "^20.4.8",
36
36
  "@types/sinon": "^10.0.0",
37
- "c8": "^7.0.0",
37
+ "c8": "^8.0.1",
38
38
  "chai": "^4.2.0",
39
39
  "codecov": "^3.0.4",
40
- "gts": "^3.1.0",
40
+ "gts": "^5.0.0",
41
41
  "hard-rejection": "^2.1.0",
42
- "linkinator": "^2.0.0",
42
+ "linkinator": "^5.0.1",
43
43
  "mocha": "^8.0.0",
44
- "sinon": "^13.0.0",
45
- "typescript": "^4.6.3"
44
+ "sinon": "^15.0.0",
45
+ "typescript": "^5.1.6"
46
46
  },
47
47
  "engines": {
48
- "node": ">=12"
48
+ "node": ">=14"
49
49
  }
50
50
  }