diff --git a/CHANGELOG.md b/CHANGELOG.md index 953ab7aae7..13affe7175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## 0.15.1 (2024-15-12) + +### Bug Fixes + +- Changed `SaasOauth` runtime to `SaasOauth2` + + ## 0.15.0 (2024-12-12) ### Features diff --git a/port_ocean/core/models.py b/port_ocean/core/models.py index 7604f6a6ed..1ba98fb530 100644 --- a/port_ocean/core/models.py +++ b/port_ocean/core/models.py @@ -8,12 +8,12 @@ class Runtime(Enum): Saas = "Saas" - SaasOauth = "SaasOauth" + SaasOauth2 = "SaasOauth2" OnPrem = "OnPrem" @property def is_saas_runtime(self) -> bool: - return self in [Runtime.Saas, Runtime.SaasOauth] + return self in [Runtime.Saas, Runtime.SaasOauth2] class Entity(BaseModel): diff --git a/pyproject.toml b/pyproject.toml index 1c5ad79ca4..702442f5f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io"