Skip to content

Commit f4b32f5

Browse files
authored
Merge pull request #219 from telepresenceio/release/v2.20.1
Release 2.20.1.
2 parents 82314ae + b354b14 commit f4b32f5

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ telepresence-remote:
88
.PHONY: telepresence-remote
99

1010
# MATCH_TAGS is the regexp matching the tags that we expect will have docs.
11-
MATCH_TAGS ?= ^v2\.[2-9][0-9]+\.[0-9]+(-(rc)\.[0-9]+)?$$
11+
MATCH_TAGS ?= ^v2\.[2-9][0-9]+\.[0-9]+$$
1212

1313
# EXCLUDE_TAGS is used when we want to exclude some of the matching tags from the telepresence repository
1414
EXCLUDE_TAGS ?=

versioned_docs/version-2.20/install/manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ hide_table_of_contents: true
55

66
# Install/Uninstall the Traffic Manager
77

8-
Telepresence uses a traffic manager to send/recieve cloud traffic to the user. Telepresence uses [Helm](https://helm.sh) under the hood to install the traffic manager in your cluster. The `telepresence` binary embeds both `helm` and a helm-chart for a traffic-manager that is of the same version as the binary.
8+
Telepresence uses a traffic manager to send/receive cloud traffic to the user. Telepresence uses [Helm](https://helm.sh) under the hood to install the traffic manager in your cluster. The `telepresence` binary embeds both `helm` and a helm-chart for a traffic-manager that is of the same version as the binary.
99

1010
## Prerequisites
1111

versioned_docs/version-2.20/release-notes.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
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.1 <span style="font-size: 16px;">(October 10)</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;">Some workloads missing in the telepresence list output (typically replicasets owned by rollouts).</div></div>
6+
<div style="margin-left: 15px">
7+
8+
Version 2.20.0 introduced a regression in the `telepresence list` command, resulting in the omission of all workloads that were owned by another workload. The correct behavior is to just omit those workloads that are owned by the supported workload kinds `Deployment`, `ReplicaSet`, `StatefulSet`, and `Rollout`. Furthermore, the `Rollout` kind must only be considered supported when the Argo Rollouts feature is enabled in the traffic-manager.
9+
</div>
10+
11+
## <div style="display:flex;"><img src="images/bugfix.png" alt="bugfix" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">Allow comma separated list of daemons for the gather-logs command.</div></div>
12+
<div style="margin-left: 15px">
13+
14+
The name of the `telepresence gather-logs` flag `--daemons` suggests that the argument can contain more than one daemon, but prior to this fix, it couldn't. It is now possible to use a comma separated list, e.g. `telepresence gather-logs --daemons root,user`.
15+
</div>
16+
417
## Version 2.20.0 <span style="font-size: 16px;">(October 3)</span>
518
## <div style="display:flex;"><img src="images/feature.png" alt="feature" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">Add timestamp to telepresence_logs.zip filename.</div></div>
619
<div style="margin-left: 15px">
@@ -66,7 +79,7 @@ A <code>telepresence connect --docker</code> failed when attempting to connect t
6679
## <div style="display:flex;"><img src="images/feature.png" alt="feature" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">[Add brew support for the OSS version of Telepresence.](https://github.com/telepresenceio/telepresence/issues/3609)</div></div>
6780
<div style="margin-left: 15px">
6881

69-
The Open-Source Software version of Telepresence can now be installed using the brew formula via <code>brew install datawire/blackbird/telepresence-oss</code>.
82+
The Open-Source Software version of Telepresence can now be installed using the brew formula via <code>brew install telepresenceio/telepresence/telepresence-oss</code>.
7083
</div>
7184

7285
## <div style="display:flex;"><img src="images/feature.png" alt="feature" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">Add --create-namespace flag to the telepresence helm install command.</div></div>

versioned_docs/version-2.20/release-notes.mdx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ 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.1 <span style={{fontSize:'16px'}}>(October 10)</span>
11+
<Note>
12+
<Title type="bugfix">Some workloads missing in the telepresence list output (typically replicasets owned by rollouts).</Title>
13+
<Body>Version 2.20.0 introduced a regression in the `telepresence list` command, resulting in the omission of all workloads that were owned by another workload. The correct behavior is to just omit those workloads that are owned by the supported workload kinds `Deployment`, `ReplicaSet`, `StatefulSet`, and `Rollout`. Furthermore, the `Rollout` kind must only be considered supported when the Argo Rollouts feature is enabled in the traffic-manager.</Body>
14+
</Note>
15+
<Note>
16+
<Title type="bugfix">Allow comma separated list of daemons for the gather-logs command.</Title>
17+
<Body>The name of the `telepresence gather-logs` flag `--daemons` suggests that the argument can contain more than one daemon, but prior to this fix, it couldn't. It is now possible to use a comma separated list, e.g. `telepresence gather-logs --daemons root,user`.</Body>
18+
</Note>
1019
## Version 2.20.0 <span style={{fontSize:'16px'}}>(October 3)</span>
1120
<Note>
1221
<Title type="feature">Add timestamp to telepresence_logs.zip filename.</Title>
@@ -51,7 +60,7 @@ import { Note, Title, Body } from '@site/src/components/ReleaseNotes'
5160
## Version 2.19.1 <span style={{fontSize:'16px'}}>(July 12)</span>
5261
<Note>
5362
<Title type="feature" docs="https://github.com/telepresenceio/telepresence/issues/3609">Add brew support for the OSS version of Telepresence.</Title>
54-
<Body>The Open-Source Software version of Telepresence can now be installed using the brew formula via <code>brew install datawire/blackbird/telepresence-oss</code>.</Body>
63+
<Body>The Open-Source Software version of Telepresence can now be installed using the brew formula via <code>brew install telepresenceio/telepresence/telepresence-oss</code>.</Body>
5564
</Note>
5665
<Note>
5766
<Title type="feature">Add --create-namespace flag to the telepresence helm install command.</Title>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version: "2.20.0"
2-
dlVersion: "v2.20.0"
1+
version: "2.20.1"
2+
dlVersion: "v2.20.1"

0 commit comments

Comments
 (0)