Changelog with new release

Hi,

I would like to know if it is possible to see the changelog at each new tumbleweed version?

thanks

Hi
A brief summary is in the announcement of a release in the Forum, follow the link to the Mailing List. Else look in the Tumbleweed iso repository for the Changes.yyyymmdd.txt file: http://download.opensuse.org/tumbleweed/iso/

Enabled timer:

**erlangen:~ #** systemctl status packagekit-background.timer 
**●** packagekit-background.timer - Systemd timer to update the system daily with PackageKit 
     Loaded: loaded (/usr/lib/systemd/system/packagekit-background.timer; enabled; vendor preset: disabled) 
     Active: **active (waiting)** since Mon 2022-02-28 19:31:38 CET; 9h ago 
    Trigger: Wed 2022-03-02 00:00:00 CET; 18h left 
   Triggers: ● packagekit-background.service 

Feb 28 19:31:38 erlangen systemd[1]: Started Systemd timer to update the system daily with PackageKit. 
**erlangen:~ #**

The timer triggers packagekit-background.service which sends a list of pending updates:

System updates available: erlangen

Von:    root <root@localhost>
An:    karl@localhost
Datum:    28.02.22 03:24
Transaktion:    Aktualisierungen werden abgerufen
Status:         Warten in Warteschlange
Status:         Starten
Status:         Abfragen
Prozentsatz:    0
Status:         Software-Liste wird aktualisiert
Prozentsatz:    20
Prozentsatz:    100
Prozentsatz:    40
Prozentsatz:    80
Prozentsatz:    100
Status:         Fertig
Ergebnisse:
Verbesserung ImageMagick-7.1.0.26-1.1.x86_64 (oss)
Verbesserung ImageMagick-config-7-SUSE-7.1.0.26-1.1.x86_64 (oss)
Verbesserung Mesa-21.3.7-302.1.x86_64 (oss)
Verbesserung Mesa-KHR-devel-21.3.7-302.1.x86_64 (oss)
Verbesserung Mesa-dri-21.3.7-302.1.x86_64 (oss)
Verbesserung Mesa-gallium-21.3.7-302.1.x86_64 (oss)
Verbesserung Mesa-libEGL-devel-21.3.7-302.1.x86_64 (oss)
Verbesserung Mesa-libEGL1-21.3.7-302.1.x86_64 (oss)
Verbesserung Mesa-libGL-devel-21.3.7-302.1.x86_64 (oss)
...

thank you, and what you do as code to get the updated change list?



**james@msi**:**~**> systemctl status packagekit-background.timer  
○ packagekit-background.timer - Systemd timer to update the system daily with PackageKit 
     Loaded: loaded (/usr/lib/systemd/system/packagekit-background.timer; disabled; vendor preset: disabled) 
     Active: inactive (dead) 
    Trigger: n/a 
   Triggers: ● packagekit-background.service 
**james@msi**:**~**> systemctl start packagekit-background.timer         
**james@msi**:**~**> systemctl status packagekit-background.timer  
**●** packagekit-background.timer - Systemd timer to update the system daily with PackageKit 
     Loaded: loaded (/usr/lib/systemd/system/packagekit-background.timer; disabled; vendor preset: disabled) 
     Active: **active (waiting)** since Tue 2022-03-01 15:45:46 EST; 4s ago 
    Trigger: Wed 2022-03-02 00:00:00 EST; 8h left 
   Triggers: ● packagekit-background.service 
**james@msi**:**~**> systemctl enable packagekit-background.timer        
Created symlink /etc/systemd/system/timers.target.wants/packagekit-background.timer → /usr/lib/systemd/system/packagekit-backgro
und.timer. 
**james@msi**:**~**> systemctl status packagekit-background.timer  
**●** packagekit-background.timer - Systemd timer to update the system daily with PackageKit 
     Loaded: loaded (/usr/lib/systemd/system/packagekit-background.timer; enabled; vendor preset: disabled) 
     Active: **active (waiting)** since Tue 2022-03-01 15:45:46 EST; 47s ago 
    Trigger: Wed 2022-03-02 00:00:00 EST; 8h left 
   Triggers: ● packagekit-background.service



Also, check out “Announcements” in the “News & Announcements” sub-forum.

Gene

Take a look at https://github.com/bzoltan1/zypper-changelog-plugin which is available in repos.

packagekit-background.service invokes a script. I modified the service as follows:

[OVERRIDDEN] /etc/systemd/system/packagekit-background.service → /usr/lib/systemd/system/packagekit-background.service 

--- /usr/lib/systemd/system/packagekit-background.service       2022-02-20 11:47:31.000000000 +0100 
+++ /etc/systemd/system/packagekit-background.service   2019-12-14 14:37:09.893994109 +0100 
@@ -2,4 +2,4 @@ 
 Description=Script to update the system with PackageKit 
  
 [Service] 
-ExecStart=/usr/share/PackageKit/packagekit-background.sh 
+ExecStart=/usr/local/PackageKit/packagekit-background.sh


**erlangen:~ #** systemctl cat packagekit-background.service  
**# /etc/systemd/system/packagekit-background.service**
[Unit] 
Description=Script to update the system with PackageKit 

[Service] 
ExecStart=/usr/local/PackageKit/packagekit-background.sh 
**erlangen:~ #**

Configure /usr/local/PackageKit/packagekit-background.sh as needed.