Skip to content

Commit 57b0e52

Browse files
feat: add support for Postgres 14 (#68)
1 parent 4f0d3cd commit 57b0e52

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ GroupSync is a self-deployed service that provides support for managing [Cloud S
66
## Supported Databases
77
Currently only the following databases are supported:
88
- **MySQL 8.0**
9-
- **PostgreSQL 13, 12, 11, 10, 9.6**
9+
- **PostgreSQL 14, 13, 12, 11, 10, 9.6**
1010

1111
## Overview
1212
The GroupSync service at an overview is made of Cloud Scheduler Job(s) and Cloud Run instance(s).

iam_groups_authn/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class DatabaseVersion(Enum):
4343
All supported database versions for service."""
4444

4545
MYSQL_8_0 = "MYSQL_8_0"
46+
POSTGRES_14 = "POSTGRES_14"
4647
POSTGRES_13 = "POSTGRES_13"
4748
POSTGRES_12 = "POSTGRES_12"
4849
POSTGRES_11 = "POSTGRES_11"

0 commit comments

Comments
 (0)