public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/tuned] rawhide: new release
@ 2026-09-10 12:24 
  0 siblings, 0 replies; only message in thread
From:  @ 2026-09-10 12:24 UTC (permalink / raw)
  To: git-commits

          A new commit has been pushed.

          Repo   : rpms/tuned
          Branch : rawhide
          Commit : 552f03c0fd7fbd62e62d7a1e89c4fa7bb01a291f
          Author : Jaroslav Škarvada <jskarvad@redhat.com>
          Date   : 2026-09-10T14:24:30+02:00
          Stats  : +42/-3 in 2 file(s)
          URL    : https://src.fedoraproject.org/rpms/tuned/c/552f03c0fd7fbd62e62d7a1e89c4fa7bb01a291f?branch=rawhide

          Log:
          new release

rebased tuned to latest upstream
spec: require rpm-ostree on image mode (bootc) systems
scheduler: check for EPERM when setting IRQ affinity
  resolves: RHEL-153655
bootloader: set correct permission for tempdir
  resolves: RHEL-121198
commands: better error msgs when creating directory and hardened dir mode
docs: build reference guide
systemd: used drop-ins for configuration
  resolves: RHEL-97580
systemd: do not backup the drop-in configuration
net: add more coalescing options, filter out unsupported ones
  resolves: RHEL-152675
cpu: do not log error if boost isn't supported
  resolves: RHEL-169618
bootloader: add bootc loader-entries set-options-for-source support
  resolves: RHEL-170825
cpu: fixed TypeError when load_threshold is set in a profil
openshift: include network-throughput profile
drop support for vm.laptop_mode which is deprecated in kernel 7.0
net: fixed ring parser to work with rx-mini and rx-jumbo
  resolves: RHEL-168025
lscpu_check: do not traceback on invalid regex
  resolves: RHEL-132575
network-latency: increase AVC cache to 8192
functions: use iw for Wi-Fi power saving

---
diff --git a/sources b/sources
index f515150..98da3ce 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (tuned-2.27.0.tar.gz) = 7471d073879a688da66e72c4f5c562d1a732d6bfb562d8c033874a8edbad2bab3cf3c7dc387270bf99ae6b1b35ffc451173122e32023116709567e529e09dc52
+SHA512 (tuned-2.28.0.tar.gz) = 3bdefbcc45afa651eecf5d59625babd83d5bed73594eb1db17e56edd0f1a25d60f346e7cb7bb8061a98833b228440e14730126b7f9b9ac5c97841d068574b27f

diff --git a/tuned.spec b/tuned.spec
index 1d8eeeb..34231c7 100644
--- a/tuned.spec
+++ b/tuned.spec
@@ -57,8 +57,8 @@
 
 Summary: A dynamic adaptive system tuning daemon
 Name: tuned
-Version: 2.27.0
-Release: 3%{?prerel1}%{?git_suffix:.%{git_suffix}}%{?dist}
+Version: 2.28.0
+Release: 1%{?prerel1}%{?git_suffix:.%{git_suffix}}%{?dist}
 License: GPL-2.0-or-later AND CC-BY-SA-3.0
 %if 0%{?git_commit:1}
 Source0: https://github.com/redhat-performance/%{name}/archive/%{git_commit}/%{name}-%{version}-%{git_suffix}.tar.gz
@@ -108,6 +108,7 @@ Requires: pygobject3-base
 %endif
 Requires: virt-what
 Requires: ethtool
+Requires: iw
 Requires: gawk
 Requires: util-linux
 Requires: dbus
@@ -135,6 +136,12 @@ Recommends: subscription-manager
 Requires: python3-syspurpose
 %endif
 %endif
+# On image mode (bootc) systems, rpm-ostree is needed by the bootloader
+# plugin for kernel argument management when bootc's native
+# set-options-for-source is not yet available
+%if 0%{?fedora} || 0%{?rhel} >= 9
+Requires: (rpm-ostree if bootc)
+%endif
 
 %description
 The tuned package contains a daemon that tunes system settings dynamically.
@@ -521,6 +528,9 @@ fi
 %config(noreplace) %{_sysconfdir}/tuned/tuned-main.conf
 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/tuned/bootcmdline
 %verify(not size mtime md5) %{_sysconfdir}/modprobe.d/tuned.conf
+# https://bugzilla.redhat.com/show_bug.cgi?id=2444143
+%dir %{_sysconfdir}/systemd/system.conf.d
+%verify(not size mtime md5) %{_sysconfdir}/systemd/system.conf.d/00-tuned.conf
 %{_tmpfilesdir}/tuned.conf
 %{_unitdir}/tuned.service
 %dir %{_localstatedir}/log/tuned
@@ -648,6 +658,35 @@ fi
 %config(noreplace) %{_sysconfdir}/tuned/ppd.conf
 
 %changelog
+* Thu Sep 10 2026 Jaroslav Škarvada <jskarvad@redhat.com> - 2.28.0-1
+- new release
+  - rebased tuned to latest upstream
+  - spec: require rpm-ostree on image mode (bootc) systems
+  - scheduler: check for EPERM when setting IRQ affinity
+    resolves: RHEL-153655
+  - bootloader: set correct permission for tempdir
+    resolves: RHEL-121198
+  - commands: better error msgs when creating directory and hardened dir mode
+  - docs: build reference guide
+  - systemd: used drop-ins for configuration
+    resolves: RHEL-97580
+  - systemd: do not backup the drop-in configuration
+  - net: add more coalescing options, filter out unsupported ones
+    resolves: RHEL-152675
+  - cpu: do not log error if boost isn't supported
+    resolves: RHEL-169618
+  - bootloader: add bootc loader-entries set-options-for-source support
+    resolves: RHEL-170825
+  - cpu: fixed TypeError when load_threshold is set in a profil
+  - openshift: include network-throughput profile
+  - drop support for vm.laptop_mode which is deprecated in kernel 7.0
+  - net: fixed ring parser to work with rx-mini and rx-jumbo
+    resolves: RHEL-168025
+  - lscpu_check: do not traceback on invalid regex
+    resolves: RHEL-132575
+  - network-latency: increase AVC cache to 8192
+  - functions: use iw for Wi-Fi power saving
+
 * Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.27.0-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
 

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-09-10 12:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-10 12:24 [rpms/tuned] rawhide: new release 

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox