From 929daf733faabb31697ba4fa571096382e9cb51a Mon Sep 17 00:00:00 2001 From: Roman Vynar Date: Fri, 19 Apr 2024 18:07:40 +0300 Subject: [PATCH] Release 0.10.1 --- CHANGELOG.md | 10 ++++++++-- Dockerfile | 2 +- version.go | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc2462f..a14706f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,18 @@ ## Changelog +## 0.10.1 (2024-04-19) + +* Rename cmd flag `-purge-from-repos` to `-purge-include-repos` to purge tags only for the specified repositories. +* Add a new cmd flag `-purge-exclude-repos` to skip the specified repositories from the tag purging. +* Make image column clickable in Event Log. + ### 0.10.0 (2024-04-16) **JUST BREAKING CHANGES** * We have made a full rewrite. Over 6 years many things have been changed. * Renamed github/dockerhub repo from docker-registry-ui -> registry-ui -* Switched from doing raw http calls to github.com/google/go-containerregistry +* Switched from doing raw http calls to `github.com/google/go-containerregistry` * URLs and links are now matching the image references, no more "library" or other weird URL parts. * No namespace or only 2-level deep concept * An arbitrary repository levels are supported @@ -18,7 +24,7 @@ * Changed format of config.yml but the same concept is preserved * Event listener path has been changed from /api/events to /event-receiver and you may need to update your registry config * Removed built-in cron scheduler for purging tags, please use the normal cron :) -* Now you can now tune the refresh of catalog and separately refresh of tag counting, disable them etc. +* Now you can tune the refresh of catalog and separately refresh of tag counting, disable them etc. * Everything has been made better! :) ### 0.9.7 (2024-02-21) diff --git a/Dockerfile b/Dockerfile index d0bf90a..ba301d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.1-alpine3.19 as builder +FROM golang:1.22.2-alpine3.19 as builder RUN apk update && \ apk add ca-certificates git bash gcc musl-dev diff --git a/version.go b/version.go index 5c95b6d..19f2870 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const version = "0.10.0" +const version = "0.10.1"