blob: cb817ed7c7f70e0b9e07f6060a38c91a48888169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Changelog
All notable changes to this project are documented here. Format follows
[Keep a Changelog](https://keepachangelog.com/), versioning is
[SemVer](https://semver.org/).
## [1.1.1] - 2026-07-16
### Fixed
- Symlinks in the SlackBuild dir (e.g. a host-side `sbodl` source cache pointing
at `~/sbodl-cache`) are no longer copied into the build container. They copied
in dangling and made `wget -c` fail with DOWNLOAD-FAILED. The container now
copies the dir with `rsync --no-links` and downloads the source fresh; a host
warning names each ignored symlink.
## [1.1.0] - 2026-07-16
### Added
- `test-build --local-deps`: also resolve deps from the target's own repo (its
grandparent dir), prepended before the SBo tree, for packages whose deps are
siblings in the same repo and not on SBo (e.g. huggingface_cli).
- `test-build-slackbuild` agent skill teaching an agent to drive `test-build`.
### Changed
- Renamed the agent skill from `using-test-build` to `test-build-slackbuild`.
## [1.0.0] - 2026-07-13
### Added
- Initial release: the `test-build` tool and the `image-builder/` scripts,
extracted from the sbo-slackbuilds `.extras/` dir into a standalone repo.
- SemVer versioning via a baked `PROJECT_VERSION` const in every script.
|