Skip to content

Commit d8dbc45

Browse files
committed
Prepare v2.20.1
Signed-off-by: Thomas Hallgren <[email protected]>
1 parent d139839 commit d8dbc45

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

CHANGELOG.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ docDescription: >-
3434
customizable development environments.
3535
items:
3636
- version: 2.20.1
37-
date: TBD
37+
date: 2024-10-10
3838
notes:
3939
- type: bugfix
4040
title: Some workloads missing in the telepresence list output (typically replicasets owned by rollouts).

docs/release-notes.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +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.21.1
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+
511
## <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>
612
<div style="margin-left: 15px">
713

@@ -73,7 +79,7 @@ A <code>telepresence connect --docker</code> failed when attempting to connect t
7379
## <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>
7480
<div style="margin-left: 15px">
7581

76-
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>.
7783
</div>
7884

7985
## <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>

docs/release-notes.mdx

+6-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +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.21.1
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>
1115
<Note>
1216
<Title type="bugfix">Allow comma separated list of daemons for the gather-logs command.</Title>
1317
<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>
@@ -56,7 +60,7 @@ import { Note, Title, Body } from '@site/src/components/ReleaseNotes'
5660
## Version 2.19.1 <span style={{fontSize:'16px'}}>(July 12)</span>
5761
<Note>
5862
<Title type="feature" docs="https://github.com/telepresenceio/telepresence/issues/3609">Add brew support for the OSS version of Telepresence.</Title>
59-
<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>
6064
</Note>
6165
<Note>
6266
<Title type="feature">Add --create-namespace flag to the telepresence helm install command.</Title>

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ require (
3636
github.com/spf13/cobra v1.8.1
3737
github.com/spf13/pflag v1.0.5
3838
github.com/stretchr/testify v1.9.0
39-
github.com/telepresenceio/telepresence/rpc/v2 v2.20.1-rc.1
39+
github.com/telepresenceio/telepresence/rpc/v2 v2.20.1
4040
github.com/vishvananda/netlink v1.3.0
4141
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0
4242
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0

pkg/vif/testdata/router/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ require (
5151
github.com/rogpeppe/go-internal v1.12.0 // indirect
5252
github.com/spf13/cobra v1.8.1 // indirect
5353
github.com/spf13/pflag v1.0.5 // indirect
54-
github.com/telepresenceio/telepresence/rpc/v2 v2.20.1-rc.1 // indirect
54+
github.com/telepresenceio/telepresence/rpc/v2 v2.20.1 // indirect
5555
github.com/vishvananda/netlink v1.3.0 // indirect
5656
github.com/vishvananda/netns v0.0.4 // indirect
5757
github.com/x448/float16 v0.8.4 // indirect

0 commit comments

Comments
 (0)