Skip to content

Commit d2f92de

Browse files
chore: release main
1 parent 113ca18 commit d2f92de

9 files changed

+59
-8
lines changed

.release-please-manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"gax": "4.6.0",
3-
"tools": "0.4.6",
4-
"logging-utils": "1.0.1"
2+
"gax": "5.0.0",
3+
"tools": "1.0.0",
4+
"logging-utils": "1.1.0"
55
}

gax/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@
44

55
[1]: https://www.npmjs.com/package/gax-nodejs?activeTab=versions
66

7+
## [5.0.0](https://github.com/googleapis/gax-nodejs/compare/google-gax-v4.6.0...google-gax-v5.0.0) (2025-03-05)
8+
9+
10+
### ⚠ BREAKING CHANGES
11+
12+
* Update `google-auth-library` to v10 ([#1702](https://github.com/googleapis/gax-nodejs/issues/1702))
13+
* migrate gax to Node 18 ([#1699](https://github.com/googleapis/gax-nodejs/issues/1699))
14+
* parse from HTTP errors and prefer that as the cannonical error code when it is provided ([#1633](https://github.com/googleapis/gax-nodejs/issues/1633))
15+
16+
### Features
17+
18+
* Add minifyJson param to request minified JSON responses when using the REST fallback ([#1632](https://github.com/googleapis/gax-nodejs/issues/1632)) ([a3fa7c7](https://github.com/googleapis/gax-nodejs/commit/a3fa7c762cb4d1cd91057fa2c01782a7d954b9f8))
19+
* Update `google-auth-library` to v10 ([#1702](https://github.com/googleapis/gax-nodejs/issues/1702)) ([43a8cb8](https://github.com/googleapis/gax-nodejs/commit/43a8cb8e753a956398b49ed2c098502634651930))
20+
21+
22+
### Bug Fixes
23+
24+
* **deps:** update dependency long to v5 ([#1680](https://github.com/googleapis/gax-nodejs/issues/1680)) ([9cd9902](https://github.com/googleapis/gax-nodejs/commit/9cd9902747180bfab4631fff6b7e06a72bb1eeed))
25+
* **docs:** update docstring for forwardEvents ([#1700](https://github.com/googleapis/gax-nodejs/issues/1700)) ([27c52a0](https://github.com/googleapis/gax-nodejs/commit/27c52a05f8210051326abb664094f26d193adec6))
26+
* enable keepAlive for HTTP requests ([#1534](https://github.com/googleapis/gax-nodejs/issues/1534)) ([a706d5a](https://github.com/googleapis/gax-nodejs/commit/a706d5a8cbe04bd93fbfd4552cab1eec5e823c83))
27+
* parse from HTTP errors and prefer that as the cannonical error code when it is provided ([#1633](https://github.com/googleapis/gax-nodejs/issues/1633)) ([e9b47fc](https://github.com/googleapis/gax-nodejs/commit/e9b47fc203b422b7b89886c070f7ff7b5fe0a6d9))
28+
29+
30+
### Miscellaneous Chores
31+
32+
* migrate gax to Node 18 ([#1699](https://github.com/googleapis/gax-nodejs/issues/1699)) ([fc3eeaa](https://github.com/googleapis/gax-nodejs/commit/fc3eeaa574e171c445e0768b06df4ed087bf1f67))
33+
734
## [4.6.0](https://github.com/googleapis/gax-nodejs/compare/google-gax-v4.5.0...google-gax-v4.6.0) (2024-12-19)
835

936

gax/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-gax",
3-
"version": "4.6.0",
3+
"version": "5.0.0",
44
"description": "Google API Extensions",
55
"main": "build/src/index.js",
66
"types": "build/src/index.d.ts",

gax/samples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"*.js"
1515
],
1616
"dependencies": {
17-
"google-gax": "^4.6.0"
17+
"google-gax": "^5.0.0"
1818
},
1919
"devDependencies": {
2020
"c8": "^9.0.0",

logging-utils/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.1.0](https://github.com/googleapis/gax-nodejs/compare/google-logging-utils-v1.0.1...google-logging-utils-v1.1.0) (2025-03-05)
4+
5+
6+
### Features
7+
8+
* allow users to turn on logging without the environment variable ([#1704](https://github.com/googleapis/gax-nodejs/issues/1704)) ([5ef89de](https://github.com/googleapis/gax-nodejs/commit/5ef89de55db98618cd6945f45287de96f34950e6))
9+
310
## [1.0.1](https://github.com/googleapis/gax-nodejs/compare/google-logging-utils-v1.0.0...google-logging-utils-v1.0.1) (2024-12-20)
411

512

logging-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-logging-utils",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "A debug logger package for other Google libraries",
55
"main": "build/src/index.js",
66
"files": [

logging-utils/samples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"node": ">=14"
2727
},
2828
"dependencies": {
29-
"google-logging-utils": "1.0.1"
29+
"google-logging-utils": "^1.1.0"
3030
},
3131
"devDependencies": {
3232
"@google-cloud/typeless-sample-bot": "^2.1.0",

tools/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [1.0.0](https://github.com/googleapis/gax-nodejs/compare/gapic-tools-v0.4.6...gapic-tools-v1.0.0) (2025-03-05)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* migrate gax to Node 18 ([#1699](https://github.com/googleapis/gax-nodejs/issues/1699))
9+
10+
### Bug Fixes
11+
12+
* bytes field should be typed as a Buffer ([#1652](https://github.com/googleapis/gax-nodejs/issues/1652)) ([a81663f](https://github.com/googleapis/gax-nodejs/commit/a81663fcdf69a42ee6335c78355b9c8cb11d6064))
13+
* protobuf export path in compileProtos ([#1708](https://github.com/googleapis/gax-nodejs/issues/1708)) ([113ca18](https://github.com/googleapis/gax-nodejs/commit/113ca18d98f7915c5af05a893d0314744e3d15e1))
14+
15+
16+
### Miscellaneous Chores
17+
18+
* migrate gax to Node 18 ([#1699](https://github.com/googleapis/gax-nodejs/issues/1699)) ([fc3eeaa](https://github.com/googleapis/gax-nodejs/commit/fc3eeaa574e171c445e0768b06df4ed087bf1f67))
19+
320
## [0.4.6](https://github.com/googleapis/gax-nodejs/compare/gapic-tools-v0.4.5...gapic-tools-v0.4.6) (2024-08-28)
421

522

tools/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gapic-tools",
3-
"version": "0.4.6",
3+
"version": "1.0.0",
44
"description": "compiles, updates, and minifies protos",
55
"main": "build/src/compileProtos.js",
66
"files": [

0 commit comments

Comments
 (0)