Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package glycin-loaders for openSUSE:Factory checked in at 2025-07-03 12:09:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/glycin-loaders (Old) and /work/SRC/openSUSE:Factory/.glycin-loaders.new.1903 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "glycin-loaders" Thu Jul 3 12:09:08 2025 rev:16 rq:1289800 version:1.2.2 Changes: -------- --- /work/SRC/openSUSE:Factory/glycin-loaders/glycin-loaders.changes 2025-04-20 19:54:40.287634101 +0200 +++ /work/SRC/openSUSE:Factory/.glycin-loaders.new.1903/glycin-loaders.changes 2025-07-03 12:11:09.667446565 +0200 @@ -1,0 +2,9 @@ +Fri Jun 27 16:25:30 UTC 2025 - Bjørn Lie <[email protected]> + +- Update to version 1.2.2: + + This release contains the following new component versions: + - glycin-image-rs 1.2.2 + + Fixed: image-rs: Force at least zune-jpeg 0.4.18 to fix + multiple JPEG loading issues. + +------------------------------------------------------------------- Old: ---- glycin-loaders-1.2.1.obscpio New: ---- glycin-loaders-1.2.2.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ glycin-loaders.spec ++++++ --- /var/tmp/diff_new_pack.r9BR9r/_old 2025-07-03 12:11:11.359516589 +0200 +++ /var/tmp/diff_new_pack.r9BR9r/_new 2025-07-03 12:11:11.363516755 +0200 @@ -19,7 +19,7 @@ %bcond_without jxl Name: glycin-loaders -Version: 1.2.1 +Version: 1.2.2 Release: 0 Summary: Sandboxed image rendering License: LGPL-2.1-or-later OR MPL-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.r9BR9r/_old 2025-07-03 12:11:11.395518078 +0200 +++ /var/tmp/diff_new_pack.r9BR9r/_new 2025-07-03 12:11:11.399518245 +0200 @@ -3,7 +3,7 @@ <service name="obs_scm" mode="manual"> <param name="url">https://gitlab.gnome.org/GNOME/glycin.git</param> <param name="scm">git</param> - <param name="revision">1.2.1</param> + <param name="revision">1.2.2</param> <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param> <param name="versionrewrite-pattern">v?(.*)\+0</param> <param name="versionrewrite-replacement">\1</param> ++++++ glycin-loaders-1.2.1.obscpio -> glycin-loaders-1.2.2.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glycin-loaders-1.2.1/Cargo.lock new/glycin-loaders-1.2.2/Cargo.lock --- old/glycin-loaders-1.2.1/Cargo.lock 2025-04-11 13:45:43.000000000 +0200 +++ new/glycin-loaders-1.2.2/Cargo.lock 2025-06-27 15:21:50.000000000 +0200 @@ -1000,7 +1000,7 @@ [[package]] name = "glycin-image-rs" -version = "1.2.1" +version = "1.2.2" dependencies = [ "glycin-utils", "gufo", @@ -1010,6 +1010,7 @@ "image", "jpeg-encoder", "log", + "png", "zune-jpeg", ] @@ -3051,9 +3052,9 @@ [[package]] name = "zune-jpeg" -version = "0.4.14" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99a5bab8d7dedf81405c4bb1f2b83ea057643d9cb28778cea9eecddeedd2e028" +checksum = "7384255a918371b5af158218d131530f694de9ad3815ebdd0453a940485cb0fa" dependencies = [ "zune-core", ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glycin-loaders-1.2.1/NEWS new/glycin-loaders-1.2.2/NEWS --- old/glycin-loaders-1.2.1/NEWS 2025-04-11 13:45:43.000000000 +0200 +++ new/glycin-loaders-1.2.2/NEWS 2025-06-27 15:21:50.000000000 +0200 @@ -1,3 +1,13 @@ +## 1.2.2 (2025-06-27) + +This release contains the following new component versions: + +- glycin-image-rs 1.2.2 + +### Fixed + +- image-rs: Force at least zune-jpeg 0.4.18 to fix multiple JPEG loading issues. + ## 1.2.1 (2025-04-11) This release contains the following new component versions: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glycin-loaders-1.2.1/loaders/glycin-image-rs/Cargo.toml new/glycin-loaders-1.2.2/loaders/glycin-image-rs/Cargo.toml --- old/glycin-loaders-1.2.1/loaders/glycin-image-rs/Cargo.toml 2025-04-11 13:45:43.000000000 +0200 +++ new/glycin-loaders-1.2.2/loaders/glycin-image-rs/Cargo.toml 2025-06-27 15:21:50.000000000 +0200 @@ -1,6 +1,6 @@ [package] name = "glycin-image-rs" -version = "1.2.1" +version = "1.2.2" authors.workspace = true description.workspace = true license.workspace = true @@ -32,5 +32,7 @@ "webp", ] } log.workspace = true -zune-jpeg = "0.4.14" jpeg-encoder = "0.6.0" +# Force newer version for bugfixes +zune-jpeg = "0.4.18" +png = "0.17.16" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glycin-loaders-1.2.1/meson.build new/glycin-loaders-1.2.2/meson.build --- old/glycin-loaders-1.2.1/meson.build 2025-04-11 13:45:43.000000000 +0200 +++ new/glycin-loaders-1.2.2/meson.build 2025-06-27 15:21:50.000000000 +0200 @@ -4,7 +4,7 @@ 'c', # This is a global version that's neither related to the glycin-loaders version # nor the libglycin version - version: '1.2.1', + version: '1.2.2', meson_version: '>=1.2', ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glycin-loaders-1.2.1/news.d/1.2.2/components.json new/glycin-loaders-1.2.2/news.d/1.2.2/components.json --- old/glycin-loaders-1.2.1/news.d/1.2.2/components.json 1970-01-01 01:00:00.000000000 +0100 +++ new/glycin-loaders-1.2.2/news.d/1.2.2/components.json 2025-06-27 15:21:50.000000000 +0200 @@ -0,0 +1,38 @@ +{ + "glycin-utils": { + "version": "3.0.1", + "state": "unchanged" + }, + "glycin": { + "version": "2.1.1", + "state": "unchanged" + }, + "libglycin": { + "version": "1.0.2", + "state": "unchanged" + }, + "libglycin-gtk4": { + "version": "1.0.2", + "state": "unchanged" + }, + "glycin-heif": { + "version": "1.2.0", + "state": "unchanged" + }, + "glycin-image-rs": { + "version": "1.2.2", + "state": "changed" + }, + "glycin-jxl": { + "version": "1.2.0", + "state": "unchanged" + }, + "glycin-raw": { + "version": "1.2.0", + "state": "unchanged" + }, + "glycin-svg": { + "version": "1.2.0", + "state": "unchanged" + } +} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glycin-loaders-1.2.1/news.d/1.2.2/fixed-multiple-jpeg-rendering-issues new/glycin-loaders-1.2.2/news.d/1.2.2/fixed-multiple-jpeg-rendering-issues --- old/glycin-loaders-1.2.1/news.d/1.2.2/fixed-multiple-jpeg-rendering-issues 1970-01-01 01:00:00.000000000 +0100 +++ new/glycin-loaders-1.2.2/news.d/1.2.2/fixed-multiple-jpeg-rendering-issues 2025-06-27 15:21:50.000000000 +0200 @@ -0,0 +1 @@ +image-rs: Force at least zune-jpeg 0.4.18 to fix multiple JPEG loading issues. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glycin-loaders-1.2.1/news.d/1.2.2/released new/glycin-loaders-1.2.2/news.d/1.2.2/released --- old/glycin-loaders-1.2.1/news.d/1.2.2/released 1970-01-01 01:00:00.000000000 +0100 +++ new/glycin-loaders-1.2.2/news.d/1.2.2/released 2025-06-27 15:21:50.000000000 +0200 @@ -0,0 +1 @@ +2025-06-27 ++++++ glycin-loaders.obsinfo ++++++ --- /var/tmp/diff_new_pack.r9BR9r/_old 2025-07-03 12:11:12.019543903 +0200 +++ /var/tmp/diff_new_pack.r9BR9r/_new 2025-07-03 12:11:12.023544069 +0200 @@ -1,5 +1,5 @@ name: glycin-loaders -version: 1.2.1 -mtime: 1744371943 -commit: 7d10c2f3e59e1d4dbc2a33241eb54aa4d9f84b3f +version: 1.2.2 +mtime: 1751030510 +commit: c7d362287303944721cf583d4d9e9f7721bfa407 ++++++ vendor.tar.zst ++++++ /work/SRC/openSUSE:Factory/glycin-loaders/vendor.tar.zst /work/SRC/openSUSE:Factory/.glycin-loaders.new.1903/vendor.tar.zst differ: char 7, line 1
