diff --git a/CHANGELOG.md b/CHANGELOG.md index b18357b..36acf87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v0.0.5 + +- http mode features: tls-ca-cert, tls-client-cert, tls-client-key, tls-server-name +- new feature: ipv6 [::1] + ### v0.0.4 - http mode features: tls-no-verify, connect-timeout, user-agent diff --git a/README.md b/README.md index 350f0ec..44d73f8 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ A command-line tool to perform Local Health Check Probes inside Container Images ### Add to a container image You can bundle the statically compiled lprobe in your container image. Choose a binary release and download it in your Dockerfile: ``` -ARG LPROBE_VERSION=v0.0.4 +ARG LPROBE_VERSION=v0.0.5 ARG TARGETPLATFORM RUN case ${TARGETPLATFORM} in \ "linux/amd64") LPROBE_ARCH=amd64 ;; \ diff --git a/examples/Dockerfile b/examples/Dockerfile index 8b9f13e..f57e143 100644 --- a/examples/Dockerfile +++ b/examples/Dockerfile @@ -1,5 +1,5 @@ FROM nginx:alpine -ARG LPROBE_VERSION=v0.0.4 +ARG LPROBE_VERSION=v0.0.5 ARG TARGETPLATFORM RUN case ${TARGETPLATFORM} in \ "linux/amd64") LPROBE_ARCH=amd64 ;; \