File tree Expand file tree Collapse file tree 6 files changed +14
-6
lines changed
Expand file tree Collapse file tree 6 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
77This project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
88
99## [ Unreleased]
10+ ## [ 0.7.12]
11+
12+ ### Changed
13+ - Adding logs for consul discovered ips ([ #80 ] https://github.com/gojek/courier-go/pull/80 )
14+ - Adding Debounce on consul ([ #82 ] https://github.com/gojek/courier-go/pull/82 )
15+ - Fix double value issue of service instance in consul metric ([ #81 ] https://github.com/gojek/courier-go/pull/81 )
16+ - fix round-robin issue when publishing ([ #71 ] https://github.com/gojek/courier-go/pull/71 )
17+
1018## [ 0.7.11]
1119
1220### Changed
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/gojek/courier-go/consul
33go 1.24
44
55require (
6- github.com/gojek/courier-go v0.7.11
7- github.com/gojek/courier-go/otelcourier v0.7.11
6+ github.com/gojek/courier-go v0.7.12
7+ github.com/gojek/courier-go/otelcourier v0.7.12
88 github.com/hashicorp/consul/api v1.32.1
99 go.opentelemetry.io/otel v1.24.0
1010 go.opentelemetry.io/otel/metric v1.24.0
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/gojek/courier-go/otelcourier
33go 1.24
44
55require (
6- github.com/gojek/courier-go v0.7.11
6+ github.com/gojek/courier-go v0.7.12
77 github.com/prometheus/client_golang v1.18.0
88 github.com/prometheus/client_model v0.6.0
99 github.com/stretchr/testify v1.9.0
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/gojek/courier-go/slog
33go 1.24
44
55require (
6- github.com/gojek/courier-go v0.7.11
6+ github.com/gojek/courier-go v0.7.12
77 github.com/stretchr/testify v1.10.0
88)
99
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package courier
22
33// Version can be used to get the current courier library version
44func Version () string {
5- return "0.7.11 "
5+ return "0.7.12 "
66 // This string is updated by the pre_release.sh script during release
77}
Original file line number Diff line number Diff line change 44
55require (
66 github.com/envoyproxy/go-control-plane v0.12.0
7- github.com/gojek/courier-go v0.7.11
7+ github.com/gojek/courier-go v0.7.12
88 github.com/golang/protobuf v1.5.4
99 github.com/stretchr/testify v1.9.0
1010 google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de
You can’t perform that action at this time.
0 commit comments