Skip to content

Commit 21086f3

Browse files
committed
Bump version to 2.11.0
1 parent b5a90dc commit 21086f3

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [2.11.0] - 2025-06-18
9+
10+
Coil Egress now offers dual-stack support, enabling it to handle both IPv4 and IPv6 traffic within a single Egress. We have also implemented a new iptables rule in Egress pods (which are managed by the Egress resource and function as gateways to external networks) to drop invalid packets. Additionally, Egress-related metrics have been updated:
11+
12+
- New metrics have been added to count invalid packets dropped by this new iptables rule.
13+
- The coil_egress_nftables_masqueraded_packets and coil_egress_nftables_masqueraded_bytes metrics have been updated to include support for IPv6.
14+
15+
This release doesn't have any breaking changes.
16+
17+
### Added
18+
19+
- DualStack support for egress (#238)
20+
- egress: Add new iptabels rule for dropping invalid packets (#329)
21+
- Introduce egress metrics to count invalid packets and bytes (#331)
22+
- Support k8s 1.32 (#332)
23+
- Support IPv6 for egress metrics (#333)
24+
825
## [2.10.1] - 2025-04-18
926

1027
### Changed
@@ -365,7 +382,8 @@ The following `coil-controller` related resources are no longer needed, and you
365382
Coil version 2 is a complete rewrite of Coil version 1.
366383
This is the first release candidate with all the planned features implemented.
367384

368-
[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.10.1...HEAD
385+
[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.11.0...HEAD
386+
[2.11.0]: https://github.com/cybozu-go/coil/compare/v2.10.1...v2.11.0
369387
[2.10.1]: https://github.com/cybozu-go/coil/compare/v2.10.0...v2.10.1
370388
[2.10.0]: https://github.com/cybozu-go/coil/compare/v2.9.1...v2.10.0
371389
[2.9.1]: https://github.com/cybozu-go/coil/compare/v2.9.0...v2.9.1

v2/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
images:
22
- name: coil
3-
newTag: 2.10.1
3+
newTag: 2.11.0
44
newName: ghcr.io/cybozu-go/coil
55

66
resources:

v2/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
)
77

8-
const version = "2.10.1"
8+
const version = "2.11.0"
99

1010
// Version returns the semantic versioning string of Coil.
1111
func Version() string {

0 commit comments

Comments
 (0)