From 754eef4bccfd227404ff6f489ad4b5512ee6d526 Mon Sep 17 00:00:00 2001 From: Odd Stranne Date: Thu, 4 Jul 2024 14:33:05 +0200 Subject: [PATCH 1/3] Use Go 1.22.5 in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 12de249..9c27192 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:22.04 -ENV GO_FILENAME=go1.22.4.linux-amd64.tar.gz -ENV GO_FILEHASH=ba79d4526102575196273416239cca418a651e049c2b099f3159db85e7bade7d +ENV GO_FILENAME=go1.22.5.linux-amd64.tar.gz +ENV GO_FILEHASH=904b924d435eaea086515bc63235b192ea441bd8c9b198c507e85009e6e4c7f0 ENV PATH="$PATH:/usr/local/go/bin" RUN apt-get update && apt-get install -y --no-install-recommends \ From 29dfe62020d963f1c6ff97479032724af7088ac3 Mon Sep 17 00:00:00 2001 From: Odd Stranne Date: Thu, 4 Jul 2024 14:34:04 +0200 Subject: [PATCH 2/3] Use Go 1.22.5 in CI --- .github/workflows/ci.yaml | 2 +- .github/workflows/nightly.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 123ffd4..a552c6e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,4 +4,4 @@ jobs: ci: uses: mullvad/rsw-public/.github/workflows/go-ci.yaml@master with: - go-version: '1.22.4' + go-version: '1.22.5' diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 150e6cf..19265d2 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -6,4 +6,4 @@ jobs: nightly: uses: mullvad/rsw-public/.github/workflows/go-ci.yaml@master with: - go-version: '1.22.4' + go-version: '1.22.5' From 7300afdd86003af6e02149d6f2db86b2795bde83 Mon Sep 17 00:00:00 2001 From: Odd Stranne Date: Thu, 4 Jul 2024 16:12:22 +0200 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 794d74f..847d97d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,14 +19,24 @@ Line wrap the file at 100 chars. Th * **Fixed**: for any bug fixes. * **Security**: in case of vulnerabilities. + +## [1.0.3] - 2024-07-04 +### Changed +- Use Go 1.22.5 for release builds. +### Security +- Resolve issues in stdlib by using updated version of Go. + + ## [1.0.2] - 2024-06-11 ### Added - Add build target for Linux ARMv5, ARMv6, ARMv6 and Windows ARM64. + ## [1.0.1] - 2024-04-16 ### Security - Update dependencies + ## [1.0.0] - 2024-03-22 ### Added - Core functionality with some configurability.