From b5f8ca855fedd5066fb559b9ec6ff2938bf9cfd1 Mon Sep 17 00:00:00 2001 From: Yuri Golobokov Date: Wed, 28 May 2025 13:42:38 -0700 Subject: [PATCH 1/3] chore: add node 16 to ci.yaml (#189) --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a7ca15f..6285f65 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [10, 12, 14] + node: [10, 12, 14, 16] steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 From 8cc212f908f1fe5b26d4deece3296335e633e3e5 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 28 May 2025 22:44:40 +0200 Subject: [PATCH 2/3] Fix missing runtime dependency on `protobufjs` (#187) This dependency is used at runtime in the `generated/` files, but it's not explicitly specified. This can break consumption with strict package managers like pnpm, or Yarn PnP. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8943fbe..9ff54d9 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,8 @@ "node": ">=12" }, "dependencies": { - "@grpc/grpc-js": "^1.7.0" + "@grpc/grpc-js": "^1.7.0", + "protobufjs": "7.4.0" }, "devDependencies": { "@grpc/proto-loader": "^0.7.0", From 5820318dc7ff276e42f00b67b90d3c0cd8bfa64b Mon Sep 17 00:00:00 2001 From: Yuri Golobokov Date: Tue, 3 Jun 2025 14:54:39 -0700 Subject: [PATCH 3/3] chore(master): release 1.0.2 (#191) --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 694b711..c18424e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.2](https://github.com/GoogleCloudPlatform/grpc-gcp-node/compare/v1.0.1...v1.0.2) (2025-05-30) + + +### Bug Fixes + +* Fix missing runtime dependency on protobufjs ([8cc212f](https://github.com/GoogleCloudPlatform/grpc-gcp-node/commit/8cc212f908f1fe5b26d4deece3296335e633e3e5)) + ## [1.0.1](https://github.com/GoogleCloudPlatform/grpc-gcp-node/compare/v1.0.0...v1.0.1) (2023-01-23) diff --git a/package.json b/package.json index 9ff54d9..89e0474 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "grpc-gcp", - "version": "1.0.1", + "version": "1.0.2", "description": "Extension for supporting Google Cloud Platform specific features for gRPC.", "main": "build/src/index.js", "scripts": {