diff --git a/ReadMe.Md b/ReadMe.Md index 32aca0c..e1d18b1 100644 --- a/ReadMe.Md +++ b/ReadMe.Md @@ -10,14 +10,20 @@ [![Go Version](https://img.shields.io/github/go-mod/go-version/simonmittag/j8a)](https://img.shields.io/github/go-mod/go-version/simonmittag/j8a) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Docker Pulls](https://img.shields.io/docker/pulls/simonmittag/j8a)](https://hub.docker.com/repository/docker/simonmittag/j8a) -[![Version](https://img.shields.io/docker/v/simonmittag/j8a/1.1.0)](https://hub.docker.com/repository/docker/simonmittag/j8a) +[![Version](https://img.shields.io/docker/v/simonmittag/j8a/1.1.1)](https://hub.docker.com/repository/docker/simonmittag/j8a) ## CVEs -🛡️ J8a has [zero](https://www.cvedetails.com/google-search-results.php?q=j8a&sa=Search) reported CVEs as of 03/12/2023. +🛡️ J8a has [zero](https://www.cvedetails.com/google-search-results.php?q=j8a&sa=Search) reported CVEs as of 04/12/2023. If you are a security researcher, the project team would like to [hear from you](https://github.com/simonmittag/j8a/issues). ## What's new? +### v1.1.1 (04/12/2023) +* Update to Go 1.21 +* Fixed a bug where IPV6 addresses as host names weren't logged correctly. +* Bumped several dependency versions + + ### v1.1.0 (24/06/2023) * improved error handling for failed upstream requests. * added new internal status management for server bootstrap and shutdown behaviour. diff --git a/server.go b/server.go index 005e081..37c4a2e 100644 --- a/server.go +++ b/server.go @@ -20,7 +20,7 @@ import ( // Version is the server version const Server string = "Server" -var Version string = "v1.1.0" +var Version string = "v1.1.1" // ID is a unique server ID var ID string = "unknown"