Files
chart/library/ix-dev/community/firefly-iii/disable_upgrade_strategy
bugclerk d6fe7e6de4 Upgraded catalog item(s) (#3071)
* Upgraded catalog item(s)

        This commit upgrades netdata, minecraft, paperless-ngx, netbootxyz, autobrr, firefly-iii, filebrowser, audiobookshelf, tdarr catalog item(s).

* disable ff3 updates

---------

Co-authored-by: sonicaj <waqarsonic1@gmail.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2025-02-03 21:43:41 +02:00

39 lines
868 B
Python

#!/usr/bin/python3
import json
import re
import sys
from catalog_update.upgrade_strategy import semantic_versioning
RE_STABLE_VERSION = re.compile(r'version-[0-9]+\.[0-9]+\.[0-9]+')
def newer_mapping(image_tags):
output = {
"tags": {},
"app_version": ""
}
for key in image_tags.keys():
tags = {t.strip('version-'): t for t in image_tags[key] if RE_STABLE_VERSION.fullmatch(t)}
version = semantic_versioning(list(tags))
if not version:
continue
if key == 'image':
output['app_version'] = version
output['tags'][key] = tags[version]
return output
if __name__ == '__main__':
try:
versions_json = json.loads(sys.stdin.read())
except ValueError:
raise ValueError('Invalid json specified')
print(json.dumps(newer_mapping(versions_json)))