Skip to content

Commit

Permalink
feat: add Support for Postgres 15 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
joe1981al authored Jul 21, 2023
1 parent 15ee324 commit ce9b6d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ GroupSync is a self-deployed example app that provides support for managing [Clo
## Supported Databases
Currently only the following databases are supported:
- **MySQL 8.0**
- **PostgreSQL 14, 13, 12, 11, 10, 9.6**
- **PostgreSQL 15, 14, 13, 12, 11, 10, 9.6**

## Overview
The GroupSync example app at an overview is made of Cloud Scheduler Job(s) and Cloud Run instance(s).
Expand Down
1 change: 1 addition & 0 deletions iam_groups_authn/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class DatabaseVersion(Enum):
All supported database versions for service."""

MYSQL_8_0 = "MYSQL_8_0"
POSTGRES_15 = "POSTGRES_15"
POSTGRES_14 = "POSTGRES_14"
POSTGRES_13 = "POSTGRES_13"
POSTGRES_12 = "POSTGRES_12"
Expand Down

0 comments on commit ce9b6d9

Please sign in to comment.