Skip to content

Conversation

@croissanne
Copy link
Member

@croissanne croissanne commented Oct 23, 2025

This commit adds a new BuildLog option to the OSBuildOptions that
can be used to generate a streamed buildlog (e.g. to a file or a
websocket). This supports the --with-buildlog option in
image-builder-cli.

With the buildlog option set, stderr is forwarded to stdout to make sure
statements appear in order. If BuildLogMu is set, this mutex will be
used for the synced writer which writes to both stdout and the
buildlog. Callers can use the same mutex to write statements to the same
buildlog.

The errorWriter option got removed, and callers can just use Stdout
and Stderr to set the stdout and stderr of the command.

@schutzbot
Copy link
Contributor

This PR changes the images API or behaviour causing integration failures with osbuild-composer. The next update of the images dependency in osbuild-composer will need work to adapt to these changes.

This is simply a notice. It will not block this PR from being merged.

croissanne added a commit to croissanne/image-builder-cli that referenced this pull request Oct 23, 2025
The following moved into images:
- OSBuildOptions;
- construction of the osbuild command;
- build log support;
- synced writer;
- monitor support.

See osbuild/images#1966.
croissanne added a commit to croissanne/image-builder-cli that referenced this pull request Oct 23, 2025
The following moved into images:
- OSBuildOptions;
- construction of the osbuild command;
- build log support;
- synced writer;
- monitor support.

See osbuild/images#1966.
@croissanne croissanne force-pushed the osbuild-exec-buildlog-and-monitor branch from 5c42c51 to 81eefc4 Compare October 23, 2025 11:49
@croissanne croissanne changed the title Osbuild exec buildlog and monitor osbuild-exec: add buildlog and monitor support Oct 23, 2025
@croissanne croissanne marked this pull request as ready for review October 23, 2025 11:50
@croissanne croissanne requested a review from a team as a code owner October 23, 2025 11:50
@croissanne croissanne requested review from bcl, mvo5 and supakeen October 23, 2025 11:50
croissanne added a commit to croissanne/image-builder-cli that referenced this pull request Oct 23, 2025
The following moved into images:
- OSBuildOptions;
- construction of the osbuild command;
- build log support;
- synced writer;
- monitor support.

See osbuild/images#1966.
lzap
lzap previously requested changes Oct 23, 2025
Copy link
Contributor

@lzap lzap left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some concerns around FD and shared mutex. It does not appear that multiple goroutines would need to create multiple instances of that writer.

@croissanne croissanne closed this Oct 23, 2025
@croissanne croissanne deleted the osbuild-exec-buildlog-and-monitor branch October 23, 2025 13:39
@croissanne croissanne restored the osbuild-exec-buildlog-and-monitor branch October 23, 2025 13:45
@croissanne croissanne reopened this Oct 23, 2025
@croissanne
Copy link
Member Author

woops, accidentally deleted the branch 🤦

@croissanne
Copy link
Member Author

croissanne commented Oct 23, 2025

Ok this still fails go test -race with image-builder-cli so problem was in dereffing the mutex

@croissanne croissanne force-pushed the osbuild-exec-buildlog-and-monitor branch from 81eefc4 to 78d4885 Compare October 23, 2025 15:11
croissanne added a commit to croissanne/image-builder-cli that referenced this pull request Oct 23, 2025
The following moved into images:
- OSBuildOptions;
- construction of the osbuild command;
- build log support;
- synced writer;
- monitor support.

See osbuild/images#1966.
@croissanne croissanne force-pushed the osbuild-exec-buildlog-and-monitor branch from 78d4885 to 27be799 Compare October 27, 2025 10:36
Copy link
Contributor

@mvo5 mvo5 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good, thanks for working on this! Its very cool that this moves from ibcli and that we can reuse it for composer now. Some tiny comments inline and I think the linter had some (valid) comments too.

Unfortunately doing the build log its not super easy, I'm not sure we can do much about it but we could rethink the approach. In ibcli we really wanted to have a buildlog file that is streamed to in realtime with the details of the build but the user sees a normal progress. We could move this task into osbuild, i.e. something like osbuild --monitor JSONSeqMonitor:3 --monitor LogMontior:1 where osbuild would montior to fd=3 via jsonseqmoniotor and to stdout via the log monitor. But it would probably not help that much (I think) because the problem is that stderr/crashes from osbuild itself would still have to somehow synced and end up in the buildlog.txt so we would still need something that ensures that and the problem just moves sideways (but maybe I'm missing something here, I have not tried it).

@croissanne croissanne force-pushed the osbuild-exec-buildlog-and-monitor branch from 27be799 to 5877fd8 Compare October 28, 2025 12:34
This commit adds a new `BuildLog` option to the `OSBuildOptions` that
can be used to generate a streamed buildlog (e.g. to a file or a
websocket). This supports the `--with-buildlog` option in
image-builder-cli.

With the buildlog option set, stderr is forwarded to stdout to make sure
statements appear in order. If `BuildLogMu` is set, this mutex will be
used for the synced writer which writes to both stdout and the
buildlog. Callers can use the same mutex to write statements to the same
buildlog.

The errorWriter option got removed, and callers can just use `Stdout`
and `Stderr` to set the stdout and stderr of the command.
@croissanne croissanne force-pushed the osbuild-exec-buildlog-and-monitor branch from 5877fd8 to 0197817 Compare October 28, 2025 12:41
If opts.MonitorFile is set, the monitor output is written to a separate
FD which corresponds with the specified file.
@croissanne croissanne force-pushed the osbuild-exec-buildlog-and-monitor branch from 0197817 to 6f235ff Compare November 3, 2025 09:11
Copy link
Contributor

@mvo5 mvo5 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

@croissanne croissanne enabled auto-merge November 3, 2025 12:51
@croissanne croissanne dismissed lzap’s stale review November 3, 2025 12:51

comments applied

@croissanne croissanne added this pull request to the merge queue Nov 3, 2025
Merged via the queue into osbuild:main with commit 41914f0 Nov 3, 2025
24 checks passed
@croissanne croissanne deleted the osbuild-exec-buildlog-and-monitor branch November 3, 2025 13:44
croissanne added a commit to croissanne/osbuild-composer that referenced this pull request Nov 4, 2025
Changes with 0.210.0
----------------
  - Make bootupd metadata generation configurable per distro (osbuild/images#1958)
    - Author: Paul Whalen, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - many: add support for bootc container based anaconda ISOs (HMS-9495) (osbuild/images#1906)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza
  - osbuild/osbuild-exec: make osbuild command a variable (osbuild/images#1965)
    - Author: Sanne Raymaekers, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.211.0
----------------
  - Update osbuild dependency commit ID to latest (osbuild/images#1968)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - Update snapshots to 20251023 (osbuild/images#1967)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - deps: switch yaml libraries (osbuild/images#1970)
    - Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt
  - osbuild/monitor: increase status scanner buffer size to 16MiB (osbuild/images#1977)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
  - osbuild: tweak how we can mock osbuild slightly (osbuild/images#1969)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Sanne Raymaekers
  - schutzbot/terraform: bump terraform sha (osbuild/images#1976)
    - Author: Florian Schüller, Reviewers: Achilleas Koutsou, Sanne Raymaekers, Simon de Vlieger

Changes with 0.212.0
----------------
  - distro,manifest: have a single `LoraxTemplates` type (osbuild/images#1975)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc ISO (osbuild/images#1971)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc distro (osbuild/images#1944)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: load distros from multiple files (osbuild/images#1974)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Tomáš Hozza
  - osbuild: switch from a bufio.Scanner to a bufio.Reader (osbuild/images#1978)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - reporegistry: various cleanups (osbuild/images#1980)
    - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza
  - various: fix `make gh-action-test` and update README (osbuild/images#1981)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.213.0
----------------
  - data: update fedora 43 repositories (osbuild/images#1983)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers
  - osbuild-exec: add buildlog and monitor support (osbuild/images#1966)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
croissanne added a commit to croissanne/osbuild-composer that referenced this pull request Nov 5, 2025
Changes with 0.210.0
----------------
  - Make bootupd metadata generation configurable per distro (osbuild/images#1958)
    - Author: Paul Whalen, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - many: add support for bootc container based anaconda ISOs (HMS-9495) (osbuild/images#1906)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza
  - osbuild/osbuild-exec: make osbuild command a variable (osbuild/images#1965)
    - Author: Sanne Raymaekers, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.211.0
----------------
  - Update osbuild dependency commit ID to latest (osbuild/images#1968)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - Update snapshots to 20251023 (osbuild/images#1967)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - deps: switch yaml libraries (osbuild/images#1970)
    - Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt
  - osbuild/monitor: increase status scanner buffer size to 16MiB (osbuild/images#1977)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
  - osbuild: tweak how we can mock osbuild slightly (osbuild/images#1969)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Sanne Raymaekers
  - schutzbot/terraform: bump terraform sha (osbuild/images#1976)
    - Author: Florian Schüller, Reviewers: Achilleas Koutsou, Sanne Raymaekers, Simon de Vlieger

Changes with 0.212.0
----------------
  - distro,manifest: have a single `LoraxTemplates` type (osbuild/images#1975)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc ISO (osbuild/images#1971)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc distro (osbuild/images#1944)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: load distros from multiple files (osbuild/images#1974)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Tomáš Hozza
  - osbuild: switch from a bufio.Scanner to a bufio.Reader (osbuild/images#1978)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - reporegistry: various cleanups (osbuild/images#1980)
    - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza
  - various: fix `make gh-action-test` and update README (osbuild/images#1981)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.213.0
----------------
  - data: update fedora 43 repositories (osbuild/images#1983)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers
  - osbuild-exec: add buildlog and monitor support (osbuild/images#1966)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
croissanne added a commit to croissanne/osbuild-composer that referenced this pull request Nov 5, 2025
Changes with 0.210.0
----------------
  - Make bootupd metadata generation configurable per distro (osbuild/images#1958)
    - Author: Paul Whalen, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - many: add support for bootc container based anaconda ISOs (HMS-9495) (osbuild/images#1906)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza
  - osbuild/osbuild-exec: make osbuild command a variable (osbuild/images#1965)
    - Author: Sanne Raymaekers, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.211.0
----------------
  - Update osbuild dependency commit ID to latest (osbuild/images#1968)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - Update snapshots to 20251023 (osbuild/images#1967)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - deps: switch yaml libraries (osbuild/images#1970)
    - Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt
  - osbuild/monitor: increase status scanner buffer size to 16MiB (osbuild/images#1977)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
  - osbuild: tweak how we can mock osbuild slightly (osbuild/images#1969)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Sanne Raymaekers
  - schutzbot/terraform: bump terraform sha (osbuild/images#1976)
    - Author: Florian Schüller, Reviewers: Achilleas Koutsou, Sanne Raymaekers, Simon de Vlieger

Changes with 0.212.0
----------------
  - distro,manifest: have a single `LoraxTemplates` type (osbuild/images#1975)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc ISO (osbuild/images#1971)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc distro (osbuild/images#1944)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: load distros from multiple files (osbuild/images#1974)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Tomáš Hozza
  - osbuild: switch from a bufio.Scanner to a bufio.Reader (osbuild/images#1978)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - reporegistry: various cleanups (osbuild/images#1980)
    - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza
  - various: fix `make gh-action-test` and update README (osbuild/images#1981)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.213.0
----------------
  - data: update fedora 43 repositories (osbuild/images#1983)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers
  - osbuild-exec: add buildlog and monitor support (osbuild/images#1966)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
croissanne added a commit to croissanne/osbuild-composer that referenced this pull request Nov 5, 2025
Changes with 0.210.0
----------------
  - Make bootupd metadata generation configurable per distro (osbuild/images#1958)
    - Author: Paul Whalen, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - many: add support for bootc container based anaconda ISOs (HMS-9495) (osbuild/images#1906)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza
  - osbuild/osbuild-exec: make osbuild command a variable (osbuild/images#1965)
    - Author: Sanne Raymaekers, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.211.0
----------------
  - Update osbuild dependency commit ID to latest (osbuild/images#1968)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - Update snapshots to 20251023 (osbuild/images#1967)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - deps: switch yaml libraries (osbuild/images#1970)
    - Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt
  - osbuild/monitor: increase status scanner buffer size to 16MiB (osbuild/images#1977)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
  - osbuild: tweak how we can mock osbuild slightly (osbuild/images#1969)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Sanne Raymaekers
  - schutzbot/terraform: bump terraform sha (osbuild/images#1976)
    - Author: Florian Schüller, Reviewers: Achilleas Koutsou, Sanne Raymaekers, Simon de Vlieger

Changes with 0.212.0
----------------
  - distro,manifest: have a single `LoraxTemplates` type (osbuild/images#1975)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc ISO (osbuild/images#1971)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc distro (osbuild/images#1944)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: load distros from multiple files (osbuild/images#1974)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Tomáš Hozza
  - osbuild: switch from a bufio.Scanner to a bufio.Reader (osbuild/images#1978)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - reporegistry: various cleanups (osbuild/images#1980)
    - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza
  - various: fix `make gh-action-test` and update README (osbuild/images#1981)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.213.0
----------------
  - data: update fedora 43 repositories (osbuild/images#1983)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers
  - osbuild-exec: add buildlog and monitor support (osbuild/images#1966)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
croissanne added a commit to croissanne/osbuild-composer that referenced this pull request Nov 17, 2025
Changes with 0.210.0
----------------
  - Make bootupd metadata generation configurable per distro (osbuild/images#1958)
    - Author: Paul Whalen, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - many: add support for bootc container based anaconda ISOs (HMS-9495) (osbuild/images#1906)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza
  - osbuild/osbuild-exec: make osbuild command a variable (osbuild/images#1965)
    - Author: Sanne Raymaekers, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.211.0
----------------
  - Update osbuild dependency commit ID to latest (osbuild/images#1968)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - Update snapshots to 20251023 (osbuild/images#1967)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - deps: switch yaml libraries (osbuild/images#1970)
    - Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt
  - osbuild/monitor: increase status scanner buffer size to 16MiB (osbuild/images#1977)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
  - osbuild: tweak how we can mock osbuild slightly (osbuild/images#1969)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Sanne Raymaekers
  - schutzbot/terraform: bump terraform sha (osbuild/images#1976)
    - Author: Florian Schüller, Reviewers: Achilleas Koutsou, Sanne Raymaekers, Simon de Vlieger

Changes with 0.212.0
----------------
  - distro,manifest: have a single `LoraxTemplates` type (osbuild/images#1975)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc ISO (osbuild/images#1971)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc distro (osbuild/images#1944)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: load distros from multiple files (osbuild/images#1974)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Tomáš Hozza
  - osbuild: switch from a bufio.Scanner to a bufio.Reader (osbuild/images#1978)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - reporegistry: various cleanups (osbuild/images#1980)
    - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza
  - various: fix `make gh-action-test` and update README (osbuild/images#1981)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.213.0
----------------
  - data: update fedora 43 repositories (osbuild/images#1983)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers
  - osbuild-exec: add buildlog and monitor support (osbuild/images#1966)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
achilleas-k pushed a commit to croissanne/osbuild-composer that referenced this pull request Nov 19, 2025
Changes with 0.210.0
----------------
  - Make bootupd metadata generation configurable per distro (osbuild/images#1958)
    - Author: Paul Whalen, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - many: add support for bootc container based anaconda ISOs (HMS-9495) (osbuild/images#1906)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza
  - osbuild/osbuild-exec: make osbuild command a variable (osbuild/images#1965)
    - Author: Sanne Raymaekers, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.211.0
----------------
  - Update osbuild dependency commit ID to latest (osbuild/images#1968)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - Update snapshots to 20251023 (osbuild/images#1967)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - deps: switch yaml libraries (osbuild/images#1970)
    - Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt
  - osbuild/monitor: increase status scanner buffer size to 16MiB (osbuild/images#1977)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
  - osbuild: tweak how we can mock osbuild slightly (osbuild/images#1969)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Sanne Raymaekers
  - schutzbot/terraform: bump terraform sha (osbuild/images#1976)
    - Author: Florian Schüller, Reviewers: Achilleas Koutsou, Sanne Raymaekers, Simon de Vlieger

Changes with 0.212.0
----------------
  - distro,manifest: have a single `LoraxTemplates` type (osbuild/images#1975)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc ISO (osbuild/images#1971)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc distro (osbuild/images#1944)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: load distros from multiple files (osbuild/images#1974)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Tomáš Hozza
  - osbuild: switch from a bufio.Scanner to a bufio.Reader (osbuild/images#1978)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - reporegistry: various cleanups (osbuild/images#1980)
    - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza
  - various: fix `make gh-action-test` and update README (osbuild/images#1981)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.213.0
----------------
  - data: update fedora 43 repositories (osbuild/images#1983)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers
  - osbuild-exec: add buildlog and monitor support (osbuild/images#1966)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
lzap pushed a commit to croissanne/osbuild-composer that referenced this pull request Nov 21, 2025
Changes with 0.210.0
----------------
  - Make bootupd metadata generation configurable per distro (osbuild/images#1958)
    - Author: Paul Whalen, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - many: add support for bootc container based anaconda ISOs (HMS-9495) (osbuild/images#1906)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza
  - osbuild/osbuild-exec: make osbuild command a variable (osbuild/images#1965)
    - Author: Sanne Raymaekers, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.211.0
----------------
  - Update osbuild dependency commit ID to latest (osbuild/images#1968)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - Update snapshots to 20251023 (osbuild/images#1967)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - deps: switch yaml libraries (osbuild/images#1970)
    - Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt
  - osbuild/monitor: increase status scanner buffer size to 16MiB (osbuild/images#1977)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
  - osbuild: tweak how we can mock osbuild slightly (osbuild/images#1969)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Sanne Raymaekers
  - schutzbot/terraform: bump terraform sha (osbuild/images#1976)
    - Author: Florian Schüller, Reviewers: Achilleas Koutsou, Sanne Raymaekers, Simon de Vlieger

Changes with 0.212.0
----------------
  - distro,manifest: have a single `LoraxTemplates` type (osbuild/images#1975)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc ISO (osbuild/images#1971)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc distro (osbuild/images#1944)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: load distros from multiple files (osbuild/images#1974)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Tomáš Hozza
  - osbuild: switch from a bufio.Scanner to a bufio.Reader (osbuild/images#1978)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - reporegistry: various cleanups (osbuild/images#1980)
    - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza
  - various: fix `make gh-action-test` and update README (osbuild/images#1981)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.213.0
----------------
  - data: update fedora 43 repositories (osbuild/images#1983)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers
  - osbuild-exec: add buildlog and monitor support (osbuild/images#1966)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
croissanne added a commit to osbuild/osbuild-composer that referenced this pull request Nov 25, 2025
Changes with 0.210.0
----------------
  - Make bootupd metadata generation configurable per distro (osbuild/images#1958)
    - Author: Paul Whalen, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - many: add support for bootc container based anaconda ISOs (HMS-9495) (osbuild/images#1906)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza
  - osbuild/osbuild-exec: make osbuild command a variable (osbuild/images#1965)
    - Author: Sanne Raymaekers, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.211.0
----------------
  - Update osbuild dependency commit ID to latest (osbuild/images#1968)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - Update snapshots to 20251023 (osbuild/images#1967)
    - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - deps: switch yaml libraries (osbuild/images#1970)
    - Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt
  - osbuild/monitor: increase status scanner buffer size to 16MiB (osbuild/images#1977)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
  - osbuild: tweak how we can mock osbuild slightly (osbuild/images#1969)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Sanne Raymaekers
  - schutzbot/terraform: bump terraform sha (osbuild/images#1976)
    - Author: Florian Schüller, Reviewers: Achilleas Koutsou, Sanne Raymaekers, Simon de Vlieger

Changes with 0.212.0
----------------
  - distro,manifest: have a single `LoraxTemplates` type (osbuild/images#1975)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc ISO (osbuild/images#1971)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - distro: cleanup/reuse YAML for bootc distro (osbuild/images#1944)
    - Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger
  - distro: load distros from multiple files (osbuild/images#1974)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Tomáš Hozza
  - osbuild: switch from a bufio.Scanner to a bufio.Reader (osbuild/images#1978)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger
  - reporegistry: various cleanups (osbuild/images#1980)
    - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza
  - various: fix `make gh-action-test` and update README (osbuild/images#1981)
    - Author: Michael Vogt, Reviewers: Lukáš Zapletal, Simon de Vlieger

Changes with 0.213.0
----------------
  - data: update fedora 43 repositories (osbuild/images#1983)
    - Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers
  - osbuild-exec: add buildlog and monitor support (osbuild/images#1966)
    - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants