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

Update Node environments #292

Merged
merged 3 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/pr_validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- 7443:8443
strategy:
matrix:
node: ["18", "20"]
node: ["18", "20", "22"]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ See the [Fauna Documentation](https://docs.fauna.com/fauna/current/) for additio
<details>
<summary>Table of Contents</summary>

- [The Official JavaScript Driver for Fauna.](#the-official-javascript-driver-for-fauna)
- [Official JavaScript Driver for Fauna v10 (current)](#official-javascript-driver-for-fauna-v10-current)
- [Supported runtimes](#supported-runtimes)
- [API reference](#api-reference)
- [Install](#install)
Expand Down Expand Up @@ -49,8 +49,9 @@ See the [Fauna Documentation](https://docs.fauna.com/fauna/current/) for additio

Node.js - [Current and active LTS versions](https://nodejs.org/en/about/releases/):

- Current - v20
- LTS - v18
- Current - v22
- LTS - v20
- LTS (Maintenance) - v18

**Cloud providers**

Expand Down
2 changes: 1 addition & 1 deletion concourse/scripts/docker-compose-fauna-limits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ networks:

services:
query-limits-tests:
image: node:20.2-alpine3.16
image: node:22.10-alpine3.20
container_name: node-current-limits-test
networks:
- limit-net
Expand Down
4 changes: 2 additions & 2 deletions concourse/scripts/docker-compose-fauna.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- "8443:8443"

node-lts:
image: node:18.20-alpine3.19
image: node:20.18-alpine3.20
container_name: node-lts
depends_on:
- faunadb
Expand All @@ -27,7 +27,7 @@ services:
yarn test:integration

node-current:
image: node:20.13-alpine3.19
image: node:22.10-alpine3.20
container_name: node-current
depends_on:
- faunadb
Expand Down
2 changes: 1 addition & 1 deletion concourse/tasks/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ image_resource:
type: docker-image
source:
repository: node
tag: 20.2-alpine3.16
tag: 22.10-alpine3.20

params:
NPM_TOKEN:
Expand Down
2 changes: 1 addition & 1 deletion concourse/tasks/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image_resource:
type: registry-image
source:
repository: node
tag: 15.14.0-alpine3.10
tag: 22.10-alpine3.20

inputs:
- name: fauna-js-repository
Expand Down
Loading