Skip to content

Commit 6754c6f

Browse files
committed
Prepare for v1.18.5 release
Signed-off-by: Glib Smaga <[email protected]>
1 parent 8c26bd0 commit 6754c6f

File tree

118 files changed

+2946
-1698
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+2946
-1698
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v1.18.5] - 2026-01-05
9+
[v1.18.5]: https://github.com/cilium/cilium/compare/v1.18.3...v1.18.5
10+
11+
Summary of Changes
12+
------------------
13+
14+
**Misc Changes:**
15+
* chore(deps): update actions/checkout action to v6.0.1 (cilium/hubble#1738, @renovate[bot])
16+
* chore(deps): update actions/setup-go action to v6.1.0 (cilium/hubble#1734, @renovate[bot])
17+
* chore(deps): update all github action dependencies (patch) (cilium/hubble#1740, @renovate[bot])
18+
* chore(deps): update dependency cilium/cilium to v1.18.3 (cilium/hubble#1726, @renovate[bot])
19+
* chore(deps): update dependency helm/helm to v3.19.1 (cilium/hubble#1730, @renovate[bot])
20+
* chore(deps): update dependency kubernetes-sigs/kind to v0.31.0 (cilium/hubble#1742, @renovate[bot])
21+
* chore(deps): update golang to v1.25.4 (patch) (cilium/hubble#1729, @renovate[bot])
22+
* chore(deps): update golang to v1.25.5 (patch) (cilium/hubble#1739, @renovate[bot])
23+
* chore(deps): update helm/kind-action action to v1.13.0 (cilium/hubble#1728, @renovate[bot])
24+
* chore(deps): update library/golang:1.25.5-alpine docker digest to ac09a5f (cilium/hubble#1741, @renovate[bot])
25+
826
## [v1.18.3] - 2025-10-24
927
[v1.18.3]: https://github.com/cilium/cilium/compare/v1.18.0...v1.18.3
1028

go.mod

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55

66
toolchain go1.25.5
77

8-
require github.com/cilium/cilium v1.18.3
8+
require github.com/cilium/cilium v1.18.5
99

1010
require (
1111
cel.dev/expr v0.24.0 // indirect
@@ -20,7 +20,7 @@ require (
2020
github.com/emicklei/go-restful/v3 v3.12.0 // indirect
2121
github.com/fatih/color v1.18.0 // indirect
2222
github.com/fsnotify/fsnotify v1.9.0 // indirect
23-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
23+
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
2424
github.com/go-errors/errors v1.4.2 // indirect
2525
github.com/go-logr/logr v1.4.3 // indirect
2626
github.com/go-openapi/analysis v0.23.0 // indirect
@@ -86,14 +86,14 @@ require (
8686
go.yaml.in/yaml/v3 v3.0.4 // indirect
8787
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
8888
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
89-
golang.org/x/net v0.42.0 // indirect
89+
golang.org/x/net v0.47.0 // indirect
9090
golang.org/x/oauth2 v0.30.0 // indirect
91-
golang.org/x/sync v0.16.0 // indirect
92-
golang.org/x/sys v0.34.0 // indirect
93-
golang.org/x/term v0.33.0 // indirect
94-
golang.org/x/text v0.27.0 // indirect
91+
golang.org/x/sync v0.18.0 // indirect
92+
golang.org/x/sys v0.38.0 // indirect
93+
golang.org/x/term v0.37.0 // indirect
94+
golang.org/x/text v0.31.0 // indirect
9595
golang.org/x/time v0.12.0 // indirect
96-
golang.org/x/tools v0.35.0 // indirect
96+
golang.org/x/tools v0.38.0 // indirect
9797
google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 // indirect
9898
google.golang.org/genproto/googleapis/rpc v0.0.0-20250721164621-a45f3dfb1074 // indirect
9999
google.golang.org/grpc v1.74.2 // indirect
@@ -118,7 +118,7 @@ require (
118118
)
119119

120120
// Replace directives from github.com/cilium/cilium. Keep in sync when updating Cilium!
121-
// Copied from https://github.com/cilium/cilium/blob/v1.18.3/go.mod
121+
// Copied from https://github.com/cilium/cilium/blob/v1.18.5/go.mod
122122

123123
// Using private fork of controller-tools. See commit msg for more context
124124
// as to why we are using a private fork.
@@ -127,3 +127,7 @@ replace sigs.k8s.io/controller-tools => github.com/cilium/controller-tools v0.16
127127
// Using private fork of gobgp. See commit msg for more context as to why we
128128
// are using a private fork.
129129
replace github.com/osrg/gobgp/v3 => github.com/cilium/gobgp/v3 v3.0.0-20250717193620-26a4abb75464
130+
131+
// Using private fork of k8s.io/apimachinery with additional patches to support
132+
// `omitzero` json tags in convertors used by cilium.
133+
replace k8s.io/apimachinery => github.com/cilium/apimachinery v0.33.3-1

go.sum

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cilium/cilium/AUTHORS

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cilium/cilium/api/v1/flow/flow.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cilium/cilium/api/v1/models/backend_address.go

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cilium/cilium/api/v1/observer/observer.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)