Files
chart/library/ix-dev/community/adguard-home/upgrade_strategy
xxyzz 2b933a1cc6 NAS-122254 / 23.10 / Update adguard home to v0.107.29 (#1230)
* Update adguard home to v0.107.29

* bump common

* fix args to match last change 0211424191/docker/Dockerfile (L82)

* hmm

* Try again

* use appversion

* use the actual tag...

---------

Co-authored-by: Stavros kois <s.kois@outlook.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-06-02 00:00:19 +03:00

32 lines
728 B
Python
Executable File

#!/usr/bin/python3
import json
import re
import sys
from catalog_update.upgrade_strategy import semantic_versioning
RE_STABLE_VERSION = re.compile(r'v[0-9]+\.[0-9]+\.[0-9]+')
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
tags = {t.strip("v"): t for t in image_tags[key] if RE_STABLE_VERSION.fullmatch(t)}
version = semantic_versioning(list(tags))
if not version:
return {}
return {
'tags': {key: tags[version]},
'app_version': version,
}
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)))