Skip to content

Commit f67c9a5

Browse files
committed
Release 2.20.2
Signed-off-by: Thomas Hallgren <[email protected]>
1 parent f4b32f5 commit f67c9a5

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ EXCLUDE_TAGS ?=
1717
# the same major.minor combo. The versioned directory contains only the major.minor, and first matching tag wins.
1818
tags := $(shell git tag -l | grep -E '$(MATCH_TAGS)' | (test -n '$(EXCLUDE_TAGS)' && grep -vE '$(EXCLUDE_TAGS)' || cat) | sed '/-/!{s/$$/_/}' | sort -rV | sed 's/_$$//')
1919

20+
.PHONY: echo-tags
21+
echo-tags:
22+
echo $(tags)
23+
2024
.PHONY: pull-docs
2125
pull-docs: telepresence-remote
2226
set -x -e

versioned_docs/version-2.20/release-notes.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11

22
[comment]: # (Code generated by relnotesgen. DO NOT EDIT.)
33
# <img src="images/logo.png" height="64px"/> Telepresence Release Notes
4+
## Version 2.20.2 <span style="font-size: 16px;">(October 21)</span>
5+
## <div style="display:flex;"><img src="images/bugfix.png" alt="bugfix" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">Crash in traffic-manager configured with agentInjector.enabled=false</div></div>
6+
<div style="margin-left: 15px">
7+
8+
A traffic-manager that was installed with the Helm value `agentInjector.enabled=false` crashed when a client used the commands `telepresence version` or `telepresence status`. Those commands would call a method on the traffic-manager that panicked if no traffic-agent was present. This method will now instead return the standard `Unavailable` error code, which is expected by the caller.
9+
</div>
10+
411
## Version 2.20.1 <span style="font-size: 16px;">(October 10)</span>
512
## <div style="display:flex;"><img src="images/bugfix.png" alt="bugfix" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">Some workloads missing in the telepresence list output (typically replicasets owned by rollouts).</div></div>
613
<div style="margin-left: 15px">

versioned_docs/version-2.20/release-notes.mdx

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ import { Note, Title, Body } from '@site/src/components/ReleaseNotes'
77
[comment]: # (Code generated by relnotesgen. DO NOT EDIT.)
88

99
# Telepresence Release Notes
10+
## Version 2.20.2 <span style={{fontSize:'16px'}}>(October 21)</span>
11+
<Note>
12+
<Title type="bugfix">Crash in traffic-manager configured with agentInjector.enabled=false</Title>
13+
<Body>A traffic-manager that was installed with the Helm value `agentInjector.enabled=false` crashed when a client used the commands `telepresence version` or `telepresence status`. Those commands would call a method on the traffic-manager that panicked if no traffic-agent was present. This method will now instead return the standard `Unavailable` error code, which is expected by the caller.</Body>
14+
</Note>
1015
## Version 2.20.1 <span style={{fontSize:'16px'}}>(October 10)</span>
1116
<Note>
1217
<Title type="bugfix">Some workloads missing in the telepresence list output (typically replicasets owned by rollouts).</Title>
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version: "2.20.1"
2-
dlVersion: "v2.20.1"
1+
version: "2.20.2"
2+
dlVersion: "v2.20.2"

0 commit comments

Comments
 (0)