Skip to content

Commit d204af5

Browse files
authored
[Core] Change SaasOauth to SaasOauth2 runtime (#1237)
1 parent 8e0919d commit d204af5

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
77

88
<!-- towncrier release notes start -->
99

10+
## 0.15.1 (2024-15-12)
11+
12+
### Bug Fixes
13+
14+
- Changed `SaasOauth` runtime to `SaasOauth2`
15+
16+
1017
## 0.15.0 (2024-12-12)
1118

1219
### Features

port_ocean/core/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
class Runtime(Enum):
1010
Saas = "Saas"
11-
SaasOauth = "SaasOauth"
11+
SaasOauth2 = "SaasOauth2"
1212
OnPrem = "OnPrem"
1313

1414
@property
1515
def is_saas_runtime(self) -> bool:
16-
return self in [Runtime.Saas, Runtime.SaasOauth]
16+
return self in [Runtime.Saas, Runtime.SaasOauth2]
1717

1818

1919
class Entity(BaseModel):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "port-ocean"
3-
version = "0.15.0"
3+
version = "0.15.1"
44
description = "Port Ocean is a CLI tool for managing your Port projects."
55
readme = "README.md"
66
homepage = "https://app.getport.io"

0 commit comments

Comments
 (0)