Skip to content

Commit 8847966

Browse files
committed
Merge branch 'release/v2.22.1' into release/v2
2 parents 4d2bee9 + 5ecb39a commit 8847966

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

.github/workflows/release.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ jobs:
8686
runs-on: ubuntu-latest
8787
needs:
8888
- build-release
89+
outputs:
90+
draft: ${{ steps.semver_check.outputs.draft }}
91+
prerelease: ${{ steps.semver_check.outputs.prerelease }}
8992
steps:
9093
- name: Download artifacts
9194
uses: actions/download-artifact@v4
@@ -161,7 +164,7 @@ jobs:
161164
needs:
162165
- push-images
163166
- publish-release
164-
if: ${{ needs.publish-release.semver_check.outputs.draft == 'false' }}
167+
if: ${{ needs.publish-release.outputs.draft == 'false' }}
165168
strategy:
166169
fail-fast: false
167170
matrix:

CHANGELOG.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ items:
3737
makes the `wiretap` completely read-only, there's no limit to how many simultaneous wiretaps that can be
3838
served. In fact, a `wiretap` and an `intercept` on the same port can run simultaneously.
3939
- version: 2.22.1
40-
date: (TBD)
40+
date: 2025-03-27
4141
notes:
4242
- type: bugfix
4343
title: Only restore inactive traffic-agent after a replace.

docs/release-notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The new `telepresence wiretap` command introduces a read-only form of an `interc
99
Similar to an `ingest`, a `wiretap` will always enforce read-only status on all volume mounts, and since that makes the `wiretap` completely read-only, there's no limit to how many simultaneous wiretaps that can be served. In fact, a `wiretap` and an `intercept` on the same port can run simultaneously.
1010
</div>
1111

12-
## Version 2.22.1
12+
## Version 2.22.1 <span style="font-size: 16px;">(March 27)</span>
1313
## <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>
1414
<div style="margin-left: 15px">
1515

docs/release-notes.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The new `telepresence wiretap` command introduces a read-only form of an `interc
1515
Similar to an `ingest`, a `wiretap` will always enforce read-only status on all volume mounts, and since that makes the `wiretap` completely read-only, there's no limit to how many simultaneous wiretaps that can be served. In fact, a `wiretap` and an `intercept` on the same port can run simultaneously.
1616
</Body>
1717
</Note>
18-
## Version 2.22.1
18+
## Version 2.22.1 <span style={{fontSize:'16px'}}>(March 27)</span>
1919
<Note>
2020
<Title type="bugfix">Only restore inactive traffic-agent after a replace.</Title>
2121
<Body>

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.1-rc.0
42+
github.com/telepresenceio/telepresence/rpc/v2 v2.22.1
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.1-rc.0 // indirect
54+
github.com/telepresenceio/telepresence/rpc/v2 v2.22.1 // 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)