Skip to content

Commit 540116c

Browse files
author
Théo LAGACHE
committed
chore(release): 26.01.2b6
1 parent 28f5a99 commit 540116c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ keywords:
2222
- management
2323
- integration
2424
license: Apache-2.0
25-
version: 26.01.2b5
25+
version: 26.01.2b6
2626
date-released: "2026-01-15"

core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import uuid
44
from pathlib import Path
55

6-
TEMPLATE_BASE_URL = "https://s3.eu-central-3.ionoscloud.com/portabase-software/cli/public/templates/"
6+
TEMPLATE_BASE_URL = "https://s3.eu-central-3.ionoscloud.com/portabase-software/cli/public/templates"
77
GLOBAL_CONFIG_DIR = Path.home() / ".portabase"
88
GLOBAL_CONFIG_FILE = GLOBAL_CONFIG_DIR / "config.json"
99

core/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def fetch_template(filename: str) -> str:
1313
try:
1414
with console.status(f"[dim]Fetching template from {url}...[/dim]"):
1515
response = requests.get(url, timeout=10)
16-
if response.status_code == 404 and version != "unknown":
16+
if response.status_code in [403, 404] and version != "unknown":
1717
url = f"{TEMPLATE_BASE_URL}/latest/{filename}"
1818
response = requests.get(url, timeout=10)
1919

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "portabase-cli"
3-
version = "26.01.2b5"
3+
version = "26.01.2b6"
44
description = "The official command line interface (CLI) for managing and deploying Portabase instances with ease."
55
readme = "README.md"
66
requires-python = ">=3.12"

0 commit comments

Comments
 (0)