Skip to content

Commit 4b75e34

Browse files
renovate[bot]opentelemetrybotdmitryax
authored
Update module github.com/klauspost/compress to v1.17.7 (#9644)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/klauspost/compress](https://togithub.com/klauspost/compress) | `v1.17.6` -> `v1.17.7` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fklauspost%2fcompress/v1.17.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fklauspost%2fcompress/v1.17.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fklauspost%2fcompress/v1.17.6/v1.17.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fklauspost%2fcompress/v1.17.6/v1.17.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>klauspost/compress (github.com/klauspost/compress)</summary> ### [`v1.17.7`](https://togithub.com/klauspost/compress/releases/tag/v1.17.7) [Compare Source](https://togithub.com/klauspost/compress/compare/v1.17.6...v1.17.7) #### What's Changed - s2: Add AsyncFlush method: Complete the block without flushing by [@&#8203;Jille](https://togithub.com/Jille) in [https://github.com/klauspost/compress/pull/927](https://togithub.com/klauspost/compress/pull/927) - s2: Fix literal+repeat exceeds dst crash by [@&#8203;klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/930](https://togithub.com/klauspost/compress/pull/930) **Full Changelog**: klauspost/compress@v1.17.6...v1.17.7 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]> Co-authored-by: Dmitrii Anoshin <[email protected]>
1 parent d8f2047 commit 4b75e34

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

cmd/otelcorecol/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ require (
4949
github.com/hashicorp/go-version v1.6.0 // indirect
5050
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5151
github.com/json-iterator/go v1.1.12 // indirect
52-
github.com/klauspost/compress v1.17.6 // indirect
52+
github.com/klauspost/compress v1.17.7 // indirect
5353
github.com/knadh/koanf/maps v0.1.1 // indirect
5454
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
5555
github.com/knadh/koanf/v2 v2.1.0 // indirect

cmd/otelcorecol/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/confighttp/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.21
44

55
require (
66
github.com/golang/snappy v0.0.4
7-
github.com/klauspost/compress v1.17.6
7+
github.com/klauspost/compress v1.17.7
88
github.com/rs/cors v1.10.1
99
github.com/stretchr/testify v1.8.4
1010
go.opentelemetry.io/collector v0.95.0

config/confighttp/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/otlphttpexporter/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ require (
4040
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
4141
github.com/hashicorp/go-version v1.6.0 // indirect
4242
github.com/json-iterator/go v1.1.12 // indirect
43-
github.com/klauspost/compress v1.17.6 // indirect
43+
github.com/klauspost/compress v1.17.7 // indirect
4444
github.com/knadh/koanf/maps v0.1.1 // indirect
4545
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
4646
github.com/knadh/koanf/v2 v2.1.0 // indirect

exporter/otlphttpexporter/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/e2e/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ require (
3636
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
3737
github.com/hashicorp/go-version v1.6.0 // indirect
3838
github.com/json-iterator/go v1.1.12 // indirect
39-
github.com/klauspost/compress v1.17.6 // indirect
39+
github.com/klauspost/compress v1.17.7 // indirect
4040
github.com/knadh/koanf/maps v0.1.1 // indirect
4141
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
4242
github.com/knadh/koanf/v2 v2.1.0 // indirect

internal/e2e/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/otlpreceiver/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.21
44

55
require (
66
github.com/gogo/protobuf v1.3.2
7-
github.com/klauspost/compress v1.17.6
7+
github.com/klauspost/compress v1.17.7
88
github.com/stretchr/testify v1.8.4
99
go.opentelemetry.io/collector v0.95.0
1010
go.opentelemetry.io/collector/component v0.95.0

receiver/otlpreceiver/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)