Skip to content

Commit 1283941

Browse files
authored
Merge pull request #1659 from netbootxyz/RC
2 parents 27d4291 + 946d931 commit 1283941

File tree

16 files changed

+292
-176
lines changed

16 files changed

+292
-176
lines changed

.github/workflows/claude.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Claude PR Assistant
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_review_comment:
7+
types: [created]
8+
issues:
9+
types: [opened, assigned]
10+
pull_request_review:
11+
types: [submitted]
12+
13+
jobs:
14+
claude-code-action:
15+
if: |
16+
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
17+
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
18+
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
19+
(github.event_name == 'issues' && contains(github.event.issue.body, '@claude'))
20+
runs-on: ubuntu-latest
21+
permissions:
22+
contents: read
23+
pull-requests: read
24+
issues: read
25+
id-token: write
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v4
29+
with:
30+
fetch-depth: 1
31+
32+
- name: Run Claude PR Action
33+
uses: anthropics/claude-code-action@beta
34+
with:
35+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
36+
timeout_minutes: "60"

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
33

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

6+
## [2.0.88] - Unreleased
7+
8+
### Added
9+
10+
- CachyOS live distribution with archiso boot configuration
11+
- Ubuntu Spins distribution template for Ubuntu flavor variants
12+
- Debian 13 (Trixie) net installer
13+
- Rocky Linux 10 and AlmaLinux 10
14+
- Flatcar Container Linux ARM64 architecture support
15+
- Proxmox VE 9.0
16+
- Dasharo Tools Suite updated to v2.6.0
17+
- SystemRescue archiso_pxe_http initrd support
18+
19+
### Changed
20+
21+
- FreeDOS updated to v1.4 with corrected URLs
22+
- Various distribution version updates and endpoint refreshes
23+
- Improved MAC address handling in TFTP boot configuration
24+
25+
### Fixed
26+
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 `/`
31+
- Fedora CoreOS kernel filename format corrected
32+
33+
### Removed
34+
35+
- Deepin distribution completely removed from the system
36+
637
## [2.0.87] - 2025-05-08
738

839
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,15 @@ In addition to being able to host netboot.xyz locally, you can also create your
127127
| BlackArch Linux | https://blackarch.org | Yes | Yes |
128128
| Bluestar Linux | https://sourceforge.net/projects/bluestarlinux | No | Yes |
129129
| Bodhi Linux | https://www.bodhilinux.com | No | Yes |
130+
| CachyOS | https://cachyos.org | No | Yes |
130131
| CentOS | https://centos.org | Yes | No |
131-
| Fedora CoreOS | https://getfedora.org/en/coreos?stream=stable | Yes | No |
132132
| Debian | https://debian.org | Yes | Yes|
133-
| Deepin | https://www.deepin.org | No | Yes |
134133
| Devuan | https://devuan.org | Yes | No |
135134
| Elementary OS | https://elementary.io | No | Yes |
136135
| EndeavourOS | https://endeavouros.com | No | Yes |
137136
| Fatdog64 | https://distro.ibiblio.org/fatdog/web/ | No | Yes |
138137
| Fedora | https://fedoraproject.org | Yes | Yes |
138+
| Fedora CoreOS | https://getfedora.org/en/coreos?stream=stable | Yes | No |
139139
| Feren OS | https://ferenos.weebly.com/ | Yes | No |
140140
| Flatcar Container Linux | https://www.flatcar.org | Yes | No |
141141
| FreeBSD | https://freebsd.org | Yes, disk image | No |

0 commit comments

Comments
 (0)