1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

docs: recommend PG v13 or later (#8276)

Unify on PG v13, we had one place recommending v10, release notes for v6
saying we dropped support for v10 through v12 and mentioning 13, and a
place mentioning 14 or newer.

fixes: #8265

---------

Co-authored-by: Melinda Fekete <melinda.fekete@getunleash.io>
This commit is contained in:
Christopher Kolstad 2024-09-26 14:38:00 +02:00 committed by GitHub
parent 409e0e74ba
commit 547e41e566
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 10 deletions

View File

@ -36,7 +36,7 @@ Follow the steps in [the "how to run the project" section](#how-to-run-the-proje
### Make your update: ### Make your update:
Make your changes to the file(s) you'd like to update. You'll need **Node.js v18** and PostgreSQL 14 to run Unleash locally. [See more details](https://github.com/Unleash/unleash/tree/master/website/docs/contributing/developer-guide.md) Make your changes to the files you'd like to update. You'll need **Node.js v18.0+** and PostgreSQL v13.0+ to run Unleash locally. [See more details](https://github.com/Unleash/unleash/tree/master/website/docs/contributing/developer-guide.md)
### Open a pull request ### Open a pull request

View File

@ -15,8 +15,8 @@ We have created a set of ADRs to help guide the development of the backend:
Before developing on this project you will need two things: Before developing on this project you will need two things:
- PostgreSQL 14.x or newer - PostgreSQL 13.0+
- Node.js 20.x or newer - Node.js v20.0+
```sh ```sh
corepack enable corepack enable
@ -26,9 +26,9 @@ yarn dev
## PostgreSQL {#postgresql} ## PostgreSQL {#postgresql}
To run and develop unleash, you need to have PostgreSQL database (PostgreSQL v14.x or newer) locally. To run and develop Unleash, you need to have PostgreSQL v13.0+ locally.
Unleash currently also work with PostgreSQL v14+, but this might change in a future feature release, and we have stopped running automatic integration tests below PostgreSQL v12. The current recommendation is to use a role with Owner privileges since Unleash uses Postgres functions to simplify our database usage. Unleash currently also works with PostgreSQL v13.0+, but this might change in a future feature release, and we have stopped running automatic integration tests below PostgreSQL v13. The current recommendation is to use a role with Owner privileges since Unleash uses Postgres functions to simplify our database usage.
### Create a local unleash databases in postgres {#create-a-local-unleash-databases-in-postgres} ### Create a local unleash databases in postgres {#create-a-local-unleash-databases-in-postgres}

View File

@ -2,7 +2,7 @@
title: Database Setup title: Database Setup
--- ---
To run Unleash you need to have PostgreSQL database (PostgreSQL v14.x or newer). To run Unleash you need to have PostgreSQL v13.0+.
1. Create a local unleash databases in PostgreSQL 1. Create a local unleash databases in PostgreSQL

View File

@ -8,8 +8,8 @@ title: Getting Started
You will need: You will need:
- [Node.js](https://nodejs.org/en/download/) (version 18 or later) - [Node.js](https://nodejs.org/en/download/) v18.0+
- [PostgreSQL](https://www.postgresql.org/download/) (version 10 or later) - [PostgreSQL](https://www.postgresql.org/download/) v13.0+
- [Create an unleash user and database](./database-setup). - [Create an unleash user and database](./database-setup).
## Start Unleash server {#start-unleash-server} ## Start Unleash server {#start-unleash-server}