Skip to content

Commit a013280

Browse files
committed
Prepare v2.22.2-rc.0
Signed-off-by: Thomas Hallgren <[email protected]>
1 parent 3766b06 commit a013280

File tree

6 files changed

+32
-4
lines changed

6 files changed

+32
-4
lines changed

CHANGELOG.yml

+10
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@
2424
#
2525
# For older changes, see CHANGELOG.OLD.md
2626
items:
27+
- version: 2.22.2
28+
date: (TBD)
29+
notes:
30+
- type: bugfix
31+
title: Panic when using telepresence replace in a IPv6-only cluster
32+
body: |-
33+
A "slice bounds out of range" would occur when the targeted Pod's Traffic Agent requested a local dialer to
34+
be created on the client. This was due to a glitch in the VPN-tunnel implementation that got triggered when
35+
a remote IPv6-address was combined with a local IPv4-address.
36+
docs: https://github.com/telepresenceio/telepresence/issues/3828
2737
- version: 2.22.1
2838
date: 2025-03-27
2939
notes:

docs/release-notes.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11

22
[comment]: # (Code generated by relnotesgen. DO NOT EDIT.)
33
# <img src="images/logo.png" height="64px"/> Telepresence Release Notes
4+
## Version 2.22.2
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;">[Panic when using telepresence replace in a IPv6-only cluster](https://github.com/telepresenceio/telepresence/issues/3828)</div></div>
6+
<div style="margin-left: 15px">
7+
8+
A "slice bounds out of range" would occur when the targeted Pod's Traffic Agent requested a local dialer to
9+
be created on the client. This was due to a glitch in the VPN-tunnel implementation that got triggered when
10+
a remote IPv6-address was combined with a local IPv4-address.
11+
</div>
12+
413
## Version 2.22.1 <span style="font-size: 16px;">(March 27)</span>
514
## <div style="display:flex;"><img src="images/bugfix.png" alt="bugfix" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">Only restore inactive traffic-agent after a replace.</div></div>
615
<div style="margin-left: 15px">

docs/release-notes.mdx

+9
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.22.2
11+
<Note>
12+
<Title type="bugfix" docs="https://github.com/telepresenceio/telepresence/issues/3828">Panic when using telepresence replace in a IPv6-only cluster</Title>
13+
<Body>
14+
A "slice bounds out of range" would occur when the targeted Pod's Traffic Agent requested a local dialer to
15+
be created on the client. This was due to a glitch in the VPN-tunnel implementation that got triggered when
16+
a remote IPv6-address was combined with a local IPv4-address.
17+
</Body>
18+
</Note>
1019
## Version 2.22.1 <span style={{fontSize:'16px'}}>(March 27)</span>
1120
<Note>
1221
<Title type="bugfix">Only restore inactive traffic-agent after a replace.</Title>

docs/variables.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version: "2.22.1"
2-
dlVersion: "v2.22.1"
1+
version: "2.22.2"
2+
dlVersion: "v2.22.2"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ require (
3939
github.com/stretchr/testify v1.10.0
4040
github.com/telepresenceio/go-fuseftp v0.6.6
4141
github.com/telepresenceio/go-fuseftp/rpc v0.6.6
42-
github.com/telepresenceio/telepresence/rpc/v2 v2.22.2-test.0
42+
github.com/telepresenceio/telepresence/rpc/v2 v2.22.2-rc.0
4343
github.com/vishvananda/netlink v1.3.0
4444
golang.org/x/net v0.37.0
4545
golang.org/x/sys v0.31.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.14.1 // indirect
5252
github.com/spf13/cobra v1.9.1 // indirect
5353
github.com/spf13/pflag v1.0.6 // indirect
54-
github.com/telepresenceio/telepresence/rpc/v2 v2.22.2-test.0 // indirect
54+
github.com/telepresenceio/telepresence/rpc/v2 v2.22.2-rc.0 // indirect
5555
github.com/vishvananda/netlink v1.3.0 // indirect
5656
github.com/vishvananda/netns v0.0.5 // indirect
5757
github.com/x448/float16 v0.8.4 // indirect

0 commit comments

Comments
 (0)