Skip to content

Commit de079a7

Browse files
feat(deps)!: bump postgresql from 16 to 17 (#37782)
1 parent f54bbdc commit de079a7

13 files changed

+22
-22
lines changed

.github/workflows/superset-app-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
2424
services:
2525
postgres:
26-
image: postgres:16-alpine
26+
image: postgres:17-alpine
2727
env:
2828
POSTGRES_USER: superset
2929
POSTGRES_PASSWORD: superset

.github/workflows/superset-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
USE_DASHBOARD: ${{ github.event.inputs.use_dashboard == 'true' || 'false' }}
5555
services:
5656
postgres:
57-
image: postgres:16-alpine
57+
image: postgres:17-alpine
5858
env:
5959
POSTGRES_USER: superset
6060
POSTGRES_PASSWORD: superset
@@ -171,7 +171,7 @@ jobs:
171171
GITHUB_TOKEN: ${{ github.token }}
172172
services:
173173
postgres:
174-
image: postgres:16-alpine
174+
image: postgres:17-alpine
175175
env:
176176
POSTGRES_USER: superset
177177
POSTGRES_PASSWORD: superset

.github/workflows/superset-playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
GITHUB_TOKEN: ${{ github.token }}
4646
services:
4747
postgres:
48-
image: postgres:16-alpine
48+
image: postgres:17-alpine
4949
env:
5050
POSTGRES_USER: superset
5151
POSTGRES_PASSWORD: superset

.github/workflows/superset-python-integrationtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
116116
services:
117117
postgres:
118-
image: postgres:16-alpine
118+
image: postgres:17-alpine
119119
env:
120120
POSTGRES_USER: superset
121121
POSTGRES_PASSWORD: superset

.github/workflows/superset-python-presto-hive.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
SUPERSET__SQLALCHEMY_EXAMPLES_URI: presto://localhost:15433/memory/default
2626
services:
2727
postgres:
28-
image: postgres:16-alpine
28+
image: postgres:17-alpine
2929
env:
3030
POSTGRES_USER: superset
3131
POSTGRES_PASSWORD: superset
@@ -94,7 +94,7 @@ jobs:
9494
UPLOAD_FOLDER: /tmp/.superset/uploads/
9595
services:
9696
postgres:
97-
image: postgres:16-alpine
97+
image: postgres:17-alpine
9898
env:
9999
POSTGRES_USER: superset
100100
POSTGRES_PASSWORD: superset

docker-compose-image-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ services:
4545
required: true
4646
- path: docker/.env-local # optional override
4747
required: false
48-
image: postgres:16
48+
image: postgres:17
4949
container_name: superset_db
5050
restart: unless-stopped
5151
volumes:

docker-compose-light.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ services:
8585
required: true
8686
- path: docker/.env-local # optional override
8787
required: false
88-
image: postgres:16
88+
image: postgres:17
8989
restart: unless-stopped
9090
volumes:
9191
- db_home_light:/var/lib/postgresql/data

docker-compose-non-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
required: true
5050
- path: docker/.env-local # optional override
5151
required: false
52-
image: postgres:16
52+
image: postgres:17
5353
container_name: superset_db
5454
restart: unless-stopped
5555
volumes:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ services:
7676
required: true
7777
- path: docker/.env-local # optional override
7878
required: false
79-
image: postgres:16
79+
image: postgres:17
8080
restart: unless-stopped
8181
ports:
8282
- "127.0.0.1:${DATABASE_PORT:-5432}:5432"

docs/docs/configuration/configuring-superset.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ database engine on a separate host or container.
141141

142142
Superset supports the following database engines/versions:
143143

144-
| Database Engine | Supported Versions |
145-
| ----------------------------------------- | ---------------------------------------- |
146-
| [PostgreSQL](https://www.postgresql.org/) | 10.X, 11.X, 12.X, 13.X, 14.X, 15.X, 16.X |
147-
| [MySQL](https://www.mysql.com/) | 5.7, 8.X |
144+
| Database Engine | Supported Versions |
145+
| ----------------------------------------- | ---------------------------------------------- |
146+
| [PostgreSQL](https://www.postgresql.org/) | 10.X, 11.X, 12.X, 13.X, 14.X, 15.X, 16.X, 17.X |
147+
| [MySQL](https://www.mysql.com/) | 5.7, 8.X |
148148

149149
Use the following database drivers and connection strings:
150150

0 commit comments

Comments
 (0)