Skip to content

Commit ce9b6d9

Browse files
authored
feat: add Support for Postgres 15 (#114)
1 parent 15ee324 commit ce9b6d9

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 example app that provides support for managing [Clo
66
## Supported Databases
77
Currently only the following databases are supported:
88
- **MySQL 8.0**
9-
- **PostgreSQL 14, 13, 12, 11, 10, 9.6**
9+
- **PostgreSQL 15, 14, 13, 12, 11, 10, 9.6**
1010

1111
## Overview
1212
The GroupSync example app 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_15 = "POSTGRES_15"
4647
POSTGRES_14 = "POSTGRES_14"
4748
POSTGRES_13 = "POSTGRES_13"
4849
POSTGRES_12 = "POSTGRES_12"

0 commit comments

Comments
 (0)