Skip to content

Commit d511b06

Browse files
authored
Merge branch 'master' into spp--keepalive-config
2 parents bd73b36 + 448465d commit d511b06

Some content is hidden

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

72 files changed

+9206
-6367
lines changed

.github/CODEOWNERS

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax
66

77

8-
# The bigtable-dpe team is the default owner for anything not
8+
# The api-bigtable team is the default owner for anything not
99
# explicitly taken by someone else.
10-
* @googleapis/bigtable-dpe @googleapis/yoshi-nodejs
10+
* @googleapis/api-bigtable @googleapis/yoshi-nodejs

.github/workflows/ci.yaml

+11-5
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,20 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10, 12, 13]
12+
node: [10, 12, 14, 15]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-node@v1
1616
with:
1717
node-version: ${{ matrix.node }}
1818
- run: node --version
19-
- run: npm install --engine-strict
19+
# The first installation step ensures that all of our production
20+
# dependencies work on the given Node.js version, this helps us find
21+
# dependencies that don't match our engines field:
22+
- run: npm install --production --engine-strict --ignore-scripts --no-package-lock
23+
# Clean up the production install, before installing dev/production:
24+
- run: rm -rf node_modules
25+
- run: npm install
2026
- run: npm test
2127
- name: coverage
2228
uses: codecov/codecov-action@v1
@@ -29,7 +35,7 @@ jobs:
2935
- uses: actions/checkout@v2
3036
- uses: actions/setup-node@v1
3137
with:
32-
node-version: 12
38+
node-version: 14
3339
- run: npm install
3440
- run: npm test
3541
- name: coverage
@@ -43,7 +49,7 @@ jobs:
4349
- uses: actions/checkout@v2
4450
- uses: actions/setup-node@v1
4551
with:
46-
node-version: 12
52+
node-version: 14
4753
- run: npm install
4854
- run: npm run lint
4955
docs:
@@ -52,6 +58,6 @@ jobs:
5258
- uses: actions/checkout@v2
5359
- uses: actions/setup-node@v1
5460
with:
55-
node-version: 12
61+
node-version: 14
5662
- run: npm install
5763
- run: npm run docs-test

.jsdoc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 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 2020 Google LLC',
43+
copyright: 'Copyright 2021 Google LLC',
4444
includeDate: false,
4545
sourceFiles: false,
4646
systemName: '@google-cloud/bigtable',

.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

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

.kokoro/continuous/node12/common.cfg

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

.kokoro/docs.sh

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

.kokoro/lint.sh

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

.kokoro/populate-secrets.sh

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

.kokoro/presubmit/node10/common.cfg

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

.kokoro/presubmit/node12/common.cfg

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

.kokoro/publish.sh

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

.kokoro/release/docs-devsite.cfg

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

.kokoro/release/docs-devsite.sh

+7-3
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

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

.kokoro/release/publish.cfg

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

.kokoro/samples-test.sh

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

.kokoro/system-test.sh

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

.kokoro/test.sh

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

0 commit comments

Comments
 (0)