diff --git a/.github/workflows/build_daily.yaml b/.github/workflows/build_daily.yaml index 882e768d989..96a744f8cd2 100644 --- a/.github/workflows/build_daily.yaml +++ b/.github/workflows/build_daily.yaml @@ -10,7 +10,7 @@ on: env: GOPROXY: https://proxy.golang.org/ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - GO_VERSION: 1.19.8 + GO_VERSION: 1.19.10 jobs: e2e-envoy-xds: runs-on: ubuntu-latest diff --git a/.github/workflows/prbuild.yaml b/.github/workflows/prbuild.yaml index c2d3f7a2142..2d8c2fcca0f 100644 --- a/.github/workflows/prbuild.yaml +++ b/.github/workflows/prbuild.yaml @@ -11,7 +11,7 @@ on: env: GOPROXY: https://proxy.golang.org/ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - GO_VERSION: 1.19.8 + GO_VERSION: 1.19.10 jobs: lint: runs-on: ubuntu-latest @@ -24,7 +24,7 @@ jobs: uses: golangci/golangci-lint-action@v3 with: version: v1.50.1 - args: --build-tags=e2e,conformance,gcp,oidc,tools,none + args: --build-tags=e2e,conformance,gcp,oidc,none - uses: act10ns/slack@v2 with: status: ${{ job.status }} diff --git a/Makefile b/Makefile index ff68c33fa8c..1e66fbd4509 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ endif IMAGE_PLATFORMS ?= linux/amd64,linux/arm64 # Base build image to use. -BUILD_BASE_IMAGE ?= golang:1.19.8 +BUILD_BASE_IMAGE ?= golang:1.19.10 # Enable build with CGO. BUILD_CGO_ENABLED ?= 0 diff --git a/changelogs/CHANGELOG-v1.20.0.md b/changelogs/CHANGELOG-v1.20.0.md index b5edbe78bff..f2375f1ac9a 100644 --- a/changelogs/CHANGELOG-v1.20.0.md +++ b/changelogs/CHANGELOG-v1.20.0.md @@ -195,7 +195,7 @@ This change should be a no-op for most users, however be sure to re-apply the re Adds a `Path` & `Prefix` field to the `HTTPProxy.Spec.Route.RequestRedirectPolicy` which allows for redirects to also specify the path or prefix to redirect to. When specified, an -HTTP 302 response will be sent to the requestor with the new path or prefix specified. +HTTP 302 response will be sent to the requester with the new path or prefix specified. _Note: Only one of path or prefix can be specified on a single route._ diff --git a/site/content/posts/2020-01-16-announcing-contour-1.1.md b/site/content/posts/2020-01-16-announcing-contour-1.1.md index 79cbec69355..9d178918754 100644 --- a/site/content/posts/2020-01-16-announcing-contour-1.1.md +++ b/site/content/posts/2020-01-16-announcing-contour-1.1.md @@ -24,7 +24,7 @@ The header request policy has the following configuration: The following example takes requests from `headers.projectcontour.io/` and applies the following logic: * Adds the header `X-Foo: bar` to any request before it is proxied to the Kubernetes service named `s1` and removes the header `X-Baz` -* After the request is processed by service `s1`, the response back to the requestor will have the header `X-Service-Name: s1` added and will remove the header `X-Internal-Secret` +* After the request is processed by service `s1`, the response back to the requester will have the header `X-Service-Name: s1` added and will remove the header `X-Internal-Secret` ```yaml apiVersion: projectcontour.io/v1