From 8a97f15ad38c73f7d34af93c92adc9b6ea912cea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Lambert?= Date: Thu, 25 May 2023 15:01:53 -0400 Subject: [PATCH] Update changelog to new format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Lambert --- CHANGELOG.yml | 56 ++++++++++++++++++++++++++++++++++++++++++++++- build-aux/main.mk | 6 ++++- 2 files changed, 60 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.yml b/CHANGELOG.yml index 4df2285eff..b7ff5b0bcf 100644 --- a/CHANGELOG.yml +++ b/CHANGELOG.yml @@ -30,4 +30,58 @@ docDescription: >- microservices by arming them with infinite-scale development environments, access to instantaneous feedback loops, and highly customizable development environments. -items: \ No newline at end of file +items: + - version: 2.13.3 + date: TBD + notes: + - type: feature + title: Add imagePullSecrets to hooks + body: >- + Add .Values.hooks.curl.imagePullSecrets and .Values.hooks curl.imagePullSecrets to Helm values. + docs: https://github.com/telepresenceio/telepresence/pull/3079 + + - type: change + title: Change reinvocation policy to Never for the mutating webhook + body: >- + The default setting of the reinvocationPolicy for the mutating webhook dealing with agent injections changed from Never to IfNeeded. + + - type: bugfix + title: Fix mounting fail of IAM roles for service accounts web identity token + body: >- + The eks.amazonaws.com/serviceaccount volume injected by EKS is now exported and remotely mounted during an intercept. + docs: https://github.com/telepresenceio/telepresence/issues/3166 + + - type: bugfix + title: Correct namespace selector for cluster versions with non-numeric characters + body: >- + The mutating webhook now correctly applies the namespace selector even if the cluster version contains non-numeric characters. For example, it can now handle versions such as Major:"1", Minor:"22+". + docs: https://github.com/telepresenceio/telepresence/pull/3184 + + - type: bugfix + title: Enable IPv6 on the telepresence docker network + body: >- + The "telepresence" Docker network will now propagate DNS AAAA queries to the Telepresence DNS resolver when it runs in a Docker container. + docs: https://github.com/telepresenceio/telepresence/issues/3179 + + - type: bugfix + title: Fix the crash when intercepting with --local-only and --docker-run + body: >- + Running telepresence intercept --local-only --docker-run no longer results in a panic. + docs: https://github.com/telepresenceio/telepresence/issues/3171 + + - type: bugfix + title: Fix incorrect error message with local-only mounts + body: >- + Running telepresence intercept --local-only --mount false no longer results in an incorrect error message saying "a local-only intercept cannot have mounts". + docs: https://github.com/telepresenceio/telepresence/issues/3171 + + - type: bugfix + title: specify port in hook urls + body: >- + The helm chart now correctly handles custom agentInjector.webhook.port that was not being set in hook URLs. + docs: https://github.com/telepresenceio/telepresence/pull/3161 + + - type: bugfix + title: Fix wrong default value for disableGlobal and agentArrival + body: >- + Params .intercept.disableGlobal and .timeouts.agentArrival are now correctly honored. diff --git a/build-aux/main.mk b/build-aux/main.mk index fbff1a2d64..48749d2a5d 100644 --- a/build-aux/main.mk +++ b/build-aux/main.mk @@ -210,10 +210,14 @@ clobber: ## (Build) Remove all build artifacts and tools .PHONY: prepare-release prepare-release: generate wix - sed -i.bak "/^### $(patsubst v%,%,$(TELEPRESENCE_VERSION)) (TBD)\$$/s/TBD/$$(date +'%B %-d, %Y')/" CHANGELOG.md + sed -i.bak "/^### $(patsubst v%,%,$(TELEPRESENCE_VERSION)) (TBD)\$$/s/TBD/$$(date +'%B %-d, %Y')/" CHANGELOG.OLD.md rm -f CHANGELOG.md.bak git add CHANGELOG.md + sed -i.bak "/date: \"*TBD\"*\$$/s/\"*TBD\"*/\"$$(date +'%Y-%M-%d')\"/" CHANGELOG.yml + rm -f CHANGELOG.yml.bak + git add CHANGELOG.yml + go mod edit -require=github.com/telepresenceio/telepresence/rpc/v2@$(TELEPRESENCE_VERSION) git add go.mod