Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit 9a72b32

Browse files
build!: update library to use Node 12 (#288)
* feat!: Update library to use Node 12 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 0bf55af commit 9a72b32

File tree

8 files changed

+8
-89
lines changed

8 files changed

+8
-89
lines changed

.github/sync-repo-settings.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ branchProtectionRules:
99
- "ci/kokoro: System test"
1010
- docs
1111
- lint
12-
- test (10)
1312
- test (12)
1413
- test (14)
14+
- test (16)
1515
- cla/google
1616
- windows
1717
- OwlBot Post Processor

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10, 12, 14]
12+
node: [12, 14, 16]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3

.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/presubmit/node10/common.cfg

-34
This file was deleted.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -50,28 +50,28 @@
5050
"samples-test": "cd samples/ && npm link ../ && npm test"
5151
},
5252
"dependencies": {
53-
"google-gax": "^2.24.1"
53+
"google-gax": "^3.0.1"
5454
},
5555
"devDependencies": {
5656
"@types/mocha": "^9.0.0",
5757
"@types/node": "^16.0.0",
5858
"@types/sinon": "^10.0.0",
5959
"c8": "^7.3.0",
60-
"gts": "^3.0.0",
60+
"gts": "^3.1.0",
6161
"jsdoc": "^3.6.5",
6262
"jsdoc-fresh": "^1.0.2",
6363
"jsdoc-region-tag": "^1.0.4",
6464
"linkinator": "^2.1.1",
65-
"mocha": "^8.1.1",
65+
"mocha": "^9.2.2",
6666
"null-loader": "^4.0.0",
6767
"pack-n-play": "^1.0.0-2",
6868
"sinon": "^14.0.0",
6969
"ts-loader": "^9.0.0",
70-
"typescript": "^3.9.7",
70+
"typescript": "^4.6.4",
7171
"webpack": "^5.0.0",
7272
"webpack-cli": "^4.0.0"
7373
},
7474
"engines": {
75-
"node": ">=10.0.0"
75+
"node": ">=12.0.0"
7676
}
7777
}

samples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "Apache-2.0",
55
"author": "Google LLC",
66
"engines": {
7-
"node": ">=10"
7+
"node": ">=12.0.0"
88
},
99
"files": [
1010
"*.js"

0 commit comments

Comments
 (0)