mirror of
https://github.com/truenas/charts.git
synced 2026-05-12 11:36:10 +08:00
* 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>
39 lines
868 B
Python
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)))
|