Skip to content

Commit e7763e7

Browse files
committed
Fix release due to incorrect touch outside possible path
1 parent e3601c1 commit e7763e7

3 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.8.1] - 2025-12-01
9+
10+
### Fixed
11+
12+
- [builder] don't touch file in /etc/offspot as image-creator can't.
13+
14+
### Changed
15+
16+
- [builder] Using adminui 1.1 (no changes)
17+
818
## [2.8.0] - 2025-11-29
919

1020
### Added

src/offspot_config/builder.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
"fullsize": 166963163,
7272
},
7373
"adminui": {
74-
"source": "ghcr.io/offspot/adminui:1.0",
75-
"filesize": 295659520,
76-
"fullsize": 295580605,
74+
"source": "ghcr.io/offspot/adminui:1.1",
75+
"filesize": 285081600,
76+
"fullsize": 284997559,
7777
},
7878
"file-browser": {
7979
"source": "ghcr.io/offspot/file-browser:1.2",
@@ -435,9 +435,6 @@ def add_adminui(self):
435435
],
436436
}
437437

438-
# add placeholder file to host fs to ensure bind succeeds
439-
self.ensure_host_path(LATEST_CONFIG_PATH.parent)
440-
441438
self.reversed_services.add(f"{ADMIN_PREFIX}:adminui")
442439

443440
def add_reverseproxy(self):

src/offspot_runtime/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.8.0"
1+
__version__ = "2.8.1"

0 commit comments

Comments
 (0)