Skip to content

Commit 0ecb1bd

Browse files
authored
Merge pull request #1700 from netbootxyz/RC
Release 2.0.89
2 parents 1283941 + e7383b9 commit 0ecb1bd

File tree

14 files changed

+255
-106
lines changed

14 files changed

+255
-106
lines changed

.ansible-lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ skip_list:
66
- no-changed-when # Commands should not change things if nothing needs doing.
77
- risky-shell-pipe # Shells that use pipes should set the pipefail option.
88
- literal-compare # Don't compare to literal True/False.
9+
- var-naming[no-role-prefix] # Internal variables don't need role prefix.

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id-token: write
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 1
3131

.github/workflows/development.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
id-token: write
1919
contents: read
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
ref: development
2424

@@ -36,7 +36,7 @@ jobs:
3636
./script/build_release dev
3737
3838
- name: Configure AWS credentials
39-
uses: aws-actions/configure-aws-credentials@v4
39+
uses: aws-actions/configure-aws-credentials@v5
4040
with:
4141
role-to-assume: ${{ secrets.AWS_ROLE_DEV }}
4242
aws-region: ${{ secrets.AWS_ACCESS_REGION }}

.github/workflows/pull-requests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
name: Test Pull Request
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

17-
- uses: actions/setup-python@v5
17+
- uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.13' # renovate: datasource=github-tags depName=python
2020

2121
- name: Install dependencies
2222
run: |
23-
python -m pip install --upgrade pip
24-
pip install ansible==10.2.0 # renovate: datasource=pypi
25-
pip install ansible-lint==24.7.0 # renovate: datasource=pypi
23+
python -m pip install --upgrade pip
24+
pip install ansible==12.2.0 # renovate: datasource=pypi depName=ansible
25+
pip install ansible-lint==25.9.2 # renovate: datasource=pypi depName=ansible-lint
2626
2727
- name: Syntax Check
2828
run: |
@@ -36,9 +36,9 @@ jobs:
3636
name: Build Pull Request
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040

41-
- uses: actions/setup-python@v5
41+
- uses: actions/setup-python@v6
4242

4343
- name: Build PR release
4444
run: |

.github/workflows/release-candidate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
id-token: write
1919
contents: write
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
ref: RC
2424

@@ -39,7 +39,7 @@ jobs:
3939
./script/build_release rc
4040
4141
- name: Configure AWS credentials
42-
uses: aws-actions/configure-aws-credentials@v4
42+
uses: aws-actions/configure-aws-credentials@v5
4343
with:
4444
role-to-assume: ${{ secrets.AWS_ROLE_STAGING }}
4545
aws-region: ${{ secrets.AWS_ACCESS_REGION }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id-token: write
1818
contents: write
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
ref: master
2323

@@ -38,7 +38,7 @@ jobs:
3838
./script/build_release release
3939
4040
- name: Configure AWS credentials
41-
uses: aws-actions/configure-aws-credentials@v4
41+
uses: aws-actions/configure-aws-credentials@v5
4242
with:
4343
role-to-assume: ${{ secrets.AWS_ROLE_PROD }}
4444
aws-region: ${{ secrets.AWS_ACCESS_REGION }}

.github/workflows/rolling.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
id-token: write
2121
contents: write
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
ref: 'master'
2626

@@ -47,7 +47,7 @@ jobs:
4747
./script/build_release rolling
4848
4949
- name: Configure AWS credentials
50-
uses: aws-actions/configure-aws-credentials@v4
50+
uses: aws-actions/configure-aws-credentials@v5
5151
with:
5252
role-to-assume: ${{ secrets.AWS_ROLE_ROLLING }}
5353
aws-region: ${{ secrets.AWS_ACCESS_REGION }}

CHANGELOG.md

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,36 @@
33

44
All notable changes to this project will be documented in this file.
55

6-
## [2.0.88] - Unreleased
6+
## [2.0.89] - 2025-11-08
7+
8+
### Added
9+
10+
- OpenSUSE 16.0 support with live ISO boot method
11+
- Dasharo Tools Suite updated to v2.7.0 and v2.7.1
12+
13+
### Changed
14+
15+
- Updated Ansible to v12 for improved build system
16+
- Updated ansible-lint to v24.12.2 with compatibility fixes
17+
- Various distribution version updates:
18+
- Arch Linux updated to 2025.11.01
19+
- SmartOS updated to 20251030T000436Z
20+
- CoreOS updated to 42.20251012.3.0-stable, 43.20251024.2.0-testing, 43.20251027.1.0-next
21+
- IPFire updated to 2.29-core198
22+
- Improved dependency tracking in GitHub workflows
23+
- Updated GitHub Actions:
24+
- actions/checkout to v5
25+
- actions/setup-python to v6
26+
- aws-actions/configure-aws-credentials to v5
27+
28+
### Fixed
29+
30+
- OpenSUSE 16.0 boot configuration now uses live ISO method with proper root= parameter
31+
- Ansible-lint configuration updated to skip var-naming rule for internal variables
32+
- CI/CD compatibility issues resolved between Ansible and ansible-lint versions
33+
- Renovate configuration JSON syntax errors corrected
34+
35+
## [2.0.88] - 2025-08-09
736

837
### Added
938

@@ -24,10 +53,6 @@ All notable changes to this project will be documented in this file.
2453

2554
### Fixed
2655

27-
- Loading of TFTP menu files (fixed HOSTNAME typo): local-vars.ipxe, HOSTNAME-${hostname}.ipxe,
28-
MAC-${mac:hexraw}.ipxe, MAC-${mac:hexhyp}.ipxe and custom menu.ipxe from the
29-
root of the tftp server. The root `tftp-root-path` is a variable and can be
30-
set in `local-vars.ipxe` to override. The default is `/`
3156
- Fedora CoreOS kernel filename format corrected
3257

3358
### Removed

commit_revert.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Revert "<original commit message>"
2+
3+
This reverts commit 7834c2e8b6619896fb0a2479c99baed79498cb34.

0 commit comments

Comments
 (0)