Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Release (2025-XX-XX)

- `authorization`: [v0.2.2](services/authorization/CHANGELOG.md#v022-2025-01-21)
- **Bugfix:** Revert back to global URL configuration
- `sqlserverflex`: [v0.3.0](services/sqlserverflex/CHANGELOG.md#v030-2025-01-21)
- **Breaking change**: Delete endpoint made private.
- `mongodbflex`: [v0.3.0](services/mongodbflex/CHANGELOG.md#v030-2025-01-21)
Expand Down
4 changes: 4 additions & 0 deletions services/authorization/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.2.2 (2025-01-21)

- **Bugfix:** Revert back to global URL configuration

## v0.2.1 (2025-01-14)

- **Bugfix**: `configuration.py` region adjustment was missing
Expand Down
2 changes: 1 addition & 1 deletion services/authorization/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stackit-authorization"

[tool.poetry]
name = "stackit-authorization"
version = "v0.2.1"
version = "v0.2.2"
authors = [
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(
)
"""Constructor
"""
self._base_path = "https://authorization.api.eu01.stackit.cloud"
self._base_path = "https://authorization.api.stackit.cloud"
"""Default Base url
"""
self.server_index = 0 if server_index is None else server_index
Expand All @@ -56,13 +56,12 @@ def get_host_settings(self):
"""
return [
{
"url": "https://authorization.api.{region}stackit.cloud",
"url": "https://authorization.api.stackit.cloud",
"description": "No description provided",
"variables": {
"region": {
"description": "No description provided",
"default_value": "eu01.",
"enum_values": ["eu01.", "eu02."],
"default_value": "global",
}
},
}
Expand Down
Loading