diff --git a/.github/workflows/pr_build.yaml b/.github/workflows/pr_build.yaml index bcf7ee5fde..63e85b1932 100644 --- a/.github/workflows/pr_build.yaml +++ b/.github/workflows/pr_build.yaml @@ -3,7 +3,7 @@ on: pull_request: {} workflow_dispatch: {} env: - GO_VERSION: 1.20.10 + GO_VERSION: 1.20.11 permissions: contents: read diff --git a/.github/workflows/release_build.yaml b/.github/workflows/release_build.yaml index 32ee071956..ef5ead02eb 100644 --- a/.github/workflows/release_build.yaml +++ b/.github/workflows/release_build.yaml @@ -4,7 +4,7 @@ on: tags: - 'v[0-9].[0-9]+.[0-9]+' env: - GO_VERSION: 1.20.10 + GO_VERSION: 1.20.11 jobs: cache-deps: name: cache-deps (linux) diff --git a/.go-version b/.go-version index acdfc7930c..4bb1a22f8e 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.20.10 +1.20.11 diff --git a/CHANGELOG.md b/CHANGELOG.md index 20df0ae4b7..84d117e788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [1.7.5] - 2023-11-07 + +### Security + +- Updated to Go 1.20.11 to address CVE-2023-45283, CVE-2023-45284 + ## [1.7.4] - 2023-10-12 ### Security diff --git a/pkg/common/version/version.go b/pkg/common/version/version.go index 573a929101..7426b50253 100644 --- a/pkg/common/version/version.go +++ b/pkg/common/version/version.go @@ -8,7 +8,7 @@ const ( // IMPORTANT: When updating, make sure to reconcile the versions list that // is part of the upgrade integration test. See // test/integration/suites/upgrade/README.md for details. - Base = "1.7.4" + Base = "1.7.5" ) var ( diff --git a/pkg/server/datastore/sqlstore/migration.go b/pkg/server/datastore/sqlstore/migration.go index f786b80915..8ff5c25f14 100644 --- a/pkg/server/datastore/sqlstore/migration.go +++ b/pkg/server/datastore/sqlstore/migration.go @@ -194,6 +194,8 @@ import ( // | v1.7.3 | | | // |---------| | | // | v1.7.4 | | | +// |---------| | | +// | v1.7.5 | | | // ================================================================================================ const ( diff --git a/test/integration/suites/upgrade/versions.txt b/test/integration/suites/upgrade/versions.txt index 6032feafc6..9ae1e16455 100644 --- a/test/integration/suites/upgrade/versions.txt +++ b/test/integration/suites/upgrade/versions.txt @@ -8,3 +8,4 @@ 1.7.1 1.7.2 1.7.3 +1.7.4