Skip to content

Commit

Permalink
Prepare for v1.16.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Michi Mutsuzaki <[email protected]>
  • Loading branch information
michi-covalent committed Jul 25, 2024
1 parent aad5fa0 commit 930a8cf
Show file tree
Hide file tree
Showing 121 changed files with 8,066 additions and 1,772 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.16.0] - 2024-06-24
[v1.16.0]: https://github.com/cilium/cilium/compare/5aec7f58af0e57f93d5fa65f6e84a5e45609aac0...v1.16.0

**Major Changes:**
* Move cilium/hubble code to cilium/cilium repo (cilium/cilium#31893, @michi-covalent)

**Minor Changes:**
* hubble: node labels (cilium/cilium#32851, @kaworu)
* hubble: support drop\_reason\_desc in flow filter (cilium/cilium#32135, @chaunceyjiang)

**Misc Changes:**
* Add auto labeler for hubble-cli (cilium/cilium#32343, @aanm)
* hive: Rebase on cilium/hive (cilium/cilium#32020, @bimmlerd)
* hubble: Support --cel-expression filter in hubble observe (cilium/cilium#32147, @chancez)

## [v0.13.6] - 2024-06-18
[v0.13.6]: https://github.com/cilium/hubble/compare/v0.13.5...v0.13.6

Expand Down
19 changes: 10 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/cilium/hubble

go 1.22.2

require github.com/cilium/cilium v1.16.0-pre.3
require github.com/cilium/cilium v1.16.0

require (
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
Expand All @@ -21,6 +21,7 @@ require (
github.com/go-openapi/swag v0.23.0 // indirect
github.com/go-openapi/validate v0.24.0 // indirect
github.com/google/cel-go v0.20.1 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 // indirect
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
Expand All @@ -42,7 +43,7 @@ require (
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/cobra v1.8.0 // indirect
github.com/spf13/cobra v1.8.1 // indirect
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace // indirect
github.com/spf13/viper v1.19.0 // indirect
github.com/stoewer/go-strcase v1.3.0 // indirect
Expand All @@ -52,26 +53,26 @@ require (
go.mongodb.org/mongo-driver v1.14.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
golang.org/x/exp v0.0.0-20240531132922-fd00a4e0eefc // indirect
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/time v0.5.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240415180920-8c6c420018be // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d // indirect
google.golang.org/grpc v1.64.1 // indirect
google.golang.org/protobuf v1.34.1 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apimachinery v0.30.0 // indirect
k8s.io/client-go v0.30.0 // indirect
k8s.io/apimachinery v0.30.2 // indirect
k8s.io/client-go v0.30.2 // indirect
k8s.io/klog/v2 v2.120.1 // indirect
k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0 // indirect
)

// Replace directives from github.com/cilium/cilium. Keep in sync when updating Cilium!
// Copied from https://github.com/cilium/cilium/blob/v1.16.0-pre.3/go.mod#L287-L293
// Copied from https://github.com/cilium/cilium/blob/v1.16.0/go.mod#L285-L291
replace (
go.universe.tf/metallb => github.com/cilium/metallb v0.1.1-0.20220829170633-5d7dfb1129f7

Expand Down
34 changes: 17 additions & 17 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 930a8cf

Please sign in to comment.