Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: Support Node 18+ #650

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a643028
chore: Support Node 18+
gcf-owl-bot[bot] Oct 4, 2024
3fc97b8
chore: Update .OwlBot.lock.yaml
danielbankhead Oct 15, 2024
c092e76
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 15, 2024
2b32098
chore: bump to Node 18
d-goog Oct 15, 2024
836e05d
chore: bump to Node v18
d-goog Oct 15, 2024
bba133d
chore: remove Node 14 references
d-goog Oct 15, 2024
57b4d83
chore: temp remove `NPM_CONFIG_PREFIX` from samples-test
d-goog Oct 16, 2024
74c2377
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 16, 2024
fb83ead
chore: create `NPM_CONFIG_PREFIX` if it doesn't exist
d-goog Oct 16, 2024
eef8aaf
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 16, 2024
b0c1051
chore: mkdir -p if `NPM_CONFIG_PREFIX` does not exist
d-goog Oct 16, 2024
59e3a60
chore: install `npm@10`
d-goog Oct 17, 2024
9477f68
chore: verify npm `10.7`
d-goog Oct 21, 2024
8a41bb5
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 21, 2024
3c2f70f
Merge branch 'main' into owl-bot-update-lock-8060aba1f6d5617d08091767…
danielbankhead Oct 23, 2024
9209660
Merge branch 'main' of github.com:googleapis/gaxios into owl-bot-upda…
d-goog Oct 23, 2024
10c87f2
Merge branch 'owl-bot-update-lock-8060aba1f6d5617d08091767141ab2a99ea…
d-goog Oct 23, 2024
f798e17
chore: npm debugging
d-goog Oct 23, 2024
d55d655
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2024
12cc60d
chore: more npm debugging
d-goog Oct 23, 2024
a857cde
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2024
1a49fae
chore: npm debugging
d-goog Oct 23, 2024
59d00d8
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2024
02c8ab8
chore: npm debugging
d-goog Oct 23, 2024
1ad1c59
chore: npm debugging
d-goog Oct 23, 2024
ccc7a31
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2024
ae96e08
chore: additional debug logs
d-goog Oct 24, 2024
fb5544d
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 24, 2024
be5c154
chore: remove `NPM_CONFIG_PREFIX`
d-goog Oct 24, 2024
7f1ee3a
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 24, 2024
de99637
chore: more debugging
d-goog Oct 24, 2024
703f733
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 24, 2024
b462b34
chore: `npm` set prefix
d-goog Oct 24, 2024
a3e57ed
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 24, 2024
6e0375d
chore: npm@10
d-goog Oct 24, 2024
f864734
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 24, 2024
695e952
chore: use pre script for npm i for now
d-goog Oct 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest
digest: sha256:609822e3c09b7a1bd90b99655904609f162cc15acb4704f1edf778284c36f429
# created: 2024-10-01T19:34:30.797530443Z
digest: sha256:bd8b41503cfcbd21f121e4b197d0f8bf1447f3499921f18441bb7e6e3ae8f7fa
# created: 2024-10-10T00:00:00.00000000Z
4 changes: 2 additions & 2 deletions .github/sync-repo-settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ branchProtectionRules:
- "ci/kokoro: Samples test"
- "ci/kokoro: System test"
- lint
- test (14)
- test (16)
- test (18)
- test (20)
- test (22)
- cla/google
- windows
- OwlBot Post Processor
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18, 20]
node: [18, 20, 22]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: node --version
Expand All @@ -29,30 +29,30 @@ jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
node-version: 18
- run: npm install --engine-strict
- run: npm test
env:
MOCHA_THROW_DEPRECATION: false
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
node-version: 18
- run: npm install
- run: npm run lint
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
node-version: 18
- run: npm install
- run: npm run docs
- uses: JustinBeckwith/linkinator-action@v1
Expand Down
2 changes: 0 additions & 2 deletions .kokoro/browser-test.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/common.cfg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .kokoro/pre-samples-test.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
2 changes: 1 addition & 1 deletion .kokoro/release/docs-devsite.cfg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/release/docs.cfg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/release/docs.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/release/publish.cfg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/samples-test.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/system-test.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/test.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/test.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .kokoro/trampoline_v2.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"google"
],
"engines": {
"node": ">=14"
"node": ">=18"
},
"author": "Google, LLC",
"license": "Apache-2.0",
Expand Down
Loading