Skip to content

Commit 14869ec

Browse files
authored
Merge pull request #3748 from telepresenceio/release/v2.21.1
Release 2.21.1
2 parents 15c2fb1 + ef88eea commit 14869ec

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

CHANGELOG.yml

+5
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ items:
4343
`telepresence.getambassador.io/inject-container-ports` annotation, and it was also required in order to ingest
4444
such a workload. This was counterintuitive and the requirement was removed. An ingest doesn't use a port.
4545
docs: https://github.com/telepresenceio/telepresence/issues/3741
46+
- type: bugfix
47+
title: Upgrade module dependencies to get rid of critical vulnerability.
48+
body: >-
49+
Upgrade module dependencies to latest available stable. This includes upgrading golang.org/x/crypto, which
50+
had critical issues, from 0.30.0 to 0.31.0 where those issues are resolved.
4651
- version: 2.21.0
4752
date: 2024-12-13
4853
notes:

docs/release-notes.md

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
The ability to intercept a workload without a service is built around the `telepresence.getambassador.io/inject-container-ports` annotation, and it was also required in order to ingest such a workload. This was counterintuitive and the requirement was removed. An ingest doesn't use a port.
99
</div>
1010

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;">Upgrade module dependencies to get rid of critical vulnerability.</div></div>
12+
<div style="margin-left: 15px">
13+
14+
Upgrade module dependencies to latest available stable. This includes upgrading golang.org/x/crypto, which had critical issues, from 0.30.0 to 0.31.0 where those issues are resolved.
15+
</div>
16+
1117
## Version 2.21.0 <span style="font-size: 16px;">(December 13)</span>
1218
## <div style="display:flex;"><img src="images/feature.png" alt="feature" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">[Automatic VPN conflict avoidance](reference/vpn)</div></div>
1319
<div style="margin-left: 15px">

docs/release-notes.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ import { Note, Title, Body } from '@site/src/components/ReleaseNotes'
1212
<Title type="bugfix" docs="https://github.com/telepresenceio/telepresence/issues/3741">Allow ingest of serverless deployments without specifying an inject-container-ports annotation</Title>
1313
<Body>The ability to intercept a workload without a service is built around the `telepresence.getambassador.io/inject-container-ports` annotation, and it was also required in order to ingest such a workload. This was counterintuitive and the requirement was removed. An ingest doesn't use a port.</Body>
1414
</Note>
15+
<Note>
16+
<Title type="bugfix">Upgrade module dependencies to get rid of critical vulnerability.</Title>
17+
<Body>Upgrade module dependencies to latest available stable. This includes upgrading golang.org/x/crypto, which had critical issues, from 0.30.0 to 0.31.0 where those issues are resolved.</Body>
18+
</Note>
1519
## Version 2.21.0 <span style={{fontSize:'16px'}}>(December 13)</span>
1620
<Note>
1721
<Title type="feature" docs="reference/vpn">Automatic VPN conflict avoidance</Title>

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ require (
3636
github.com/spf13/pflag v1.0.5
3737
github.com/stretchr/testify v1.10.0
3838
github.com/telepresenceio/go-fuseftp/rpc v0.5.0
39-
github.com/telepresenceio/telepresence/rpc/v2 v2.21.0
39+
github.com/telepresenceio/telepresence/rpc/v2 v2.21.1-rc.0
4040
github.com/vishvananda/netlink v1.3.0
4141
golang.org/x/exp v0.0.0-20241210194714-1829a127f884
4242
golang.org/x/net v0.32.0

pkg/vif/testdata/router/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ require (
5050
github.com/rogpeppe/go-internal v1.13.1 // indirect
5151
github.com/spf13/cobra v1.8.1 // indirect
5252
github.com/spf13/pflag v1.0.5 // indirect
53-
github.com/telepresenceio/telepresence/rpc/v2 v2.21.0 // indirect
53+
github.com/telepresenceio/telepresence/rpc/v2 v2.21.1-rc.0 // indirect
5454
github.com/vishvananda/netlink v1.3.0 // indirect
5555
github.com/vishvananda/netns v0.0.5 // indirect
5656
github.com/x448/float16 v0.8.4 // indirect

0 commit comments

Comments
 (0)