Skip to content

Commit 3fa5c2a

Browse files
Merge branch 'develop/6' into sudhanshu#2608-fix
2 parents 054f994 + dac1c85 commit 3fa5c2a

4 files changed

Lines changed: 142 additions & 245 deletions

File tree

CHANGELOG-6.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,19 @@ Versioning](http://semver.org/spec/v2.0.0.html).
1515
### Changed
1616
- The session config to watch over the user updated and the wizzard bus
1717

18+
## [6.14.2] - 2026-06-15
19+
20+
### Fixed
21+
- Resolved multiple CVE vulnerabilities by upgrading Go from 1.26.0 to 1.26.3 and updating critical dependencies:
22+
- `golang.org/x/crypto` to v0.51.0
23+
- `golang.org/x/net` to v0.55.0
24+
- `google.golang.org/grpc` to v1.81.1
25+
- Fixed excessive etcd warning logs in non-customized deployments by explicitly restoring etcd's official default values for `WarningApplyDuration` and `WarningUnaryRequestDuration` when no custom values are configured.
26+
- Updated WebSocket library (`github.com/sensu/websocket`) from v1.0.1 to v1.0.2 with stability and security improvements.
27+
28+
### Added
29+
- Added ANSI-formatted output rendering in React views (Event Summary) using `ansi-to-react` library, replacing the custom `ANSIColor.worker.js` web worker implementation.
30+
- Added DigiCert code-signing for Windows packages (`sensu-agent` and `sensu-cli`).
1831

1932
## [6.14.1] - 2026-05-04
2033

backend/schedulerd/check_timer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
func TestNextCronTime(t *testing.T) {
11-
now := mockTime.Now()
11+
now := mockTime.Now().UTC()
1212

1313
// Valid cron string will return a time in the future, on an even minute
1414
nextCron, err := NextCronTime(now, "* * * * *")

go.mod

Lines changed: 39 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/sensu/sensu-go
22

33
go 1.26.3
44

5-
replace github.com/gorilla/websocket => github.com/sensu/websocket v1.0.1
5+
replace github.com/gorilla/websocket => github.com/sensu/websocket v1.0.2
66

77
replace go.etcd.io/etcd/api/v3 => github.com/sensu/etcd/api/v3 v3.0.0
88

@@ -47,8 +47,8 @@ require (
4747
github.com/mattn/go-colorable v0.1.13 // indirect
4848
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
4949
github.com/mitchellh/go-homedir v1.1.0
50-
github.com/mitchellh/hashstructure v1.0.0
51-
github.com/mitchellh/mapstructure v1.1.2
50+
github.com/mitchellh/hashstructure v1.1.0
51+
github.com/mitchellh/mapstructure v1.5.0
5252
github.com/olekukonko/tablewriter v0.0.5
5353
github.com/prometheus/client_golang v1.20.5
5454
github.com/prometheus/client_model v0.6.1
@@ -59,8 +59,8 @@ require (
5959
github.com/shirou/gopsutil/v3 v3.23.2
6060
github.com/sirupsen/logrus v1.9.3
6161
github.com/spf13/cobra v1.9.1
62-
github.com/spf13/pflag v1.0.6
63-
github.com/spf13/viper v1.7.0
62+
github.com/spf13/pflag v1.0.10
63+
github.com/spf13/viper v1.21.0
6464
github.com/stretchr/testify v1.11.1
6565
github.com/willf/pad v0.0.0-20160331131008-b3d780601022
6666
go.etcd.io/bbolt v1.4.3
@@ -69,13 +69,13 @@ require (
6969
go.etcd.io/etcd/client/v3 v3.6.8
7070
go.etcd.io/etcd/server/v3 v3.6.8
7171
go.uber.org/atomic v1.11.0
72-
go.uber.org/zap v1.27.0
73-
golang.org/x/crypto v0.48.0
74-
golang.org/x/mod v0.32.0
75-
golang.org/x/net v0.51.0
76-
golang.org/x/sys v0.41.0
72+
go.uber.org/zap v1.28.0
73+
golang.org/x/crypto v0.53.0
74+
golang.org/x/mod v0.36.0
75+
golang.org/x/net v0.56.0
76+
golang.org/x/sys v0.46.0
7777
golang.org/x/time v0.14.0
78-
google.golang.org/grpc v1.79.1
78+
google.golang.org/grpc v1.81.1
7979
gopkg.in/h2non/filetype.v1 v1.0.3
8080
gopkg.in/yaml.v2 v2.4.0
8181
)
@@ -86,81 +86,80 @@ require (
8686
github.com/go-logr/logr v1.4.3 // indirect
8787
github.com/go-test/deep v1.0.8
8888
github.com/google/btree v1.1.3 // indirect
89-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
89+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0 // indirect
9090
github.com/jonboulle/clockwork v0.5.0 // indirect
9191
github.com/kr/pty v1.1.8 // indirect
9292
github.com/prometheus/procfs v0.15.1 // indirect
93-
github.com/sensu/core/v2 v2.21.1
94-
github.com/sensu/core/v3 v3.10.1
93+
github.com/sensu/core/v2 v2.21.3
94+
github.com/sensu/core/v3 v3.10.3
9595
github.com/sensu/sensu-api-tools v0.2.1
9696
github.com/sensu/sensu-go/types v0.13.0
9797
github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 // indirect
9898
github.com/xiang90/probing v0.0.0-20221125231312-a49e3df8f510 // indirect
9999
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
100-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
100+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.44.0 // indirect
101101
go.uber.org/multierr v1.11.0
102-
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
103-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
102+
google.golang.org/genproto/googleapis/api v0.0.0-20260526163538-3dc84a4a5aaa // indirect
103+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260526163538-3dc84a4a5aaa // indirect
104104
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
105-
sigs.k8s.io/yaml v1.4.0 // indirect
105+
sigs.k8s.io/yaml v1.6.0 // indirect
106106
)
107107

108108
require golang.org/x/tools/go/vcs v0.1.0-deprecated
109109

110110
require (
111111
github.com/beorn7/perks v1.0.1 // indirect
112-
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
112+
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
113113
github.com/cespare/xxhash/v2 v2.3.0 // indirect
114114
github.com/coreos/go-semver v0.3.1 // indirect
115115
github.com/davecgh/go-spew v1.1.1 // indirect
116-
github.com/fsnotify/fsnotify v1.4.7 // indirect
116+
github.com/fsnotify/fsnotify v1.10.1 // indirect
117117
github.com/go-logr/stdr v1.2.2 // indirect
118118
github.com/go-ole/go-ole v1.2.6 // indirect
119+
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
119120
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
120121
github.com/google/go-cmp v0.7.0 // indirect
121122
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1 // indirect
122123
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 // indirect
123-
github.com/hashicorp/hcl v1.0.0 // indirect
124124
github.com/inconshreveable/mousetrap v1.1.0 // indirect
125-
github.com/ipfs/go-log/v2 v2.0.5 // indirect
125+
github.com/ipfs/go-log/v2 v2.9.2 // indirect
126126
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
127127
github.com/klauspost/compress v1.17.9 // indirect
128128
github.com/kylelemons/godebug v1.1.0 // indirect
129129
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
130130
github.com/magiconair/properties v1.8.1 // indirect
131-
github.com/mattn/go-isatty v0.0.19 // indirect
131+
github.com/mattn/go-isatty v0.0.22 // indirect
132132
github.com/mattn/go-runewidth v0.0.9 // indirect
133133
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
134-
github.com/opentracing/opentracing-go v1.1.0 // indirect
135-
github.com/pelletier/go-toml v1.2.0 // indirect
134+
github.com/opentracing/opentracing-go v1.2.0 // indirect
135+
github.com/pelletier/go-toml/v2 v2.3.1 // indirect
136136
github.com/pkg/errors v0.9.1 // indirect
137137
github.com/pmezard/go-difflib v1.0.0 // indirect
138138
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
139+
github.com/sagikazarmark/locafero v0.12.0 // indirect
139140
github.com/soheilhy/cmux v0.1.5 // indirect
140-
github.com/spf13/afero v1.10.0 // indirect
141-
github.com/spf13/cast v1.3.0 // indirect
142-
github.com/spf13/jwalterweatherman v1.0.0 // indirect
141+
github.com/spf13/afero v1.15.0 // indirect
142+
github.com/spf13/cast v1.10.0 // indirect
143143
github.com/stretchr/objx v0.5.2 // indirect
144-
github.com/subosito/gotenv v1.2.0 // indirect
144+
github.com/subosito/gotenv v1.6.0 // indirect
145145
github.com/tklauser/go-sysconf v0.3.11 // indirect
146146
github.com/tklauser/numcpus v0.6.0 // indirect
147147
github.com/yusufpapurcu/wmi v1.2.2 // indirect
148148
go.etcd.io/etcd/pkg/v3 v3.6.8 // indirect
149149
go.etcd.io/raft/v3 v3.6.0 // indirect
150150
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
151-
go.opentelemetry.io/otel v1.40.0 // indirect
152-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
153-
go.opentelemetry.io/otel/metric v1.40.0 // indirect
154-
go.opentelemetry.io/otel/sdk v1.40.0 // indirect
155-
go.opentelemetry.io/otel/trace v1.40.0 // indirect
156-
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
157-
golang.org/x/term v0.40.0 // indirect
158-
golang.org/x/text v0.34.0 // indirect
151+
go.opentelemetry.io/otel v1.44.0 // indirect
152+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.44.0 // indirect
153+
go.opentelemetry.io/otel/metric v1.44.0 // indirect
154+
go.opentelemetry.io/otel/sdk v1.44.0 // indirect
155+
go.opentelemetry.io/otel/trace v1.44.0 // indirect
156+
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
157+
go.yaml.in/yaml/v2 v2.4.4 // indirect
158+
go.yaml.in/yaml/v3 v3.0.4 // indirect
159+
golang.org/x/term v0.44.0 // indirect
160+
golang.org/x/text v0.38.0 // indirect
159161
google.golang.org/protobuf v1.36.11 // indirect
160-
gopkg.in/ini.v1 v1.51.0 // indirect
161162
gopkg.in/sourcemap.v1 v1.0.5 // indirect
162163
gopkg.in/yaml.v3 v3.0.1 // indirect
163164
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
164165
)
165-
166-
replace github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.14.22

0 commit comments

Comments
 (0)