Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion middleware/compress/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.26.4

require (
github.com/andybalholm/brotli v1.2.1
github.com/goceleris/celeris v1.5.3
github.com/goceleris/celeris v1.5.4
github.com/klauspost/compress v1.18.6
)

Expand Down
2 changes: 1 addition & 1 deletion middleware/metrics/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/goceleris/celeris/middleware/metrics
go 1.26.4

require (
github.com/goceleris/celeris v1.5.3
github.com/goceleris/celeris v1.5.4
github.com/prometheus/client_golang v1.23.2
github.com/prometheus/client_model v0.6.2
github.com/prometheus/common v0.69.0
Expand Down
2 changes: 1 addition & 1 deletion middleware/otel/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/goceleris/celeris/middleware/otel
go 1.26.4

require (
github.com/goceleris/celeris v1.5.3
github.com/goceleris/celeris v1.5.4
go.opentelemetry.io/otel v1.44.0
go.opentelemetry.io/otel/metric v1.44.0
go.opentelemetry.io/otel/sdk v1.44.0
Expand Down
2 changes: 1 addition & 1 deletion middleware/protobuf/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/goceleris/celeris/middleware/protobuf
go 1.26.4

require (
github.com/goceleris/celeris v1.5.3
github.com/goceleris/celeris v1.5.4
google.golang.org/protobuf v1.36.11
)

Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
)

// Version is the semantic version of the celeris module.
const Version = "1.5.3"
const Version = "1.5.4"

// ErrAlreadyStarted is returned when Start or StartWithContext is called on a
// server that is already running.
Expand Down
Loading