Skip to content

Commit e8bc073

Browse files
renovate[bot]opentelemetrybotsongy23
authored
fix(deps): update module github.com/sap/go-hdb to v1.11.3 (#34754)
[![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/SAP/go-hdb](https://togithub.com/SAP/go-hdb) | `v1.11.0` -> `v1.11.3` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fSAP%2fgo-hdb/v1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fSAP%2fgo-hdb/v1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fSAP%2fgo-hdb/v1.11.0/v1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fSAP%2fgo-hdb/v1.11.0/v1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>SAP/go-hdb (github.com/SAP/go-hdb)</summary> ### [`v1.11.3`](https://togithub.com/SAP/go-hdb/blob/HEAD/RELEASENOTES.md#v1113) [Compare Source](https://togithub.com/SAP/go-hdb/compare/v1.11.2...v1.11.3) - fixed bug (panic) in sql trace output in case the sql trace is not switched on - updated dependencies ### [`v1.11.2`](https://togithub.com/SAP/go-hdb/blob/HEAD/RELEASENOTES.md#v1112) [Compare Source](https://togithub.com/SAP/go-hdb/compare/v1.11.0...v1.11.2) - fixed bug in converting integer arguments to HANA boolean type </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 was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]> Co-authored-by: Yang Song <[email protected]>
1 parent cdfa5f9 commit e8bc073

File tree

10 files changed

+44
-39
lines changed

10 files changed

+44
-39
lines changed

cmd/otelcontribcol/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ require (
372372
github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect
373373
github.com/Microsoft/go-winio v0.6.2 // indirect
374374
github.com/ReneKroon/ttlcache/v2 v2.11.0 // indirect
375-
github.com/SAP/go-hdb v1.11.0 // indirect
375+
github.com/SAP/go-hdb v1.11.3 // indirect
376376
github.com/SermoDigital/jose v0.9.2-0.20180104203859-803625baeddc // indirect
377377
github.com/Showmax/go-fqdn v1.0.0 // indirect
378378
github.com/aerospike/aerospike-client-go/v7 v7.6.1 // indirect
@@ -687,7 +687,7 @@ require (
687687
github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect
688688
github.com/pquerna/cachecontrol v0.1.0 // indirect
689689
github.com/prometheus-community/windows_exporter v0.27.2 // indirect
690-
github.com/prometheus/client_golang v1.19.1 // indirect
690+
github.com/prometheus/client_golang v1.20.0 // indirect
691691
github.com/prometheus/client_model v0.6.1 // indirect
692692
github.com/prometheus/common v0.55.0 // indirect
693693
github.com/prometheus/common/sigv4 v0.1.0 // indirect

cmd/otelcontribcol/go.sum

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/sqlquery/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/sqlque
33
go 1.22.0
44

55
require (
6-
github.com/SAP/go-hdb v1.11.0
6+
github.com/SAP/go-hdb v1.11.3
77
github.com/go-sql-driver/mysql v1.8.1
88
github.com/lib/pq v1.10.9
99
github.com/microsoft/go-mssqldb v1.7.2
@@ -65,7 +65,7 @@ require (
6565
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
6666
github.com/jmespath/go-jmespath v0.4.0 // indirect
6767
github.com/json-iterator/go v1.1.12 // indirect
68-
github.com/klauspost/compress v1.16.7 // indirect
68+
github.com/klauspost/compress v1.17.9 // indirect
6969
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
7070
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7171
github.com/modern-go/reflect2 v1.0.2 // indirect
@@ -74,7 +74,7 @@ require (
7474
github.com/pierrec/lz4/v4 v4.1.18 // indirect
7575
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
7676
github.com/pmezard/go-difflib v1.0.0 // indirect
77-
github.com/prometheus/client_golang v1.19.1 // indirect
77+
github.com/prometheus/client_golang v1.20.0 // indirect
7878
github.com/prometheus/client_model v0.6.1 // indirect
7979
github.com/prometheus/common v0.55.0 // indirect
8080
github.com/prometheus/procfs v0.15.1 // indirect

internal/sqlquery/go.sum

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/saphanareceiver/go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/receiver/saphan
33
go 1.22.0
44

55
require (
6-
github.com/SAP/go-hdb v1.11.0
6+
github.com/SAP/go-hdb v1.11.3
77
github.com/google/go-cmp v0.6.0
88
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.107.0
99
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.107.0
@@ -35,6 +35,7 @@ require (
3535
github.com/google/uuid v1.6.0 // indirect
3636
github.com/hashicorp/go-version v1.7.0 // indirect
3737
github.com/json-iterator/go v1.1.12 // indirect
38+
github.com/klauspost/compress v1.17.9 // indirect
3839
github.com/knadh/koanf/maps v0.1.1 // indirect
3940
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
4041
github.com/knadh/koanf/v2 v2.1.1 // indirect
@@ -45,7 +46,7 @@ require (
4546
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4647
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.107.0 // indirect
4748
github.com/pmezard/go-difflib v1.0.0 // indirect
48-
github.com/prometheus/client_golang v1.19.1 // indirect
49+
github.com/prometheus/client_golang v1.20.0 // indirect
4950
github.com/prometheus/client_model v0.6.1 // indirect
5051
github.com/prometheus/common v0.55.0 // indirect
5152
github.com/prometheus/procfs v0.15.1 // indirect

receiver/saphanareceiver/go.sum

Lines changed: 8 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/sqlqueryreceiver/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ require (
3838
github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect
3939
github.com/Microsoft/go-winio v0.6.1 // indirect
4040
github.com/Microsoft/hcsshim v0.11.4 // indirect
41-
github.com/SAP/go-hdb v1.11.0 // indirect
41+
github.com/SAP/go-hdb v1.11.3 // indirect
4242
github.com/apache/arrow/go/v15 v15.0.0 // indirect
4343
github.com/aws/aws-sdk-go-v2 v1.26.1 // indirect
4444
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect
@@ -92,7 +92,7 @@ require (
9292
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
9393
github.com/jmespath/go-jmespath v0.4.0 // indirect
9494
github.com/json-iterator/go v1.1.12 // indirect
95-
github.com/klauspost/compress v1.17.2 // indirect
95+
github.com/klauspost/compress v1.17.9 // indirect
9696
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
9797
github.com/knadh/koanf/maps v0.1.1 // indirect
9898
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
@@ -124,7 +124,7 @@ require (
124124
github.com/pkg/errors v0.9.1 // indirect
125125
github.com/pmezard/go-difflib v1.0.0 // indirect
126126
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
127-
github.com/prometheus/client_golang v1.19.1 // indirect
127+
github.com/prometheus/client_golang v1.20.0 // indirect
128128
github.com/prometheus/client_model v0.6.1 // indirect
129129
github.com/prometheus/common v0.55.0 // indirect
130130
github.com/prometheus/procfs v0.15.1 // indirect

receiver/sqlqueryreceiver/go.sum

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/sqlserverreceiver/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ require (
3030
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 // indirect
3131
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.0.0 // indirect
3232
github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect
33-
github.com/SAP/go-hdb v1.11.0 // indirect
33+
github.com/SAP/go-hdb v1.11.3 // indirect
3434
github.com/apache/arrow/go/v15 v15.0.0 // indirect
3535
github.com/aws/aws-sdk-go-v2 v1.26.1 // indirect
3636
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect
@@ -74,7 +74,7 @@ require (
7474
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
7575
github.com/jmespath/go-jmespath v0.4.0 // indirect
7676
github.com/json-iterator/go v1.1.12 // indirect
77-
github.com/klauspost/compress v1.16.7 // indirect
77+
github.com/klauspost/compress v1.17.9 // indirect
7878
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
7979
github.com/knadh/koanf/maps v0.1.1 // indirect
8080
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
@@ -91,7 +91,7 @@ require (
9191
github.com/pierrec/lz4/v4 v4.1.18 // indirect
9292
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
9393
github.com/pmezard/go-difflib v1.0.0 // indirect
94-
github.com/prometheus/client_golang v1.19.1 // indirect
94+
github.com/prometheus/client_golang v1.20.0 // indirect
9595
github.com/prometheus/client_model v0.6.1 // indirect
9696
github.com/prometheus/common v0.55.0 // indirect
9797
github.com/prometheus/procfs v0.15.1 // indirect

0 commit comments

Comments
 (0)