Skip to content

Commit

Permalink
Update changelog to new format
Browse files Browse the repository at this point in the history
Signed-off-by: Kévin Lambert <[email protected]>
  • Loading branch information
knlambert committed May 25, 2023
1 parent b6eda03 commit 8a97f15
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 2 deletions.
56 changes: 55 additions & 1 deletion CHANGELOG.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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.
6 changes: 5 additions & 1 deletion build-aux/main.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8a97f15

Please sign in to comment.