Skip to content

Commit

Permalink
Release 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-vynar committed Aug 15, 2024
1 parent 674562d commit 628d283
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
1 change: 1 addition & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main

const version = "0.10.2"
const version = "0.10.3"

0 comments on commit 628d283

Please sign in to comment.