@google-cloud/pubsub 4.0.0 → 4.0.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/CHANGELOG.md +10 -0
- package/package.json +10 -11
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/@google-cloud/pubsub?activeTab=versions
|
|
6
6
|
|
|
7
|
+
## [4.0.1](https://github.com/googleapis/nodejs-pubsub/compare/v4.0.0...v4.0.1) (2023-08-11)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **deps:** Update dependency @google-cloud/paginator to v5 ([#1799](https://github.com/googleapis/nodejs-pubsub/issues/1799)) ([3195d21](https://github.com/googleapis/nodejs-pubsub/commit/3195d21bf817cf10daa86b019532c9405dc42405))
|
|
13
|
+
* **deps:** Update dependency @google-cloud/precise-date to v4 ([#1803](https://github.com/googleapis/nodejs-pubsub/issues/1803)) ([2c22d67](https://github.com/googleapis/nodejs-pubsub/commit/2c22d67b0fbaf3409101a830ee0c5be002ed6c7b))
|
|
14
|
+
* **deps:** Update dependency @google-cloud/projectify to v4 ([#1800](https://github.com/googleapis/nodejs-pubsub/issues/1800)) ([5787d56](https://github.com/googleapis/nodejs-pubsub/commit/5787d56b95d46544bf8c59fe4bc4cb374bc53d0a))
|
|
15
|
+
* **deps:** Update dependency @google-cloud/promisify to v4 ([#1798](https://github.com/googleapis/nodejs-pubsub/issues/1798)) ([093c46b](https://github.com/googleapis/nodejs-pubsub/commit/093c46bd0a4713ad9702bde03eaa5e8b0acedb28))
|
|
16
|
+
|
|
7
17
|
## [4.0.0](https://github.com/googleapis/nodejs-pubsub/compare/v3.7.3...v4.0.0) (2023-08-03)
|
|
8
18
|
|
|
9
19
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google-cloud/pubsub",
|
|
3
3
|
"description": "Cloud Pub/Sub Client Library for Node.js",
|
|
4
|
-
"version": "4.0.
|
|
4
|
+
"version": "4.0.1",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Google Inc.",
|
|
7
7
|
"engines": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"scripts": {
|
|
30
30
|
"presystem-test": "npm run compile",
|
|
31
31
|
"system-test": "mocha build/system-test --timeout 600000",
|
|
32
|
-
"samples-test": "cd samples/ && npm install && npm test && cd ../",
|
|
32
|
+
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
|
|
33
33
|
"test": "c8 mocha build/test --recursive",
|
|
34
34
|
"lint": "gts check",
|
|
35
35
|
"predocs": "npm run compile",
|
|
@@ -43,15 +43,14 @@
|
|
|
43
43
|
"docs-test": "linkinator docs",
|
|
44
44
|
"predocs-test": "npm run docs",
|
|
45
45
|
"benchwrapper": "node bin/benchwrapper.js",
|
|
46
|
-
"prelint": "
|
|
47
|
-
"precompile": "gts clean"
|
|
48
|
-
"pack": "npm pack && mv google-cloud-pubsub*.tgz samples/pubsub-current.tgz"
|
|
46
|
+
"prelint": "cd samples; npm link ../; npm install",
|
|
47
|
+
"precompile": "gts clean"
|
|
49
48
|
},
|
|
50
49
|
"dependencies": {
|
|
51
|
-
"@google-cloud/paginator": "^
|
|
52
|
-
"@google-cloud/precise-date": "^
|
|
53
|
-
"@google-cloud/projectify": "^
|
|
54
|
-
"@google-cloud/promisify": "^
|
|
50
|
+
"@google-cloud/paginator": "^5.0.0",
|
|
51
|
+
"@google-cloud/precise-date": "^4.0.0",
|
|
52
|
+
"@google-cloud/projectify": "^4.0.0",
|
|
53
|
+
"@google-cloud/promisify": "^4.0.0",
|
|
55
54
|
"@opentelemetry/api": "^1.0.0",
|
|
56
55
|
"@opentelemetry/semantic-conventions": "~1.3.0",
|
|
57
56
|
"@types/duplexify": "^3.6.0",
|
|
@@ -85,8 +84,8 @@
|
|
|
85
84
|
"gapic-tools": "^0.1.7",
|
|
86
85
|
"gts": "^5.0.0",
|
|
87
86
|
"jsdoc": "^4.0.0",
|
|
88
|
-
"jsdoc-fresh": "^
|
|
89
|
-
"jsdoc-region-tag": "^
|
|
87
|
+
"jsdoc-fresh": "^3.0.0",
|
|
88
|
+
"jsdoc-region-tag": "^3.0.0",
|
|
90
89
|
"linkinator": "^5.0.0",
|
|
91
90
|
"mocha": "^9.2.2",
|
|
92
91
|
"mv": "^2.1.1",
|