From 4e1b3eceb47ee99b9500883a8f544d7cf131f84f Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 17 Dec 2025 09:06:50 -0700 Subject: [PATCH] docs(changelog): version 1.5.0 [citest skip] Update changelog and .README.html for version 1.5.0 Signed-off-by: Rich Megginson --- .README.html | 15 ++++++++++++++- CHANGELOG.md | 12 ++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.README.html b/.README.html index 5a3cafe4..573cf6bc 100644 --- a/.README.html +++ b/.README.html @@ -144,6 +144,7 @@

Contents

  • Role Variables
  • +
  • Ubuntu
  • Ansible Facts Returned by the Role
  • @@ -159,7 +160,8 @@

    Warning

    role variables. Currently, this includes replacing at least the following configuration file:

    Requirements

    See below

    @@ -222,6 +224,17 @@

    Role Variables

    system if required, set this variable to true. You do not need to re-execute the role after boot.

    Default: false

    +

    Ubuntu

    +

    To configure the default file-overwriting behavior, use for +example:

    +
    kdump_kdump_tools:
    +  USE_KDUMP: 1
    +  KDUMP_KERNEL: /var/lib/kdump/vmlinuz
    +  KDUMP_INITRD: /var/lib/kdump/initrd.img
    +  KDUMP_COREDIR: "/var/crash"
    +  MAKEDUMP_ARGS: "-c -d 31"
    +  KDUMP_FAIL_CMD: "reboot -f"

    Ansible Facts Returned by the Role

    kdump_reboot_required: The role sets this fact if diff --git a/CHANGELOG.md b/CHANGELOG.md index 63219462..302760ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Changelog ========= +[1.5.0] - 2025-12-17 +-------------------- + +### New Features + +- feat: Ubuntu support (#265) + +### Other Changes + +- ci: Bump actions/checkout from 5 to 6 (#264) +- ci: add qemu tests for Fedora 43, drop Fedora 41 (#266) + [1.4.15] - 2025-11-17 --------------------