diff --git a/CHANGELOG.md b/CHANGELOG.md index 278ebc1..b02a1aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +### enhancement +- Updated golang.org/x/net to v0.33.0 + ## v3.9.0 - 2024-12-16 ### ⛓️ Dependencies @@ -150,7 +153,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## 3.2.0 (2022-08-24) ### Changed -- Fixed a bug that prevented -collect_topic_size and -collect_topic_offset from working as expected +- Fixed a bug that prevented -collect_topic_size and -collect_topic_offset from working as expected - Bump dependencies: `gojmx` v0.0.0-20220801092610-d842b96425bf -> v0.0.0-20220818135048-2c786ece1d31 @@ -171,7 +174,7 @@ This new version adds two new features to monitor inactive consumers. We encoura - BOOTSTRAP_BROKER_JMX_USER and BOOTSTRAP_BROKER_JMX_PASSWORD are honored taking precedence to DEFAULT_JMX_USER and DEFAULT_JMX_BROKER on Bootsrap discovery. ### Added -- Autodetect Consumer/Producer names (clientID) (https://github.com/newrelic/nri-kafka/pull/178) +- Autodetect Consumer/Producer names (clientID) (https://github.com/newrelic/nri-kafka/pull/178) - Offset collection for consumer groups with inactive consumers using flag INACTIVE_CONSUMER_GROUP_OFFSET (https://github.com/newrelic/nri-kafka/pull/172) - Report consumer-group offset metrics by topic using flag CONSUMER_GROUP_OFFSET_BY_TOPIC (https://github.com/newrelic/nri-kafka/pull/172) @@ -209,7 +212,7 @@ Please notice that old [V3](https://docs.newrelic.com/docs/create-integrations/i ## 2.16.1 (2021-06-07) ### Changed -- New argument topic_source to be either broker or zookeeper (default broker) +- New argument topic_source to be either broker or zookeeper (default broker) ## 2.16.0 (2021-06-02) ### Changed diff --git a/go.mod b/go.mod index 1d70384..a864e50 100644 --- a/go.mod +++ b/go.mod @@ -40,7 +40,7 @@ require ( github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect golang.org/x/crypto v0.31.0 // indirect - golang.org/x/net v0.28.0 // indirect + golang.org/x/net v0.33.0 // indirect golang.org/x/text v0.21.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index c5560ad..d3c7eae 100644 --- a/go.sum +++ b/go.sum @@ -164,6 +164,8 @@ golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE= golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg= +golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= +golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=