diff --git a/.circleci/config.yml b/.circleci/config.yml index 95c258cf..194e51fa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,15 +1,15 @@ version: 2.1 executors: - test-go121: + test-go122: docker: - - image: "cimg/go:1.21" + - image: "cimg/go:1.22" environment: runrace: true TIMESCALE_FACTOR: 3 jobs: "test": &test - executor: test-go121 + executor: test-go122 steps: - checkout - run: @@ -33,10 +33,10 @@ jobs: - run: name: "Run version negotiation tests with qlog" command: go run github.com/onsi/ginkgo/v2/ginkgo -v -randomize-all -trace integrationtests/versionnegotiation -- -qlog - go121: + go122: <<: *test workflows: workflow: jobs: - - go121 + - go122 diff --git a/.clusterfuzzlite/Dockerfile b/.clusterfuzzlite/Dockerfile index d27db151..d9fedb9a 100644 --- a/.clusterfuzzlite/Dockerfile +++ b/.clusterfuzzlite/Dockerfile @@ -3,7 +3,7 @@ FROM gcr.io/oss-fuzz-base/base-builder-go:v1 ARG TARGETPLATFORM RUN echo "TARGETPLATFORM: ${TARGETPLATFORM}" -ENV GOVERSION=1.21.5 +ENV GOVERSION=1.22.0 RUN platform=$(echo ${TARGETPLATFORM} | tr '/' '-') && \ filename="go${GOVERSION}.${platform}.tar.gz" && \ diff --git a/.github/workflows/cross-compile.yml b/.github/workflows/cross-compile.yml index b419e998..30126dd3 100644 --- a/.github/workflows/cross-compile.yml +++ b/.github/workflows/cross-compile.yml @@ -4,7 +4,7 @@ jobs: strategy: fail-fast: false matrix: - go: [ "1.21.x", "1.22.0-rc.2" ] + go: [ "1.21.x", "1.22.x" ] runs-on: ${{ fromJSON(vars['CROSS_COMPILE_RUNNER_UBUNTU'] || '"ubuntu-latest"') }} name: "Cross Compilation (Go ${{matrix.go}})" steps: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index ece4d6b7..0c0d93a9 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -6,7 +6,7 @@ jobs: fail-fast: false matrix: os: [ "ubuntu" ] - go: [ "1.21.x", "1.22.0-rc.2" ] + go: [ "1.21.x", "1.22.x" ] include: - os: "windows" go: "1.21.x" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e2fdf1bd..0176c487 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,7 +7,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.21.x" + go-version: "1.22.x" - name: Check that no non-test files import Ginkgo or Gomega run: .github/workflows/no_ginkgo.sh - name: Check for //go:build ignore in .go files @@ -38,7 +38,7 @@ jobs: strategy: fail-fast: false matrix: - go: [ "1.21.x", "1.22.0-rc.2" ] + go: [ "1.21.x", "1.22.x" ] name: golangci-lint (Go ${{ matrix.go }}) steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index e1ee2832..f999bd5c 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -7,7 +7,7 @@ jobs: fail-fast: false matrix: os: [ "ubuntu", "windows", "macos" ] - go: [ "1.21.x", "1.22.0-rc.2" ] + go: [ "1.21.x", "1.22.x" ] runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }} name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }}) steps: diff --git a/internal/qtls/client_session_cache.go b/internal/qtls/client_session_cache.go index d81eb8c3..2f459334 100644 --- a/internal/qtls/client_session_cache.go +++ b/internal/qtls/client_session_cache.go @@ -1,5 +1,3 @@ -//go:build go1.21 - package qtls import ( diff --git a/internal/qtls/qtls_test.go b/internal/qtls/qtls_test.go index aadc118c..1007b82a 100644 --- a/internal/qtls/qtls_test.go +++ b/internal/qtls/qtls_test.go @@ -9,7 +9,7 @@ import ( . "github.com/onsi/gomega" ) -var _ = Describe("Go 1.21", func() { +var _ = Describe("interface go crypto/tls", func() { It("converts to tls.EncryptionLevel", func() { Expect(ToTLSEncryptionLevel(protocol.EncryptionInitial)).To(Equal(tls.QUICEncryptionLevelInitial)) Expect(ToTLSEncryptionLevel(protocol.EncryptionHandshake)).To(Equal(tls.QUICEncryptionLevelHandshake)) diff --git a/interop/Dockerfile b/interop/Dockerfile index 636b9c59..6c34fae6 100644 --- a/interop/Dockerfile +++ b/interop/Dockerfile @@ -5,7 +5,7 @@ RUN echo "TARGETPLATFORM: ${TARGETPLATFORM}" RUN apt-get update && apt-get install -y wget tar git -ENV GOVERSION=1.21.4 +ENV GOVERSION=1.22.0 RUN platform=$(echo ${TARGETPLATFORM} | tr '/' '-') && \ filename="go${GOVERSION}.${platform}.tar.gz" && \ diff --git a/oss-fuzz.sh b/oss-fuzz.sh index f72fb1b0..22a577fe 100644 --- a/oss-fuzz.sh +++ b/oss-fuzz.sh @@ -3,12 +3,12 @@ # Install Go manually, since oss-fuzz ships with an outdated Go version. # See https://github.com/google/oss-fuzz/pull/10643. export CXX="${CXX} -lresolv" # required by Go 1.20 -wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz \ +wget https://go.dev/dl/go1.22.0.linux-amd64.tar.gz \ && mkdir temp-go \ && rm -rf /root/.go/* \ - && tar -C temp-go/ -xzf go1.21.5.linux-amd64.tar.gz \ + && tar -C temp-go/ -xzf go1.22.0.linux-amd64.tar.gz \ && mv temp-go/go/* /root/.go/ \ - && rm -rf temp-go go1.21.5.linux-amd64.tar.gz + && rm -rf temp-go go1.22.0.linux-amd64.tar.gz ( # fuzz qpack