Skip to content

Commit 96a4c11

Browse files
Merge branch 'main' into check-property-for-wildcard
2 parents 76639d1 + a5cc245 commit 96a4c11

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+10083
-3097
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ test/fixtures
44
build/
55
docs/
66
protos/
7+
samples/generated/

.github/.OwlBot.lock.yaml

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# Copyright 2022 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
114
docker:
215
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest
3-
digest: sha256:111973c0da7608bf1e60d070e5449d48826c385a6b92a56cb9203f1725d33c3d
16+
digest: sha256:bb493bf01d28519e82ab61c490c20122c85a7119c03a978ad0c34b4239fbad15
17+
# created: 2022-08-23T18:40:55.597313991Z

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
# The yoshi-nodejs team is the default owner for nodejs repositories.
9-
* @googleapis/yoshi-nodejs @googleapis/firestore-dpe
9+
* @googleapis/yoshi-nodejs @googleapis/cloud-native-db-dpes
1010

1111
# The github automation team is the default owner for the auto-approve file.
1212
.github/auto-approve.yml @googleapis/github-automation

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
4+
labels: 'type: bug, priority: p2'
55
---
66

77
Thanks for stopping by to let us know something could be better!

.github/ISSUE_TEMPLATE/config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
contact_links:
2+
- name: Google Cloud Support
3+
url: https://cloud.google.com/support/
4+
about: If you have a support contract with Google, please use the Google Cloud Support portal.

.github/ISSUE_TEMPLATE/feature_request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this library
4-
4+
labels: 'type: feature request, priority: p3'
55
---
66

77
Thanks for stopping by to let us know something could be better!

.github/ISSUE_TEMPLATE/question.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Question
3+
about: Ask a question
4+
labels: 'type: question, priority: p3'
5+
---
6+
7+
Thanks for stopping by to ask us a question! Please make sure to include:
8+
- What you're trying to do
9+
- What code you've already tried
10+
- Any error messages you're getting
11+
12+
**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response.

.github/auto-approve.yml

+3-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
rules:
2-
- author: "release-please[bot]"
3-
title: "^chore: release"
4-
changedFiles:
5-
- "package\\.json$"
6-
- "CHANGELOG\\.md$"
7-
maxFiles: 3
8-
- author: "renovate-bot"
9-
title: "^(fix|chore)\\(deps\\):"
10-
changedFiles:
11-
- "package\\.json$"
12-
maxFiles: 2
1+
processes:
2+
- "NodeDependency"
3+
- "OwlBotTemplateChanges"

.github/auto-label.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
requestsize:
2+
enabled: true

.github/sync-repo-settings.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
branchProtectionRules:
2+
- pattern: main
3+
isAdminEnforced: true
4+
requiredApprovingReviewCount: 1
5+
requiresCodeOwnerReviews: true
6+
requiresStrictStatusChecks: true
7+
requiredStatusCheckContexts:
8+
- "ci/kokoro: Samples test"
9+
- "ci/kokoro: System test"
10+
- docs
11+
- lint
12+
- test (12)
13+
- test (14)
14+
- test (16)
15+
- cla/google
16+
- windows
17+
- OwlBot Post Processor
18+
permissionRules:
19+
- team: yoshi-admins
20+
permission: admin
21+
- team: jsteam-admins
22+
permission: admin
23+
- team: jsteam
24+
permission: push

.github/workflows/ci.yaml

+13-10
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10, 12, 14, 15]
12+
node: [12, 14, 16]
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v1
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
1616
with:
1717
node-version: ${{ matrix.node }}
1818
- run: node --version
@@ -29,8 +29,8 @@ jobs:
2929
windows:
3030
runs-on: windows-latest
3131
steps:
32-
- uses: actions/checkout@v2
33-
- uses: actions/setup-node@v1
32+
- uses: actions/checkout@v3
33+
- uses: actions/setup-node@v3
3434
with:
3535
node-version: 14
3636
- run: npm install
@@ -40,18 +40,21 @@ jobs:
4040
lint:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v2
44-
- uses: actions/setup-node@v1
43+
- uses: actions/checkout@v3
44+
- uses: actions/setup-node@v3
4545
with:
4646
node-version: 14
4747
- run: npm install
4848
- run: npm run lint
4949
docs:
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@v2
53-
- uses: actions/setup-node@v1
52+
- uses: actions/checkout@v3
53+
- uses: actions/setup-node@v3
5454
with:
5555
node-version: 14
5656
- run: npm install
57-
- run: npm run docs-test
57+
- run: npm run docs
58+
- uses: JustinBeckwith/linkinator-action@v1
59+
with:
60+
paths: docs/

.jsdoc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 Google LLC
1+
// Copyright 2022 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@ module.exports = {
4040
includePattern: '\\.js$'
4141
},
4242
templates: {
43-
copyright: 'Copyright 2021 Google LLC',
43+
copyright: 'Copyright 2022 Google LLC',
4444
includeDate: false,
4545
sourceFiles: false,
4646
systemName: '@google-cloud/datastore',

.kokoro/common.cfg

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/continuous/node10/common.cfg

-34
This file was deleted.

.kokoro/continuous/node10/docs.cfg

-4
This file was deleted.

.kokoro/continuous/node10/test.cfg

-9
This file was deleted.

.kokoro/continuous/node8/common.cfg

-24
This file was deleted.

.kokoro/continuous/node8/test.cfg

Whitespace-only changes.

.kokoro/presubmit/node10/common.cfg

-34
This file was deleted.

.kokoro/presubmit/node10/docs.cfg

-4
This file was deleted.

.kokoro/presubmit/node10/lint.cfg

-4
This file was deleted.

.kokoro/presubmit/node10/test.cfg

Whitespace-only changes.

.kokoro/publish.sh

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/release/docs.cfg

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/release/docs.sh

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/release/publish.cfg

+10-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/samples-test.sh

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/system-test.sh

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/test.sh

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)