14
0

3 Commits

Author SHA256 Message Date
6fa0f83187 Update to version 12 2025-06-27 07:38:31 +01:00
fe4f254e1d Sort tags numerically in update script to get the right version 2025-06-05 12:57:20 +01:00
f84c4b1e6c Update to version 11 2025-06-05 12:57:20 +01:00
8 changed files with 1078 additions and 1042 deletions

BIN
cockpit-subscriptions-10.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
cockpit-subscriptions-12.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Fri Jun 27 06:35:03 UTC 2025 - Alice Brooks <alice.brooks@suse.com>
- Update to version 12
* Translation updates
* Fix state not updating between superuser state changes bsc#1243212
-------------------------------------------------------------------
Thu Jun 5 11:37:43 UTC 2025 - Alice Brooks <alice.brooks@suse.com>
- Update to version 11
* Translation updates
* Fix transactional-update handling of system deregistration
fixes bsc#1244034
* Dependency updates
-------------------------------------------------------------------
Fri May 23 08:57:51 UTC 2025 - Alice Brooks <alice.brooks@suse.com>

View File

@@ -16,7 +16,7 @@
#
Name: cockpit-subscriptions
Version: 10
Version: 12
Release: 1%{?dist}
Summary: Cockpit module for managing and registering subscriptions
License: LGPL-2.1-or-later

BIN
node_modules.obscpio (Stored with Git LFS)

Binary file not shown.

File diff suppressed because it is too large Load Diff

1095
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,7 +13,7 @@ fi
### Fetch latest soruces
###
newVersion=$(git ls-remote --tags --refs "https://github.com/openSUSE/cockpit-subscriptions" | cut -d/ -f3- | tail -n1)
newVersion=$(git ls-remote --tags --refs "https://github.com/openSUSE/cockpit-subscriptions" | cut -d/ -f3- | sort -n | tail -n1)
echo "Current version: $curVersion"
echo " New version: $newVersion"