@google-cloud/promisify 2.0.4 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +17 -17
  3. package/package.json +7 -7
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
+ ## [3.0.0](https://github.com/googleapis/nodejs-promisify/compare/v2.0.4...v3.0.0) (2022-05-03)
8
+
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+
12
+ * drop node 10 from engines list, update typescript to 4.6.3 (#300)
13
+
14
+ ### Build System
15
+
16
+ * drop node 10 from engines list, update typescript to 4.6.3 ([#300](https://github.com/googleapis/nodejs-promisify/issues/300)) ([fed2f14](https://github.com/googleapis/nodejs-promisify/commit/fed2f145a5256c939eb66b85a5c7c48332b8841d))
17
+
7
18
  ### [2.0.4](https://www.github.com/googleapis/nodejs-promisify/compare/v2.0.3...v2.0.4) (2021-09-09)
8
19
 
9
20
 
package/README.md CHANGED
@@ -4,9 +4,8 @@
4
4
 
5
5
  # [Google Cloud Common Promisify: Node.js Client](https://github.com/googleapis/nodejs-promisify)
6
6
 
7
- [![release level](https://img.shields.io/badge/release%20level-general%20availability%20%28GA%29-brightgreen.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
7
+ [![release level](https://img.shields.io/badge/release%20level-stable-brightgreen.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
8
8
  [![npm version](https://img.shields.io/npm/v/@google-cloud/promisify.svg)](https://www.npmjs.org/package/@google-cloud/promisify)
9
- [![codecov](https://img.shields.io/codecov/c/github/googleapis/nodejs-promisify/main.svg?style=flat)](https://codecov.io/gh/googleapis/nodejs-promisify)
10
9
 
11
10
 
12
11
 
@@ -96,37 +95,38 @@ also contains samples.
96
95
  Our client libraries follow the [Node.js release schedule](https://nodejs.org/en/about/releases/).
97
96
  Libraries are compatible with all current _active_ and _maintenance_ versions of
98
97
  Node.js.
98
+ If you are using an end-of-life version of Node.js, we recommend that you update
99
+ as soon as possible to an actively supported LTS version.
99
100
 
100
- Client libraries targeting some end-of-life versions of Node.js are available, and
101
- can be installed via npm [dist-tags](https://docs.npmjs.com/cli/dist-tag).
102
- The dist-tags follow the naming convention `legacy-(version)`.
103
-
104
- _Legacy Node.js versions are supported as a best effort:_
105
-
106
- * Legacy versions will not be tested in continuous integration.
107
- * Some security patches may not be able to be backported.
108
- * Dependencies will not be kept up-to-date, and features will not be backported.
101
+ Google's client libraries support legacy versions of Node.js runtimes on a
102
+ best-efforts basis with the following warnings:
109
103
 
110
- #### Legacy tags available
104
+ * Legacy versions are not tested in continuous integration.
105
+ * Some security patches and features cannot be backported.
106
+ * Dependencies cannot be kept up-to-date.
111
107
 
112
- * `legacy-8`: install client libraries from this dist-tag for versions
113
- compatible with Node.js 8.
108
+ Client libraries targeting some end-of-life versions of Node.js are available, and
109
+ can be installed through npm [dist-tags](https://docs.npmjs.com/cli/dist-tag).
110
+ The dist-tags follow the naming convention `legacy-(version)`.
111
+ For example, `npm install @google-cloud/promisify@legacy-8` installs client libraries
112
+ for versions compatible with Node.js 8.
114
113
 
115
114
  ## Versioning
116
115
 
117
116
  This library follows [Semantic Versioning](http://semver.org/).
118
117
 
119
118
 
120
- This library is considered to be **General Availability (GA)**. This means it
121
- is stable; the code surface will not change in backwards-incompatible ways
119
+
120
+ This library is considered to be **stable**. The code surface will not change in backwards-incompatible ways
122
121
  unless absolutely necessary (e.g. because of critical security issues) or with
123
- an extensive deprecation period. Issues and requests against **GA** libraries
122
+ an extensive deprecation period. Issues and requests against **stable** libraries
124
123
  are addressed with the highest priority.
125
124
 
126
125
 
127
126
 
128
127
 
129
128
 
129
+
130
130
  More Information: [Google Cloud Platform Launch Stages][launch_stages]
131
131
 
132
132
  [launch_stages]: https://cloud.google.com/terms/launch-stages
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google-cloud/promisify",
3
- "version": "2.0.4",
3
+ "version": "3.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",
@@ -31,20 +31,20 @@
31
31
  "license": "Apache-2.0",
32
32
  "devDependencies": {
33
33
  "@compodoc/compodoc": "^1.1.9",
34
- "@types/mocha": "^8.0.0",
35
- "@types/node": "^14.0.0",
34
+ "@types/mocha": "^9.0.0",
35
+ "@types/node": "^17.0.25",
36
36
  "@types/sinon": "^10.0.0",
37
37
  "c8": "^7.0.0",
38
38
  "chai": "^4.2.0",
39
39
  "codecov": "^3.0.4",
40
- "gts": "^2.0.0",
40
+ "gts": "^3.1.0",
41
41
  "hard-rejection": "^2.1.0",
42
42
  "linkinator": "^2.0.0",
43
43
  "mocha": "^8.0.0",
44
- "sinon": "^11.0.0",
45
- "typescript": "^3.8.3"
44
+ "sinon": "^13.0.0",
45
+ "typescript": "^4.6.3"
46
46
  },
47
47
  "engines": {
48
- "node": ">=10"
48
+ "node": ">=12"
49
49
  }
50
50
  }