diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b7ac09362..883082c0b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -60,16 +60,15 @@ jobs: node-version: 18 - run: npm install - run: npm run lint - # TODO(https://github.com/googleapis/nodejs-datastore/issues/1424) - # docs: - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v4 - # - uses: actions/setup-node@v4 - # with: - # node-version: 18 - # - run: npm install - # - run: npm run docs - # - uses: JustinBeckwith/linkinator-action@v1 - # with: - # paths: docs/ + docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + - run: npm install + - run: npm run docs + - uses: JustinBeckwith/linkinator-action@v1 + with: + paths: docs/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 39d472436..ed8130bfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ [1]: https://www.npmjs.com/package/@google-cloud/datastore?activeTab=versions +## [10.1.0](https://github.com/googleapis/nodejs-datastore/compare/v10.0.1...v10.1.0) (2025-11-20) + + +### Features + +* Add datastore mode data transforms ([#1369](https://github.com/googleapis/nodejs-datastore/issues/1369)) ([8ab6209](https://github.com/googleapis/nodejs-datastore/commit/8ab62090f5e59fcc78ca4b729e0d8e0a0aa9de5c)) + ## [10.0.1](https://github.com/googleapis/nodejs-datastore/compare/v10.0.0...v10.0.1) (2025-05-08) diff --git a/package.json b/package.json index 7816f9851..8e8583e2a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@google-cloud/datastore", - "version": "10.0.1", + "version": "10.1.0", "description": "Cloud Datastore Client Library for Node.js", "keywords": [ "google apis client", diff --git a/protos/protos.json b/protos/protos.json index b35941f37..71786649b 100644 --- a/protos/protos.json +++ b/protos/protos.json @@ -3102,7 +3102,14 @@ "type": "ServiceOptions", "id": 3 } - } + }, + "reserved": [ + [ + 4, + 4 + ], + "stream" + ] }, "MethodDescriptorProto": { "fields": { diff --git a/samples/package.json b/samples/package.json index f4033a807..bebb13917 100644 --- a/samples/package.json +++ b/samples/package.json @@ -14,7 +14,7 @@ "test": "mocha --timeout=600000" }, "dependencies": { - "@google-cloud/datastore": "^10.0.1", + "@google-cloud/datastore": "^10.1.0", "sinon": "^18.0.0" }, "devDependencies": {