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

docs: drop Node 16 support in v7 #577

Merged
merged 4 commits into from
Sep 13, 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 docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import TabItem from '@theme/TabItem';

Sequelize is a promise-based [Node.js](https://nodejs.org/en/about/) [ORM tool](https://en.wikipedia.org/wiki/Object-relational_mapping) for [Postgres](https://en.wikipedia.org/wiki/PostgreSQL), [MySQL](https://en.wikipedia.org/wiki/MySQL), [MariaDB](https://en.wikipedia.org/wiki/MariaDB), [SQLite](https://en.wikipedia.org/wiki/SQLite), [Microsoft SQL Server](https://en.wikipedia.org/wiki/Microsoft_SQL_Server), [Amazon Redshift](https://docs.aws.amazon.com/redshift/index.html) and [Snowflake’s Data Cloud](https://docs.snowflake.com/en/user-guide/intro-key-concepts.html). It features solid transaction support, relations, eager and lazy loading, read replication and more.

Sequelize follows [Semantic Versioning](https://semver.org) and the [official Node.js LTS schedule](https://nodejs.org/en/about/releases/). Version 7 of Sequelize officially supports the Node.js versions `>=16.0.0`.
Sequelize follows [Semantic Versioning](https://semver.org) and the [official Node.js LTS schedule](https://nodejs.org/en/about/releases/). Version 7 of Sequelize officially supports the Node.js versions `>=18.0.0`.

You are currently looking at the **Tutorials and Guides** for Sequelize. You might also be interested in the [API Reference](pathname:///api/v7).

Expand Down
2 changes: 1 addition & 1 deletion docs/other-topics/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ await sequelize.authenticate();
Sequelize v7 only supports the versions of Node.js, and databases that were not EOL at the time of release.[^issue-1]
Sequelize v7 also supports versions of TypeScript that were released in the past year prior to the time of release.

This means Sequelize v7 supports **>=16.0.0**, and **TypeScript >= 4.7**.
This means Sequelize v7 supports **>=18.0.0**, and **TypeScript >= 4.7**.

Head to our [Versioning Policy page](/releases) to see exactly which databases are supported by Sequelize v7.

Expand Down
2 changes: 1 addition & 1 deletion src/pages/releases.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This page regroups information related to which engines versions are supported b

| Sequelize | [Node.js][node-releases] | [Typescript][ts-releases] | Release Date | EOL |
|---------------------------------|----------------------------|---------------------------|--------------|------------|
| [7 (alpha)][sequelize-core] | >= 16.0.0 | >= 4.8 | ❓ | ❓ |
| [7 (alpha)][sequelize-core] | >= 18.0.0 | >= 4.8 | ❓ | ❓ |
| [6 (current)][sequelize-legacy] | >= 10 | >= 4.1 | 2020-06-24 | ❓ |
| 5 (eol) | >=6 | >= 3.1 | 2019-03-13 | 2022-01-01 |

Expand Down