feat: add DNF and YUM package manager backends for RPM-based systems
Some checks failed
CI/CD Pipeline / Code Format (push) Failing after 1s
CI/CD Pipeline / Clippy Lints (push) Successful in 43s
CI/CD Pipeline / Enrollment Tests (push) Has been skipped
CI/CD Pipeline / All Unit Tests (push) Successful in 1m13s
CI/CD Pipeline / Build Debian Package (push) Has been skipped
CI/CD Pipeline / Build Debian Package (Ubuntu 22.04) (push) Has been skipped
CI/CD Pipeline / Build RPM Package (push) Has been skipped
CI/CD Pipeline / Build Alpine Package (push) Has been skipped
CI/CD Pipeline / Build Arch Package (push) Has been skipped
CI/CD Pipeline / Security Audit (push) Successful in 5s
CI/CD Pipeline / Verify Enrollment CLI Flag (push) Successful in 57s
Some checks failed
CI/CD Pipeline / Code Format (push) Failing after 1s
CI/CD Pipeline / Clippy Lints (push) Successful in 43s
CI/CD Pipeline / Enrollment Tests (push) Has been skipped
CI/CD Pipeline / All Unit Tests (push) Successful in 1m13s
CI/CD Pipeline / Build Debian Package (push) Has been skipped
CI/CD Pipeline / Build Debian Package (Ubuntu 22.04) (push) Has been skipped
CI/CD Pipeline / Build RPM Package (push) Has been skipped
CI/CD Pipeline / Build Alpine Package (push) Has been skipped
CI/CD Pipeline / Build Arch Package (push) Has been skipped
CI/CD Pipeline / Security Audit (push) Successful in 5s
CI/CD Pipeline / Verify Enrollment CLI Flag (push) Successful in 57s
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1916,7 +1916,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "linux-patch-api"
|
name = "linux-patch-api"
|
||||||
version = "1.1.13"
|
version = "1.1.15"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix",
|
"actix",
|
||||||
"actix-rt",
|
"actix-rt",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "linux-patch-api"
|
name = "linux-patch-api"
|
||||||
version = "1.1.14"
|
version = "1.1.15"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Echo <echo@moon-dragon.us>"]
|
authors = ["Echo <echo@moon-dragon.us>"]
|
||||||
description = "Secure remote package management API for Linux systems"
|
description = "Secure remote package management API for Linux systems"
|
||||||
|
|||||||
11
debian/changelog
vendored
11
debian/changelog
vendored
@ -1,3 +1,14 @@
|
|||||||
|
linux-patch-api (1.1.15) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Add DNF package manager backend for Fedora/RHEL/CentOS 8+
|
||||||
|
* Add YUM package manager backend for RHEL/CentOS 7
|
||||||
|
* Fix: DNF backend not yet implemented error on Fedora systems
|
||||||
|
* Support rpm -qa for package listing, rpm -qi for package details
|
||||||
|
* Support dnf check-update (exit code 100) for patch detection
|
||||||
|
* Support yum check-update (exit code 100) for patch detection
|
||||||
|
|
||||||
|
-- Echo <echo@moon-dragon.us> Tue, 20 May 2026 15:41:00 -0500
|
||||||
|
|
||||||
linux-patch-api (1.1.14) unstable; urgency=medium
|
linux-patch-api (1.1.14) unstable; urgency=medium
|
||||||
|
|
||||||
* Fix RPM packaging: pre-build binary before tarball (like Alpine/Arch pattern)
|
* Fix RPM packaging: pre-build binary before tarball (like Alpine/Arch pattern)
|
||||||
|
|||||||
@ -163,6 +163,14 @@ fi
|
|||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue May 20 2026 Echo <echo@moon-dragon.us> - 1.1.15-1
|
||||||
|
- Add DNF package manager backend for Fedora/RHEL/CentOS 8+
|
||||||
|
- Add YUM package manager backend for RHEL/CentOS 7
|
||||||
|
- Fix: DNF backend not yet implemented error on Fedora systems
|
||||||
|
- Support rpm -qa for package listing, rpm -qi for package details
|
||||||
|
- Support dnf check-update (exit code 100) for patch detection
|
||||||
|
- Support yum check-update (exit code 100) for patch detection
|
||||||
|
|
||||||
* Tue May 20 2026 Echo <echo@moon-dragon.us> - 1.1.14-1
|
* Tue May 20 2026 Echo <echo@moon-dragon.us> - 1.1.14-1
|
||||||
- Fix RPM packaging: pre-build binary before tarball (like Alpine/Arch pattern)
|
- Fix RPM packaging: pre-build binary before tarball (like Alpine/Arch pattern)
|
||||||
- Fix rpmbuild can't find cargo in PATH - binary now included in source tarball
|
- Fix rpmbuild can't find cargo in PATH - binary now included in source tarball
|
||||||
|
|||||||
1176
src/packages/mod.rs
1176
src/packages/mod.rs
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user