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

Drop Node v16 and better-sqlite3 support and add Node v20 #1220

Merged
merged 9 commits into from
Sep 2, 2023
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/daily-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16, 18]
node-version: [18, 20]

services:
mongodb:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [16, 18]
node-version: [18, 20]

env:
SETTINGS_AWS_ACCESS_KEY_ID: ${{ secrets.SETTINGS_AWS_ACCESS_KEY_ID }}
Expand All @@ -29,8 +29,8 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Use npm version 8.5
run: npm install -g npm@8.5
- name: Use npm version 9.6
run: npm install -g npm@9.6
- name: Install project dependencies
run: npm install
- name: Install package dependencies and build packages
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/databases/typeorm/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ FoalTS supports officially the following databases:
| PostgreSQL | 9.6+ ([Version Policy](https://www.postgresql.org/support/versioning/)) | `pg@8` |
| MySQL | 5.7+ ([Version Policy](https://en.wikipedia.org/wiki/MySQL#Release_history)) | `mysql@2` |
| MariaDB | 10.2+ ([Version Policy](https://en.wikipedia.org/wiki/MariaDB#Versioning)) | `mysql@2` |
| SQLite | 3 | `sqlite3@5` and `better-sqlite3@7` (since v2.1) |
| SQLite | 3 | `sqlite3@5` |
| MongoDB | 4.0+ ([Version Policy](https://www.mongodb.com/support-policy)) | `mongodb@3` |

## Use with FoalTS
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/tutorials/simple-todo-list/1-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ In this tutorial you will learn how to create a basic web application with FoalT

> **Requirements:**
>
> [Node.js](https://nodejs.org/en/) 16 or greater
> [Node.js](https://nodejs.org/en/) 18 or greater

## Create a New Project

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ FoalTS supports officially the following databases:
| PostgreSQL | 9.6+ ([Version Policy](https://www.postgresql.org/support/versioning/)) | `pg@8` |
| MySQL | 5.7+ ([Version Policy](https://en.wikipedia.org/wiki/MySQL#Release_history)) | `mysql@2` |
| MariaDB | 10.2+ ([Version Policy](https://en.wikipedia.org/wiki/MariaDB#Versioning)) | `mysql@2` |
| SQLite | 3 | `sqlite3@5` and `better-sqlite3@7` (since v2.1) |
| SQLite | 3 | `sqlite3@5` |
| MongoDB | 4.0+ ([Version Policy](https://www.mongodb.com/support-policy)) | `mongodb@3` |

## Use with FoalTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ En este tutorial aprenderá a crear una aplicación web básica con FoalTS. La a

> **Requisitos:**
>
> [Node.js](https://nodejs.org/en/) 16 o superior
> [Node.js](https://nodejs.org/en/) 18 o superior

## Crear un Nuevo Proyecto

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ FoalTS supports officially the following databases:
| PostgreSQL | 9.6+ ([Version Policy](https://www.postgresql.org/support/versioning/)) | `pg@8` |
| MySQL | 5.7+ ([Version Policy](https://en.wikipedia.org/wiki/MySQL#Release_history)) | `mysql@2` |
| MariaDB | 10.2+ ([Version Policy](https://en.wikipedia.org/wiki/MariaDB#Versioning)) | `mysql@2` |
| SQLite | 3 | `sqlite3@5` and `better-sqlite3@7` (since v2.1) |
| SQLite | 3 | `sqlite3@5` |
| MongoDB | 4.0+ ([Version Policy](https://www.mongodb.com/support-policy)) | `mongodb@3` |

## Use with FoalTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ FoalTS supports officially the following databases:
| PostgreSQL | 9.6+ ([Version Policy](https://www.postgresql.org/support/versioning/)) | `pg@8` |
| MySQL | 5.7+ ([Version Policy](https://en.wikipedia.org/wiki/MySQL#Release_history)) | `mysql@2` |
| MariaDB | 10.2+ ([Version Policy](https://en.wikipedia.org/wiki/MariaDB#Versioning)) | `mysql@2` |
| SQLite | 3 | `sqlite3@5` and `better-sqlite3@7` (since v2.1) |
| SQLite | 3 | `sqlite3@5` |
| MongoDB | 4.0+ ([Version Policy](https://www.mongodb.com/support-policy)) | `mongodb@3` |

## Use with FoalTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pada tutorial kali ini kita akan coba membuat aplikasi web dengan Foal. Aplikasi

> **Yang diperlukan:**
>
> [Node.js](https://nodejs.org/en/) versi 16 ke atas
> [Node.js](https://nodejs.org/en/) versi 18 ke atas

## Memulai Proyek Baru

Expand Down
Loading
Loading