From 6d236223a1bb5201f8067e7cb4bc570563c2310f Mon Sep 17 00:00:00 2001 From: Maxime Petazzoni Date: Wed, 7 May 2025 12:58:15 -0700 Subject: [PATCH 1/2] feat: add us-east-1 compute region --- README.md | 13 +++++++++++-- wherobots/db/region.py | 4 ++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5395f05..ce756dd 100644 --- a/README.md +++ b/README.md @@ -62,8 +62,17 @@ parameter, passing in one of the `Runtime` enum values. For more information on runtime sizing and selection, please consult the [Wherobots product documentation](https://docs.wherobots.com). -The only supported Wherobots compute region for now is `aws-us-west-2`, -in AWS's Oregon (`us-west-2`) region. +You must also specify in which region your SQL session should execute +into. Wherobots Cloud supports the following compute regions: + +* `aws-us-east-1`: AWS US East 1 (N. Virginia) +* `aws-us-west-2`: AWS US West 2 (Oregon) +* `aws-eu-west-1`: AWS EU West 1 (Ireland) + +> [!IMPORTANT] +> The `aws-us-west-2` region is available to all Wherobots Cloud users +> and customers; other regions are currently reserved to Professional +> Edition customers. ### Advanced parameters diff --git a/wherobots/db/region.py b/wherobots/db/region.py index 6d6545d..4b24fa7 100644 --- a/wherobots/db/region.py +++ b/wherobots/db/region.py @@ -2,7 +2,11 @@ class Region(Enum): + # Americas + AWS_US_EAST_1 = "aws-us-east-1" AWS_US_WEST_2 = "aws-us-west-2" + + # EMEA AWS_EU_WEST_1 = "aws-eu-west-1" From 6ae64e1bbc94e4e00d4c7b2f86b1b039abb3af32 Mon Sep 17 00:00:00 2001 From: Maxime Petazzoni Date: Wed, 7 May 2025 12:58:37 -0700 Subject: [PATCH 2/2] chore: 0.15.0 release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fbc27fd..82664c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "wherobots-python-dbapi" [tool.poetry] name = "wherobots-python-dbapi" -version = "0.14.0" +version = "0.15.0" description = "Python DB-API driver for Wherobots DB" authors = ["Maxime Petazzoni "] license = "Apache 2.0"