Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package cockpit-subscriptions for
openSUSE:Factory checked in at 2026-01-30 18:28:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cockpit-subscriptions (Old)
and /work/SRC/openSUSE:Factory/.cockpit-subscriptions.new.1995 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cockpit-subscriptions"
Fri Jan 30 18:28:51 2026 rev:8 rq:1329978 version:14.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/cockpit-subscriptions/cockpit-subscriptions.changes
2026-01-13 21:36:33.960964629 +0100
+++
/work/SRC/openSUSE:Factory/.cockpit-subscriptions.new.1995/cockpit-subscriptions.changes
2026-01-30 18:30:43.802815608 +0100
@@ -1,0 +2,11 @@
+Thu Jan 29 09:14:56 UTC 2026 - Alice Brooks <[email protected]>
+
+- Update to version 14.4 for bsc#1257325
+ * Changes since 14.2
+ - 14.4
+ * Update @patternfly/react-core
+ - 14.3
+ * Translation updates
+ * Dependency updates
+
+-------------------------------------------------------------------
Old:
----
cockpit-subscriptions-14.2.tar.xz
New:
----
cockpit-subscriptions-14.4.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ cockpit-subscriptions.spec ++++++
--- /var/tmp/diff_new_pack.YgW4R4/_old 2026-01-30 18:31:12.868031956 +0100
+++ /var/tmp/diff_new_pack.YgW4R4/_new 2026-01-30 18:31:12.868031956 +0100
@@ -16,7 +16,7 @@
#
Name: cockpit-subscriptions
-Version: 14.2
+Version: 14.4
Release: 1%{?dist}
Summary: Cockpit module for managing and registering subscriptions
License: LGPL-2.1-or-later
@@ -39,7 +39,7 @@
Requires: suseconnect-ng
Provides: bundled(npm(@patternfly/patternfly)) = 6.4.0
-Provides: bundled(npm(@patternfly/react-core)) = 6.4.0
+Provides: bundled(npm(@patternfly/react-core)) = 6.4.1
Provides: bundled(npm(@patternfly/react-icons)) = 6.4.0
Provides: bundled(npm(@patternfly/react-styles)) = 6.4.0
Provides: bundled(npm(@patternfly/react-tokens)) = 6.4.0
++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.YgW4R4/_old 2026-01-30 18:31:12.912033797 +0100
+++ /var/tmp/diff_new_pack.YgW4R4/_new 2026-01-30 18:31:12.920034132 +0100
@@ -1,6 +1,6 @@
-mtime: 1768308238
-commit: c73e180e800a9b5310baf6ef1d2909aaa9e986ceba660186b5839b9663d52cca
+mtime: 1769679950
+commit: 1cc3553e6008ce8c098ccb82028c91eeb9972b0e20062602a66fa7588d786ee4
url: https://src.opensuse.org/cockpit/cockpit-subscriptions.git
-revision: c73e180e800a9b5310baf6ef1d2909aaa9e986ceba660186b5839b9663d52cca
+revision: 1cc3553e6008ce8c098ccb82028c91eeb9972b0e20062602a66fa7588d786ee4
projectscmsync: https://src.opensuse.org/cockpit/_ObsPrj.git
++++++ cockpit-subscriptions-14.2.tar.xz -> cockpit-subscriptions-14.4.tar.xz
++++++
++++ 3762 lines of diff (skipped)
++++++ node_modules.obscpio ++++++
/work/SRC/openSUSE:Factory/cockpit-subscriptions/node_modules.obscpio
/work/SRC/openSUSE:Factory/.cockpit-subscriptions.new.1995/node_modules.obscpio
differ: char 24796, line 209
++++++ node_modules.spec.inc ++++++
++++ 730 lines (skipped)
++++ between
/work/SRC/openSUSE:Factory/cockpit-subscriptions/node_modules.spec.inc
++++ and
/work/SRC/openSUSE:Factory/.cockpit-subscriptions.new.1995/node_modules.spec.inc
++++++ package-lock.json ++++++
++++ 1778 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/cockpit-subscriptions/package-lock.json
++++ and
/work/SRC/openSUSE:Factory/.cockpit-subscriptions.new.1995/package-lock.json
++++++ update_version.sh ++++++
--- /var/tmp/diff_new_pack.YgW4R4/_old 2026-01-30 18:31:13.352052212 +0100
+++ /var/tmp/diff_new_pack.YgW4R4/_new 2026-01-30 18:31:13.356052379 +0100
@@ -4,7 +4,7 @@
curVersion=$(grep Version: cockpit-subscriptions.spec | sed -e
's,^\(\s*Version:\s*\)\(.*\)\s*$,\2,')
-if [[ ! "$curVersion" =~ ^[0-9]+$ ]]; then
+if [[ ! "$curVersion" =~ ^[0-9]+(\.[0-9]+)?$ ]]; then
echo "Error: curVersion is not a valid integer"
exit 1
fi
@@ -18,12 +18,12 @@
echo "Current version: $curVersion"
echo " New version: $newVersion"
-if [[ ! "$newVersion" =~ ^[0-9]+$ ]]; then
+if [[ ! "$newVersion" =~ ^[0-9]+(\.[0-9]+)?$ ]]; then
echo "Error: newVersion cannot be determined"
exit 1
fi
-if [ "$curVersion" -ge "$newVersion" ]; then
+if [ "$(printf '%s\n' "$newVersion" "$curVersion" | sort -V | head -n1)" =
"$newVersion" ]; then
echo "Nothing to do."
exit 0
fi