Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lowfi for openSUSE:Factory checked in at 2026-03-23 17:12:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lowfi (Old) and /work/SRC/openSUSE:Factory/.lowfi.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lowfi" Mon Mar 23 17:12:12 2026 rev:11 rq:1341866 version:2.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/lowfi/lowfi.changes 2026-03-07 20:15:14.457048590 +0100 +++ /work/SRC/openSUSE:Factory/.lowfi.new.8177/lowfi.changes 2026-03-23 17:12:46.812209297 +0100 @@ -1,0 +2,6 @@ +Sat Mar 21 08:46:08 UTC 2026 - Andrea Manzini <[email protected]> + +- update to 2.0.5: + * Handful of dependency updates + +------------------------------------------------------------------- Old: ---- lowfi-2.0.4.tar.zst New: ---- lowfi-2.0.5.tar.zst ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lowfi.spec ++++++ --- /var/tmp/diff_new_pack.0khvCU/_old 2026-03-23 17:12:48.928297432 +0100 +++ /var/tmp/diff_new_pack.0khvCU/_new 2026-03-23 17:12:48.956298599 +0100 @@ -17,7 +17,7 @@ Name: lowfi -Version: 2.0.4 +Version: 2.0.5 Release: 0 Summary: An extremely simple lofi player License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.0khvCU/_old 2026-03-23 17:12:49.288312428 +0100 +++ /var/tmp/diff_new_pack.0khvCU/_new 2026-03-23 17:12:49.320313761 +0100 @@ -6,7 +6,7 @@ <param name="scm">git</param> <param name="version">git-master</param> <param name="versionformat">@PARENT_TAG@</param> - <param name="revision">2.0.4</param> + <param name="revision">2.0.5</param> <param name="changesauthor">[email protected]</param> </service> <service mode="manual" name="set_version"/> ++++++ lowfi-2.0.4.tar.zst -> lowfi-2.0.5.tar.zst ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lowfi-2.0.4/Cargo.lock new/lowfi-2.0.5/Cargo.lock --- old/lowfi-2.0.4/Cargo.lock 2026-03-05 20:47:20.000000000 +0100 +++ new/lowfi-2.0.5/Cargo.lock 2026-03-07 09:06:00.000000000 +0100 @@ -1435,7 +1435,7 @@ [[package]] name = "lowfi" -version = "2.0.4" +version = "2.0.5" dependencies = [ "arc-swap", "bytes", @@ -2497,12 +2497,12 @@ [[package]] name = "socket2" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" dependencies = [ "libc", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -3071,9 +3071,9 @@ [[package]] name = "uuid" -version = "1.21.0" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb" +checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" dependencies = [ "js-sys", "serde_core", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lowfi-2.0.4/Cargo.toml new/lowfi-2.0.5/Cargo.toml --- old/lowfi-2.0.4/Cargo.toml 2026-03-05 20:47:20.000000000 +0100 +++ new/lowfi-2.0.5/Cargo.toml 2026-03-07 09:06:00.000000000 +0100 @@ -1,6 +1,6 @@ [package] name = "lowfi" -version = "2.0.4" +version = "2.0.5" rust-version = "1.83.0" edition = "2021" description = "An extremely simple lofi player." @@ -30,20 +30,20 @@ [dependencies] # Basics -clap = { version = "4.5.21", features = ["derive", "cargo"] } +clap = { version = "4.5.60", features = ["derive", "cargo"] } eyre = "0.6.12" fastrand = "2.3.0" -thiserror = "2.0.12" +thiserror = "2.0.18" # Async -tokio = { version = "1.41.1", features = ["macros", "rt", "fs", "io-util", "sync", "time"], default-features = false } -futures-util = { version = "0.3.31", default-features = false } -arc-swap = { version = "1.7.1", optional = true } +tokio = { version = "1.50.0", features = ["macros", "rt", "fs", "io-util", "sync", "time"], default-features = false } +futures-util = { version = "0.3.32", default-features = false } +arc-swap = { version = "1.8.2", optional = true } # Data -reqwest = { version = "0.13.1", features = ["stream", "http2", "default-tls"], default-features = false } -chrono = { version = "0.4.42", features = ["clock"], default-features = false } -bytes = "1.9.0" +reqwest = { version = "0.13.2", features = ["stream", "http2", "default-tls"], default-features = false } +chrono = { version = "0.4.44", features = ["clock"], default-features = false } +bytes = "1.11.1" # I/O crossterm = { version = "0.29.0", features = ["event-stream", "windows"], default-features = false } @@ -53,17 +53,17 @@ # Text processing unicode-segmentation = "1.12.0" -url = { version = "2.5.4", default-features = false } +url = { version = "2.5.8", default-features = false } # Scraper -serde = { version = "1.0.219", features = ["derive"], optional = true } -serde_json = { version = "1.0.142", optional = true } +serde = { version = "1.0.228", features = ["derive"], optional = true } +serde_json = { version = "1.0.149", optional = true } scraper = { version = "0.25.0", optional = true } html-escape = { version = "0.2.13", optional = true } -indicatif = { version = "0.18.0", optional = true } +indicatif = { version = "0.18.4", optional = true } [target.'cfg(target_os = "linux")'.dependencies] -libc = "0.2.167" +libc = "0.2.182" [lints.clippy] all = { level = "warn", priority = -1 } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lowfi-2.0.4/README.md new/lowfi-2.0.5/README.md --- old/lowfi-2.0.4/README.md 2026-03-05 20:47:20.000000000 +0100 +++ new/lowfi-2.0.5/README.md 2026-03-07 09:06:00.000000000 +0100 @@ -72,7 +72,7 @@ zypper install lowfi ``` -### Debian +### Debian and Ubuntu > [!NOTE] > This uses an unofficial Debian repository maintained by [Dario > Griffo](https://github.com/dariogriffo). ++++++ vendor.tar.zst ++++++ /work/SRC/openSUSE:Factory/lowfi/vendor.tar.zst /work/SRC/openSUSE:Factory/.lowfi.new.8177/vendor.tar.zst differ: char 7, line 1
