Release 0.10.1

This commit is contained in:
Roman Vynar 2024-04-19 18:07:40 +03:00
parent 86ee1d56bd
commit 929daf733f
3 changed files with 10 additions and 4 deletions

View File

@ -1,12 +1,18 @@
## Changelog ## 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) ### 0.10.0 (2024-04-16)
**JUST BREAKING CHANGES** **JUST BREAKING CHANGES**
* We have made a full rewrite. Over 6 years many things have been changed. * We have made a full rewrite. Over 6 years many things have been changed.
* Renamed github/dockerhub repo from docker-registry-ui -> registry-ui * 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. * 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 * No namespace or only 2-level deep concept
* An arbitrary repository levels are supported * An arbitrary repository levels are supported
@ -18,7 +24,7 @@
* Changed format of config.yml but the same concept is preserved * 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 * 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 :) * 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! :) * Everything has been made better! :)
### 0.9.7 (2024-02-21) ### 0.9.7 (2024-02-21)

View File

@ -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 && \ RUN apk update && \
apk add ca-certificates git bash gcc musl-dev apk add ca-certificates git bash gcc musl-dev

View File

@ -1,3 +1,3 @@
package main package main
const version = "0.10.0" const version = "0.10.1"