From 628d28398f2da24d17d3771865c2333ea1fdecfa Mon Sep 17 00:00:00 2001 From: Roman Vynar Date: Thu, 15 Aug 2024 14:58:14 +0300 Subject: [PATCH] Release 0.10.3 --- CHANGELOG.md | 10 ++++++++++ config.yml | 1 + version.go | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0fc4d5..5e463d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ ## Changelog +## 0.10.3 (2024-08-15) + +* Add `registry.insecure` option to the config (alternatively REGISTRY_INSECURE env var) to support non-https registries. + Thanks to @KanagawaNezumi +* Fix concurrent map iteration and write in rare cases. +* Upgrade go version to 1.22.6 and all dependencies, alpine to 3.20. +* IPv6 addresses were not displayed correctly. + In case you need to store registry events with IPv6 addresses in MySQL, you need to run `ALTER TABLE events MODIFY column ip varchar(45) NULL`. + For sqlite, you can start a new db file or migrate events manually as it doesn't support ALTER. + ## 0.10.2 (2024-05-31) * Fix repo tag count when a repo name is a prefix for another repo name(s) diff --git a/config.yml b/config.yml index ecc615c..6f3af5b 100644 --- a/config.yml +++ b/config.yml @@ -21,6 +21,7 @@ performance: registry: # Registry hostname (without protocol but may include port). hostname: docker-registry.local + # Allow to access non-https enabled registry. insecure: false # Registry credentials. diff --git a/version.go b/version.go index d1c52cb..5cb7733 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const version = "0.10.2" +const version = "0.10.3"