diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a49f29..3476cf7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: cache: "npm" diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml index c7c8e47..1db6484 100644 --- a/.github/workflows/pr_title.yml +++ b/.github/workflows/pr_title.yml @@ -14,7 +14,7 @@ jobs: steps: # Please look up the latest version from # https://github.com/amannn/action-semantic-pull-request/releases - - uses: amannn/action-semantic-pull-request@v5 + - uses: amannn/action-semantic-pull-request@v6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 97021c3..ff4aeb3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: name: Publish to npm runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: node-version: "22" diff --git a/.github/workflows/regen.yml b/.github/workflows/regen.yml index bb4b07d..609935c 100644 --- a/.github/workflows/regen.yml +++ b/.github/workflows/regen.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: cache: "npm" diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d1b9552..b7d91ce 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.36" + ".": "0.0.37" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d2e822..e85a011 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.37](https://github.com/cloudquery/plugin-pb-javascript/compare/v0.0.36...v0.0.37) (2025-09-01) + + +### Bug Fixes + +* **deps:** Update dependency typescript to v5.9.2 ([#105](https://github.com/cloudquery/plugin-pb-javascript/issues/105)) ([0d066d7](https://github.com/cloudquery/plugin-pb-javascript/commit/0d066d75fde046ddcb50b936461e0f2792f20bb4)) + ## [0.0.36](https://github.com/cloudquery/plugin-pb-javascript/compare/v0.0.35...v0.0.36) (2025-07-01) diff --git a/package-lock.json b/package-lock.json index 4433f63..286bee5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "@cloudquery/plugin-pb-javascript", - "version": "0.0.36", + "version": "0.0.37", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@cloudquery/plugin-pb-javascript", - "version": "0.0.36", + "version": "0.0.37", "license": "MPL-2.0", "dependencies": { - "google-protobuf": "^3.21.2" + "google-protobuf": "^4.0.0" }, "devDependencies": { "@grpc/grpc-js": "^1.9.0", @@ -434,9 +434,9 @@ } }, "node_modules/google-protobuf": { - "version": "3.21.4", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.4.tgz", - "integrity": "sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-4.0.0.tgz", + "integrity": "sha512-b8wmenhUMf2WNL+xIJ/slvD/hEE6V3nRnG86O2bzkBrMweM9gnqZE1dfXlDjibY3aXJXDNbAHepevYyQ7qWKsQ==", "license": "(BSD-3-Clause AND Apache-2.0)" }, "node_modules/grpc-tools": { @@ -864,9 +864,9 @@ "dev": true }, "node_modules/typescript": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", - "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", "dev": true, "license": "Apache-2.0", "bin": { diff --git a/package.json b/package.json index 7a31156..8b16f64 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cloudquery/plugin-pb-javascript", - "version": "0.0.36", + "version": "0.0.37", "files": [ "dist" ], @@ -47,6 +47,6 @@ }, "main": "dist/index.js", "dependencies": { - "google-protobuf": "^3.21.2" + "google-protobuf": "^4.0.0" } }