From 109b27fecc44df66e86d34f666f7ad8c3dabdab5 Mon Sep 17 00:00:00 2001 From: cn Date: Sat, 3 Oct 2020 11:04:48 +0200 Subject: [PATCH] release: 3.0.1 - use webrick gem which contains fixes against [CVE-2020-25613](https://www.ruby-lang.org/en/news/2020/09/29/http-request-smuggling-cve-2020-25613/) --- docs/Dockerfile | 2 +- lib/openvpn-status-web/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index d67a477..72bdca0 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.12 EXPOSE 8080 -ENV VERSION=3.0.0 +ENV VERSION=3.0.1 RUN apk --no-cache add openssl ca-certificates && \ apk --no-cache add ruby ruby-etc ruby-webrick && \ diff --git a/lib/openvpn-status-web/version.rb b/lib/openvpn-status-web/version.rb index 6eb72ce..fb20b75 100644 --- a/lib/openvpn-status-web/version.rb +++ b/lib/openvpn-status-web/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module OpenVPNStatusWeb - VERSION = '3.0.0' + VERSION = '3.0.1' end