add missing fields to json output for image ls command
#132
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
With
uenv image ls --jsonsome useful uenv information are missing. In particular, this PR addsversionandtag.Before
{ "date": "2025-12-16 10:06:44", "digest": "d159129469c2d7e5bbd0944d1c174f56064c97315bd1228d301fc573eba290e6", "id": "d159129469c2d7e5", "name": "ascent", "size": 5763575808, "system": "daint", "uarch": "gh200" }After
{ "date": "2025-12-16 10:06:44", "digest": "d159129469c2d7e5bbd0944d1c174f56064c97315bd1228d301fc573eba290e6", "id": "d159129469c2d7e5", "name": "ascent", "size": 5763575808, "system": "daint", "tag": "v1", "uarch": "gh200", "version": "0.9.5" }This might be useful not only for #130 (even if I know that @bcumming is working on an alternative way to collect information for the bash completion), but also for the final user.