forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pull] main from open-telemetry:main #42
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**Description:** Improves `Time` performance by move the conversion from our format to Go's format to happen during startup. Benchmarks before: ``` goos: darwin goarch: arm64 pkg: github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs Benchmark_Time/simple_short_form-10 1000000000 0.0000079 ns/op 0 B/op 0 allocs/op Benchmark_Time/simple_short_form_with_short_year_and_slashes-10 1000000000 0.0000115 ns/op 0 B/op 0 allocs/op Benchmark_Time/month_day_year-10 1000000000 0.0000057 ns/op 0 B/op 0 allocs/op Benchmark_Time/simple_long_form-10 1000000000 0.0000075 ns/op 0 B/op 0 allocs/op Benchmark_Time/date_with_timestamp-10 1000000000 0.0000063 ns/op 0 B/op 0 allocs/op Benchmark_Time/day_of_the_week_long_form-10 1000000000 0.0000085 ns/op 0 B/op 0 allocs/op Benchmark_Time/short_weekday,_short_month,_long_format-10 1000000000 0.0000089 ns/op 0 B/op 0 allocs/op Benchmark_Time/short_months-10 1000000000 0.0000070 ns/op 0 B/op 0 allocs/op Benchmark_Time/timestamp_with_time_zone_offset-10 1000000000 0.0000665 ns/op 0 B/op 0 allocs/op Benchmark_Time/short_date_with_timestamp_without_time_zone_offset-10 1000000000 0.0000428 ns/op 0 B/op 0 allocs/op Benchmark_Time/RFC_3339_in_custom_format-10 1000000000 0.0000345 ns/op 0 B/op 0 allocs/op Benchmark_Time/RFC_3339_in_custom_format_before_2000-10 1000000000 0.0000349 ns/op 0 B/op 0 allocs/op Benchmark_Time/no_location-10 1000000000 0.0000035 ns/op 0 B/op 0 allocs/op Benchmark_Time/with_location_-_America-10 1000000000 0.0000104 ns/op 0 B/op 0 allocs/op Benchmark_Time/with_location_-_Asia-10 1000000000 0.0000084 ns/op 0 B/op 0 allocs/op Benchmark_Time/RFC_3339_in_custom_format_before_2000,_ignore_default_location-10 1000000000 0.0000379 ns/op 0 B/op 0 allocs/op PASS ok github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs 0.458s ``` Benchmark's after: ``` goos: darwin goarch: arm64 pkg: github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs Benchmark_Time/simple_short_form-10 1000000000 0.0000054 ns/op 0 B/op 0 allocs/op Benchmark_Time/simple_short_form_with_short_year_and_slashes-10 1000000000 0.0000037 ns/op 0 B/op 0 allocs/op Benchmark_Time/month_day_year-10 1000000000 0.0000053 ns/op 0 B/op 0 allocs/op Benchmark_Time/simple_long_form-10 1000000000 0.0000042 ns/op 0 B/op 0 allocs/op Benchmark_Time/date_with_timestamp-10 1000000000 0.0000087 ns/op 0 B/op 0 allocs/op Benchmark_Time/day_of_the_week_long_form-10 1000000000 0.0000035 ns/op 0 B/op 0 allocs/op Benchmark_Time/short_weekday,_short_month,_long_format-10 1000000000 0.0000036 ns/op 0 B/op 0 allocs/op Benchmark_Time/short_months-10 1000000000 0.0000031 ns/op 0 B/op 0 allocs/op Benchmark_Time/timestamp_with_time_zone_offset-10 1000000000 0.0000491 ns/op 0 B/op 0 allocs/op Benchmark_Time/short_date_with_timestamp_without_time_zone_offset-10 1000000000 0.0000381 ns/op 0 B/op 0 allocs/op Benchmark_Time/RFC_3339_in_custom_format-10 1000000000 0.0000365 ns/op 0 B/op 0 allocs/op Benchmark_Time/RFC_3339_in_custom_format_before_2000-10 1000000000 0.0000364 ns/op 0 B/op 0 allocs/op Benchmark_Time/no_location-10 1000000000 0.0000028 ns/op 0 B/op 0 allocs/op Benchmark_Time/with_location_-_America-10 1000000000 0.0000017 ns/op 0 B/op 0 allocs/op Benchmark_Time/with_location_-_Asia-10 1000000000 0.0000028 ns/op 0 B/op 0 allocs/op Benchmark_Time/RFC_3339_in_custom_format_before_2000,_ignore_default_location-10 1000000000 0.0000393 ns/op 0 B/op 0 allocs/op PASS ok github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/ottlfuncs 0.441s ``` **Link to tracking Issue:** <Issue number if applicable> Closes #35078 **Testing:** <Describe what testing was performed and which tests were added.> Added benchmark test
…exporter docs (#35197) Users have trouble finding the receiver that can read the data written by File exporter back into the collector (e.g. see this [CNCF Slack post](https://cloud-native.slack.com/archives/C01N6P7KR6W/p1726222186384309)). Let's mention the OTLP JSON File receiver in the File exporter's docs.
**Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> Add option to get destination topic from context. This allows for upstream connectors to control the destination without polluting the data being written. **Link to tracking Issue:** <Issue number if applicable> Fixes #34432 **Testing:** <Describe what testing was performed and which tests were added.> Added unit tests. **Documentation:** <Describe the documentation added.> Updated the component readme with the added setting. --------- Co-authored-by: Pablo Baeyens <pablo.baeyens@datadoghq.com> Co-authored-by: Sean Marciniak <30928402+MovieStoreGuy@users.noreply.github.com>
…ormat (#35201) **Description:** This PR adapts the syslog data sender to generate valid messages adhering to the RFC5424 format. Previously, the data sender generated invalid messages causing the syslog message parser to fail (due to empty attribute values, a missing version number and SDID **Link to tracking Issue:** - **Testing:** - **Documentation:** - --------- Signed-off-by: Florian Bacher <florian.bacher@dynatrace.com>
A missing unit will break validation when mdatagen is updated --------- Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/jackc/pgx/v5](https://redirect.github.com/jackc/pgx) | `v5.7.0` -> `v5.7.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fjackc%2fpgx%2fv5/v5.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fjackc%2fpgx%2fv5/v5.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fjackc%2fpgx%2fv5/v5.7.0/v5.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fjackc%2fpgx%2fv5/v5.7.0/v5.7.1?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>jackc/pgx (github.com/jackc/pgx/v5)</summary> ### [`v5.7.1`](https://redirect.github.com/jackc/pgx/compare/v5.7.0...v5.7.1) [Compare Source](https://redirect.github.com/jackc/pgx/compare/v5.7.0...v5.7.1) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/SAP/go-hdb](https://redirect.github.com/SAP/go-hdb) | `v1.12.1` -> `v1.12.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fSAP%2fgo-hdb/v1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fSAP%2fgo-hdb/v1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fSAP%2fgo-hdb/v1.12.1/v1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fSAP%2fgo-hdb/v1.12.1/v1.12.2?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.12.2`](https://redirect.github.com/SAP/go-hdb/blob/HEAD/RELEASENOTES.md#v1122) [Compare Source](https://redirect.github.com/SAP/go-hdb/compare/v1.12.1...v1.12.2) - [fixed typo in test name](https://redirect.github.com/SAP/go-hdb/pull/139) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [k8s.io/api](https://redirect.github.com/kubernetes/api) | `v0.31.0` -> `v0.31.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fapi/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fapi/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fapi/v0.31.0/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fapi/v0.31.0/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/apimachinery](https://redirect.github.com/kubernetes/apimachinery) | `v0.31.0` -> `v0.31.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fapimachinery/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fapimachinery/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fapimachinery/v0.31.0/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fapimachinery/v0.31.0/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/client-go](https://redirect.github.com/kubernetes/client-go) | `v0.31.0` -> `v0.31.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fclient-go/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fclient-go/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fclient-go/v0.31.0/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fclient-go/v0.31.0/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/kubelet](https://redirect.github.com/kubernetes/kubelet) | `v0.31.0` -> `v0.31.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fkubelet/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fkubelet/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fkubelet/v0.31.0/v0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fkubelet/v0.31.0/v0.31.1?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>kubernetes/api (k8s.io/api)</summary> ### [`v0.31.1`](https://redirect.github.com/kubernetes/api/compare/v0.31.0...v0.31.1) [Compare Source](https://redirect.github.com/kubernetes/api/compare/v0.31.0...v0.31.1) </details> <details> <summary>kubernetes/apimachinery (k8s.io/apimachinery)</summary> ### [`v0.31.1`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.31.0...v0.31.1) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.31.0...v0.31.1) </details> <details> <summary>kubernetes/client-go (k8s.io/client-go)</summary> ### [`v0.31.1`](https://redirect.github.com/kubernetes/client-go/compare/v0.31.0...v0.31.1) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.31.0...v0.31.1) </details> <details> <summary>kubernetes/kubelet (k8s.io/kubelet)</summary> ### [`v0.31.1`](https://redirect.github.com/kubernetes/kubelet/compare/v0.31.0...v0.31.1) [Compare Source](https://redirect.github.com/kubernetes/kubelet/compare/v0.31.0...v0.31.1) </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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
….4 (#35245) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/prometheus/client_golang](https://redirect.github.com/prometheus/client_golang) | `v1.20.3` -> `v1.20.4` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.20.3/v1.20.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.20.3/v1.20.4?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>prometheus/client_golang (github.com/prometheus/client_golang)</summary> ### [`v1.20.4`](https://redirect.github.com/prometheus/client_golang/releases/tag/v1.20.4) [Compare Source](https://redirect.github.com/prometheus/client_golang/compare/v1.20.3...v1.20.4) - \[BUGFIX] histograms: Fix a possible data race when appending exemplars vs metrics gather. [#​1623](https://redirect.github.com/prometheus/client_golang/issues/1623) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [cloud.google.com/go/compute/metadata](https://redirect.github.com/googleapis/google-cloud-go) | `v0.5.0` -> `v0.5.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/cloud.google.com%2fgo%2fcompute%2fmetadata/v0.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/cloud.google.com%2fgo%2fcompute%2fmetadata/v0.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/cloud.google.com%2fgo%2fcompute%2fmetadata/v0.5.0/v0.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/cloud.google.com%2fgo%2fcompute%2fmetadata/v0.5.0/v0.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [cloud.google.com/go/monitoring](https://redirect.github.com/googleapis/google-cloud-go) | `v1.21.0` -> `v1.21.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/cloud.google.com%2fgo%2fmonitoring/v1.21.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/cloud.google.com%2fgo%2fmonitoring/v1.21.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/cloud.google.com%2fgo%2fmonitoring/v1.21.0/v1.21.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/cloud.google.com%2fgo%2fmonitoring/v1.21.0/v1.21.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
….28.3 (#35235) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/ClickHouse/clickhouse-go/v2](https://redirect.github.com/ClickHouse/clickhouse-go) | `v2.28.2` -> `v2.28.3` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fClickHouse%2fclickhouse-go%2fv2/v2.28.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fClickHouse%2fclickhouse-go%2fv2/v2.28.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fClickHouse%2fclickhouse-go%2fv2/v2.28.2/v2.28.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fClickHouse%2fclickhouse-go%2fv2/v2.28.2/v2.28.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>ClickHouse/clickhouse-go (github.com/ClickHouse/clickhouse-go/v2)</summary> ### [`v2.28.3`](https://redirect.github.com/ClickHouse/clickhouse-go/blob/HEAD/CHANGELOG.md#v2283-2024-09-12----Release-notes-generated-using-configuration-in-githubreleaseyml-at-main---) [Compare Source](https://redirect.github.com/ClickHouse/clickhouse-go/compare/v2.28.2...v2.28.3) #### What's Changed ##### Other Changes 🛠 - Revert the minimum required Go version to 1.21 by [@​jkaflik](https://redirect.github.com/jkaflik) in [https://github.com/ClickHouse/clickhouse-go/pull/1405](https://redirect.github.com/ClickHouse/clickhouse-go/pull/1405) **Full Changelog**: ClickHouse/clickhouse-go@v2.28.2...v2.28.3 </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/aws/aws-sdk-go-v2/config](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.27.33` -> `v1.27.34` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.34?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.34?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.33/v1.27.34?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.33/v1.27.34?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.17.18` -> `v1.17.19` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.17.19?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.17.19?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.17.18/v1.17.19?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.17.18/v1.17.19?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…tencentcloud/common to v1.0.1004 (#35249) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go) | `v1.0.999` -> `v1.0.1004` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.1004?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.1004?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.999/v1.0.1004?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.999/v1.0.1004?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>tencentcloud/tencentcloud-sdk-go (github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common)</summary> ### [`v1.0.1004`](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v101004) [Compare Source](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.1003...v1.0.1004) #### 腾讯混元大模型(hunyuan) 版本:2023-09-01 ##### 第 19 次发布 发布时间:2024-09-17 18:52:07 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [ChatCompletions](https://cloud.tencent.com/document/api/1729/105701) - 新增入参:EnableMultimedia - 新增出参:Replaces 新增数据结构: - [Multimedia](https://cloud.tencent.com/document/api/1729/101838#Multimedia) - [Replace](https://cloud.tencent.com/document/api/1729/101838#Replace) ### [`v1.0.1003`](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v101003) [Compare Source](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.1002...v1.0.1003) #### 云数据库 MySQL(cdb) 版本:2017-03-20 ##### 第 166 次发布 发布时间:2024-09-16 01:16:44 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribeSlowLogData](https://cloud.tencent.com/document/api/236/43060) - 新增入参:OpResourceId #### 云防火墙(cfw) 版本:2019-09-04 ##### 第 65 次发布 发布时间:2024-09-16 01:21:22 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeEnterpriseSecurityGroupRuleList](https://cloud.tencent.com/document/api/1132/110987) 新增数据结构: - [EnterpriseSecurityGroupRuleBetaInfo](https://cloud.tencent.com/document/api/1132/49071#EnterpriseSecurityGroupRuleBetaInfo) - [EnterpriseSecurityGroupRuleRuleInfo](https://cloud.tencent.com/document/api/1132/49071#EnterpriseSecurityGroupRuleRuleInfo) #### 消息队列 CKafka 版(ckafka) 版本:2019-08-19 ##### 第 109 次发布 发布时间:2024-09-16 01:22:56 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [FetchMessageListByTimestamp](https://cloud.tencent.com/document/api/597/47895) #### 智能推荐平台(irp) 版本:2022-08-05 ##### 第 3 次发布 发布时间:2024-09-16 01:58:03 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [FeedRecommend](https://cloud.tencent.com/document/api/1541/78995) - 新增入参:Extension #### 智能推荐平台(irp) 版本:2022-03-24 #### 大模型知识引擎(lke) 版本:2023-11-30 ##### 第 16 次发布 发布时间:2024-09-16 02:02:56 本次发布包含了以下内容: 改善已有的文档。 新增数据结构: - [QuoteInfo](https://cloud.tencent.com/document/api/1759/105104#QuoteInfo) 修改数据结构: - [Context](https://cloud.tencent.com/document/api/1759/105104#Context) - 新增成员:ReplyMethod - [MsgRecord](https://cloud.tencent.com/document/api/1759/105104#MsgRecord) - 新增成员:QuoteInfos - [ReferDetail](https://cloud.tencent.com/document/api/1759/105104#ReferDetail) - 新增成员:PageInfos, SheetInfos, DocBizId #### 文字识别(ocr) 版本:2018-11-19 ##### 第 151 次发布 发布时间:2024-09-16 02:10:16 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [BizLicenseOCR](https://cloud.tencent.com/document/api/866/36215) - 新增出参:Electronic #### 腾讯健康组学平台(omics) 版本:2022-11-28 ##### 第 16 次发布 发布时间:2024-09-16 02:11:25 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [NFOption](https://cloud.tencent.com/document/api/1643/89100#NFOption) - 新增成员:LaunchDir #### 向量数据库(vdb) 版本:2023-06-16 ##### 第 5 次发布 发布时间:2024-09-16 02:39:09 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribeInstanceNodes](https://cloud.tencent.com/document/api/1709/110879) - 新增入参:InstanceId ### [`v1.0.1002`](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v101002) [Compare Source](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.1001...v1.0.1002) #### 应用性能监控(apm) 版本:2021-06-22 ##### 第 25 次发布 发布时间:2024-09-13 01:04:24 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [ModifyApmInstance](https://cloud.tencent.com/document/api/1463/89002) - 新增入参:ResponseDurationWarningThreshold 修改数据结构: - [ApmInstanceDetail](https://cloud.tencent.com/document/api/1463/64927#ApmInstanceDetail) - 新增成员:ResponseDurationWarningThreshold #### 访问管理(cam) 版本:2019-01-16 ##### 第 61 次发布 发布时间:2024-09-13 01:08:46 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DeleteMessageReceiver](https://cloud.tencent.com/document/api/598/110941) - [ListReceiver](https://cloud.tencent.com/document/api/598/110940) 新增数据结构: - [Receiver](https://cloud.tencent.com/document/api/598/33167#Receiver) #### 运维安全中心(堡垒机)(dasb) 版本:2019-10-18 ##### 第 30 次发布 发布时间:2024-09-13 01:25:56 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeDomains](https://cloud.tencent.com/document/api/1025/110943) 新增数据结构: - [Domain](https://cloud.tencent.com/document/api/1025/74416#Domain) #### 数据湖计算 DLC(dlc) 版本:2021-01-25 ##### 第 103 次发布 发布时间:2024-09-13 01:28:24 本次发布包含了以下内容: 改善已有的文档。 新增数据结构: - [DataMaskStrategyInfo](https://cloud.tencent.com/document/api/1342/53778#DataMaskStrategyInfo) - [GroupInfo](https://cloud.tencent.com/document/api/1342/53778#GroupInfo) - [TCHouseD](https://cloud.tencent.com/document/api/1342/53778#TCHouseD) 修改数据结构: - [Column](https://cloud.tencent.com/document/api/1342/53778#Column) - 新增成员:DataMaskStrategyInfo - [DatasourceConnectionConfig](https://cloud.tencent.com/document/api/1342/53778#DatasourceConnectionConfig) - 新增成员:TCHouseD - [ResourceInfo](https://cloud.tencent.com/document/api/1342/53778#ResourceInfo) - 新增成员:ResourceGroupName #### 数据安全治理中心(dsgc) 版本:2019-07-23 ##### 第 21 次发布 发布时间:2024-09-13 01:31:06 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [DbInfo](https://cloud.tencent.com/document/api/1087/96844#DbInfo) - 新增成员:BindType - <font color="#dd0000">**修改成员**:</font>DbName, ValidStatus #### 腾讯电子签企业版(ess) 版本:2020-11-11 ##### 第 187 次发布 发布时间:2024-09-13 01:36:15 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [CreateFlow](https://cloud.tencent.com/document/api/1323/70361) - 新增入参:FlowDisplayType - [CreateFlowByFiles](https://cloud.tencent.com/document/api/1323/70360) - 新增入参:FlowDisplayType 修改数据结构: - [FlowGroupInfo](https://cloud.tencent.com/document/api/1323/70369#FlowGroupInfo) - 新增成员:FlowDisplayType #### 腾讯电子签(基础版)(essbasic) 版本:2021-05-26 ##### 第 183 次发布 发布时间:2024-09-13 01:37:18 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [ChannelCreateFlowByFiles](https://cloud.tencent.com/document/api/1420/73068) - 新增入参:FlowDisplayType 修改数据结构: - [FlowFileInfo](https://cloud.tencent.com/document/api/1420/61525#FlowFileInfo) - 新增成员:FlowDisplayType - [FlowInfo](https://cloud.tencent.com/document/api/1420/61525#FlowInfo) - 新增成员:FlowDisplayType #### 腾讯电子签(基础版)(essbasic) 版本:2020-12-22 #### 媒体处理(mps) 版本:2019-06-12 ##### 第 95 次发布 发布时间:2024-09-13 01:54:23 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribeAIAnalysisTemplates](https://cloud.tencent.com/document/api/862/40247) - 新增入参:Name - [DescribeAIRecognitionTemplates](https://cloud.tencent.com/document/api/862/39432) - 新增入参:Name - [DescribeAdaptiveDynamicStreamingTemplates](https://cloud.tencent.com/document/api/862/45747) - 新增入参:Name - [DescribeAnimatedGraphicsTemplates](https://cloud.tencent.com/document/api/862/37597) - 新增入参:Name - [DescribeContentReviewTemplates](https://cloud.tencent.com/document/api/862/39431) - 新增入参:Name - [DescribeImageSpriteTemplates](https://cloud.tencent.com/document/api/862/37596) - 新增入参:Name - [DescribeQualityControlTemplates](https://cloud.tencent.com/document/api/862/108312) - 新增入参:Name - [DescribeSampleSnapshotTemplates](https://cloud.tencent.com/document/api/862/37595) - 新增入参:Name - [DescribeSnapshotByTimeOffsetTemplates](https://cloud.tencent.com/document/api/862/37594) - 新增入参:Name - [DescribeTranscodeTemplates](https://cloud.tencent.com/document/api/862/37593) - 新增入参:Name - [DescribeWatermarkTemplates](https://cloud.tencent.com/document/api/862/37592) - 新增入参:Name 修改数据结构: - [UserDefineOcrTextReviewTemplateInfoForUpdate](https://cloud.tencent.com/document/api/862/37615#UserDefineOcrTextReviewTemplateInfoForUpdate) - <font color="#dd0000">**修改成员**:</font>LabelSet - [VideoTemplateInfo](https://cloud.tencent.com/document/api/862/37615#VideoTemplateInfo) - 新增成员:Stereo3dType - [VideoTemplateInfoForUpdate](https://cloud.tencent.com/document/api/862/37615#VideoTemplateInfoForUpdate) - 新增成员:Stereo3dType #### 自动化助手(tat) 版本:2020-10-28 ##### 第 24 次发布 发布时间:2024-09-13 02:06:44 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [Command](https://cloud.tencent.com/document/api/1340/52687#Command) - 新增成员:Scenes #### 向量数据库(vdb) 版本:2023-06-16 ##### 第 4 次发布 发布时间:2024-09-13 02:23:25 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribeInstanceNodes](https://cloud.tencent.com/document/api/1709/110879) - 新增入参:Limit, Offset, Component #### 云点播(vod) 版本:2024-07-18 #### 云点播(vod) 版本:2018-07-17 ##### 第 186 次发布 发布时间:2024-09-13 02:23:45 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [AttachMediaSubtitles](https://cloud.tencent.com/document/api/266/54235) - 新增入参:DefaultSubtitleId 修改数据结构: - [AdaptiveDynamicStreamingInfoItem](https://cloud.tencent.com/document/api/266/31773#AdaptiveDynamicStreamingInfoItem) - 新增成员:SubtitleSet, DefaultSubtitleId - <font color="#dd0000">**修改成员**:</font>Size, DigitalWatermarkType, SubStreamSet, CopyRightWatermarkText ### [`v1.0.1001`](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v101001) [Compare Source](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.1000...v1.0.1001) #### 云防火墙(cfw) 版本:2019-09-04 ##### 第 64 次发布 发布时间:2024-09-12 01:19:27 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [BanAndAllowRule](https://cloud.tencent.com/document/api/1132/49071#BanAndAllowRule) - 新增成员:FwType - [BlockIgnoreRule](https://cloud.tencent.com/document/api/1132/49071#BlockIgnoreRule) - 新增成员:FwType - [CreateNatRuleItem](https://cloud.tencent.com/document/api/1132/49071#CreateNatRuleItem) - 新增成员:Scope - [DescAcItem](https://cloud.tencent.com/document/api/1132/49071#DescAcItem) - 新增成员:ScopeDesc - [EdgeIpInfo](https://cloud.tencent.com/document/api/1132/49071#EdgeIpInfo) - 新增成员:OverUsedStatus - [NatSwitchListData](https://cloud.tencent.com/document/api/1132/49071#NatSwitchListData) - 新增成员:ORTableId, ORTableName, Ohavips #### 物联网开发平台(iotexplorer) 版本:2019-04-23 ##### 第 78 次发布 发布时间:2024-09-12 01:46:54 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [ActivateTWeCallLicense](https://cloud.tencent.com/document/api/1081/106587) - <font color="#dd0000">**修改入参**:</font>MiniProgramAppId - [GetTWeCallActiveStatus](https://cloud.tencent.com/document/api/1081/106583) - <font color="#dd0000">**修改入参**:</font>MiniProgramAppId #### 智能视图计算平台(iss) 版本:2023-05-17 ##### 第 19 次发布 发布时间:2024-09-11 10:47:51 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [CallISAPI](https://cloud.tencent.com/document/api/1344/110893) 新增数据结构: - [ISAPIOutputData](https://cloud.tencent.com/document/api/1344/95952#ISAPIOutputData) #### 媒体处理(mps) 版本:2019-06-12 ##### 第 94 次发布 发布时间:2024-09-12 01:59:22 本次发布包含了以下内容: 改善已有的文档。 新增数据结构: - [AiAnalysisTaskHorizontalToVerticalInput](https://cloud.tencent.com/document/api/862/37615#AiAnalysisTaskHorizontalToVerticalInput) - [AiAnalysisTaskHorizontalToVerticalOutput](https://cloud.tencent.com/document/api/862/37615#AiAnalysisTaskHorizontalToVerticalOutput) - [AiAnalysisTaskHorizontalToVerticalResult](https://cloud.tencent.com/document/api/862/37615#AiAnalysisTaskHorizontalToVerticalResult) 修改数据结构: - [AiAnalysisResult](https://cloud.tencent.com/document/api/862/37615#AiAnalysisResult) - 新增成员:HorizontalToVerticalTask - [HighlightSegmentItem](https://cloud.tencent.com/document/api/862/37615#HighlightSegmentItem) - 新增成员:SegmentTags #### 文字识别(ocr) 版本:2018-11-19 ##### 第 150 次发布 发布时间:2024-09-12 02:01:53 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [MainlandPermitOCR](https://cloud.tencent.com/document/api/866/43105) - 新增出参:Nationality #### 容器服务(tke) 版本:2022-05-01 ##### 第 4 次发布 发布时间:2024-09-12 02:23:02 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [CreateHealthCheckPolicy](https://cloud.tencent.com/document/api/457/110921) - [DeleteHealthCheckPolicy](https://cloud.tencent.com/document/api/457/110920) - [DescribeHealthCheckPolicies](https://cloud.tencent.com/document/api/457/110919) - [DescribeHealthCheckPolicyBindings](https://cloud.tencent.com/document/api/457/110918) - [DescribeHealthCheckTemplate](https://cloud.tencent.com/document/api/457/110917) - [ModifyHealthCheckPolicy](https://cloud.tencent.com/document/api/457/110916) 新增数据结构: - [HealthCheckPolicy](https://cloud.tencent.com/document/api/457/103206#HealthCheckPolicy) - [HealthCheckPolicyBinding](https://cloud.tencent.com/document/api/457/103206#HealthCheckPolicyBinding) - [HealthCheckPolicyRule](https://cloud.tencent.com/document/api/457/103206#HealthCheckPolicyRule) - [HealthCheckTemplate](https://cloud.tencent.com/document/api/457/103206#HealthCheckTemplate) - [HealthCheckTemplateRule](https://cloud.tencent.com/document/api/457/103206#HealthCheckTemplateRule) #### 容器服务(tke) 版本:2018-05-25 ##### 第 178 次发布 发布时间:2024-09-12 02:21:19 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [CreateCluster](https://cloud.tencent.com/document/api/457/34527) - 新增入参:CdcId #### 云点播(vod) 版本:2024-07-18 ##### 第 1 次发布 发布时间:2024-09-11 19:07:13 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [CreateStorageCredentials](https://cloud.tencent.com/document/api/266/110902) 新增数据结构: - [Credentials](https://cloud.tencent.com/document/api/266/110903#Credentials) #### 云点播(vod) 版本:2018-07-17 #### 私有网络(vpc) 版本:2017-03-12 ##### 第 204 次发布 发布时间:2024-09-12 02:30:22 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [CreateSecurityGroupWithPolicies](https://cloud.tencent.com/document/api/215/43279) - 新增入参:Tags ### [`v1.0.1000`](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v101000) [Compare Source](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.999...v1.0.1000) #### 大模型图像创作引擎(aiart) 版本:2022-12-29 ##### 第 13 次发布 发布时间:2024-09-11 01:07:24 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [SketchToImage](https://cloud.tencent.com/document/api/1668/110863) ##### 第 12 次发布 发布时间:2024-09-10 11:22:26 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [ImageToImage](https://cloud.tencent.com/document/api/1668/88066) - 新增入参:EnhanceImage, RestoreFace #### 混沌演练平台(cfg) 版本:2021-08-20 ##### 第 19 次发布 发布时间:2024-09-11 01:19:01 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [Task](https://cloud.tencent.com/document/api/1500/71784#Task) - 新增成员:TaskRegionName #### 消息队列 CKafka 版(ckafka) 版本:2019-08-19 ##### 第 108 次发布 发布时间:2024-09-11 01:20:54 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [ModifyInstanceAttributes](https://cloud.tencent.com/document/api/597/40832) 修改数据结构: - [OperateResponseData](https://cloud.tencent.com/document/api/597/40861#OperateResponseData) - <font color="#dd0000">**修改成员**:</font>RouteDTO #### TDSQL MySQL 版(dcdb) 版本:2018-04-11 ##### 第 73 次发布 发布时间:2024-09-11 01:32:35 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeBackupConfigs](https://cloud.tencent.com/document/api/557/110865) - [ModifyBackupConfigs](https://cloud.tencent.com/document/api/557/110864) 新增数据结构: - [BackupConfig](https://cloud.tencent.com/document/api/557/16142#BackupConfig) - [NewBackupConfig](https://cloud.tencent.com/document/api/557/16142#NewBackupConfig) #### DNSPod(dnspod) 版本:2021-03-23 ##### 第 33 次发布 发布时间:2024-09-11 01:34:34 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeDomainShareUserList](https://cloud.tencent.com/document/api/1427/110866) 新增数据结构: - [DomainShareUserInfo](https://cloud.tencent.com/document/api/1427/56185#DomainShareUserInfo) #### 弹性 MapReduce(emr) 版本:2019-01-03 ##### 第 76 次发布 发布时间:2024-09-11 01:39:43 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [CreateSLInstance](https://cloud.tencent.com/document/api/589/110872) - [DescribeSLInstance](https://cloud.tencent.com/document/api/589/110871) - [DescribeSLInstanceList](https://cloud.tencent.com/document/api/589/110870) - [ModifySLInstance](https://cloud.tencent.com/document/api/589/110869) - [TerminateSLInstance](https://cloud.tencent.com/document/api/589/110868) 修改接口: - [ModifyAutoRenewFlag](https://cloud.tencent.com/document/api/589/110534) - 新增入参:ComputeResourceId 新增数据结构: - [SLInstanceInfo](https://cloud.tencent.com/document/api/589/33981#SLInstanceInfo) - [ZoneSetting](https://cloud.tencent.com/document/api/589/33981#ZoneSetting) #### Elasticsearch Service(es) 版本:2018-04-16 ##### 第 69 次发布 发布时间:2024-09-10 15:12:32 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeSpaceKibanaTools](https://cloud.tencent.com/document/api/845/110854) #### 腾讯电子签(基础版)(essbasic) 版本:2021-05-26 ##### 第 182 次发布 发布时间:2024-09-11 01:42:03 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [CreatePersonAuthCertificateImage](https://cloud.tencent.com/document/api/1420/110873) #### 腾讯电子签(基础版)(essbasic) 版本:2020-12-22 #### 云数据库 MariaDB(mariadb) 版本:2017-03-12 ##### 第 66 次发布 发布时间:2024-09-11 01:55:56 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeBackupConfigs](https://cloud.tencent.com/document/api/237/110875) - [ModifyBackupConfigs](https://cloud.tencent.com/document/api/237/110874) 新增数据结构: - [BackupConfig](https://cloud.tencent.com/document/api/237/16191#BackupConfig) - [NewBackupConfig](https://cloud.tencent.com/document/api/237/16191#NewBackupConfig) #### 文字识别(ocr) 版本:2018-11-19 ##### 第 149 次发布 发布时间:2024-09-11 02:01:34 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [PermitOCR](https://cloud.tencent.com/document/api/866/37074) - 新增出参:Type #### 云数据库Redis(redis) 版本:2018-04-12 ##### 第 81 次发布 发布时间:2024-09-11 02:05:34 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeInstanceLogDelivery](https://cloud.tencent.com/document/api/239/110878) - [ModifyInstanceLogDelivery](https://cloud.tencent.com/document/api/239/110877) 新增数据结构: - [LogDeliveryInfo](https://cloud.tencent.com/document/api/239/20022#LogDeliveryInfo) #### 边缘安全加速平台(teo) 版本:2022-09-01 ##### 第 84 次发布 发布时间:2024-09-11 02:18:47 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [OriginDetail](https://cloud.tencent.com/document/api/1552/80721#OriginDetail) - [OriginInfo](https://cloud.tencent.com/document/api/1552/80721#OriginInfo) #### 边缘安全加速平台(teo) 版本:2022-01-06 #### 微服务平台 TSF(tsf) 版本:2018-03-26 ##### 第 113 次发布 发布时间:2024-09-11 02:25:39 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [CreateAllGatewayApiAsync](https://cloud.tencent.com/document/api/649/50642) - 新增入参:NamespaceId 修改数据结构: - [ApiRateLimitRule](https://cloud.tencent.com/document/api/649/36099#ApiRateLimitRule) - 新增成员:Limit, Offset, AppId - [GatewayGroupApiVo](https://cloud.tencent.com/document/api/649/36099#GatewayGroupApiVo) - <font color="#dd0000">**修改成员**:</font>ApiId, Path, MicroserviceName, Method, NamespaceName #### 向量数据库(vdb) 版本:2023-06-16 ##### 第 3 次发布 发布时间:2024-09-11 02:27:43 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [AssociateSecurityGroups](https://cloud.tencent.com/document/api/1709/110884) - [DescribeDBSecurityGroups](https://cloud.tencent.com/document/api/1709/110883) - [DescribeInstanceNodes](https://cloud.tencent.com/document/api/1709/110879) - [DisassociateSecurityGroups](https://cloud.tencent.com/document/api/1709/110882) - [ModifyDBInstanceSecurityGroups](https://cloud.tencent.com/document/api/1709/110881) 新增数据结构: - [Inbound](https://cloud.tencent.com/document/api/1709/106757#Inbound) - [NodeInfo](https://cloud.tencent.com/document/api/1709/106757#NodeInfo) - [Outbound](https://cloud.tencent.com/document/api/1709/106757#Outbound) - [SecurityGroup](https://cloud.tencent.com/document/api/1709/106757#SecurityGroup) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>
…5255) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/go-sql-driver/mysql](https://redirect.github.com/go-sql-driver/mysql) | `v1.7.1` -> `v1.8.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-sql-driver%2fmysql/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-sql-driver%2fmysql/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-sql-driver%2fmysql/v1.7.1/v1.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-sql-driver%2fmysql/v1.7.1/v1.8.1?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>go-sql-driver/mysql (github.com/go-sql-driver/mysql)</summary> ### [`v1.8.1`](https://redirect.github.com/go-sql-driver/mysql/releases/tag/v1.8.1) [Compare Source](https://redirect.github.com/go-sql-driver/mysql/compare/v1.8.0...v1.8.1) #### What's Changed Bugfixes: - fix race condition when context is canceled in [#​1562](https://redirect.github.com/go-sql-driver/mysql/pull/1562) and [#​1570](https://redirect.github.com/go-sql-driver/mysql/pull/1570) **Full Changelog**: go-sql-driver/mysql@v1.8.0...v1.8.1 ### [`v1.8.0`](https://redirect.github.com/go-sql-driver/mysql/releases/tag/v1.8.0) [Compare Source](https://redirect.github.com/go-sql-driver/mysql/compare/v1.7.1...v1.8.0) #### What's Changed ##### Major changes - Use `SET NAMES charset COLLATE collation`. by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1437](https://redirect.github.com/go-sql-driver/mysql/pull/1437) - PathEscape dbname in DSN. by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1432](https://redirect.github.com/go-sql-driver/mysql/pull/1432) - Drop Go 1.13-17 support by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1420](https://redirect.github.com/go-sql-driver/mysql/pull/1420) - Parse numbers on text protocol too by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1452](https://redirect.github.com/go-sql-driver/mysql/pull/1452) ##### Other changes - Adding DeregisterDialContext to prevent memory leaks with dialers we don't need anymore by [@​jypelle](https://redirect.github.com/jypelle) in [https://github.com/go-sql-driver/mysql/pull/1422](https://redirect.github.com/go-sql-driver/mysql/pull/1422) - Make logger configurable per connection by [@​frozenbonito](https://redirect.github.com/frozenbonito) in [https://github.com/go-sql-driver/mysql/pull/1408](https://redirect.github.com/go-sql-driver/mysql/pull/1408) - Fix ColumnType.DatabaseTypeName for mediumint unsigned by [@​evanelias](https://redirect.github.com/evanelias) in [https://github.com/go-sql-driver/mysql/pull/1428](https://redirect.github.com/go-sql-driver/mysql/pull/1428) - Add connection attributes by [@​Daemonxiao](https://redirect.github.com/Daemonxiao) in [https://github.com/go-sql-driver/mysql/pull/1389](https://redirect.github.com/go-sql-driver/mysql/pull/1389) - Stop `ColumnTypeScanType()` from returning `sql.RawBytes` by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1424](https://redirect.github.com/go-sql-driver/mysql/pull/1424) - Exec() now provides access to status of multiple statements. by [@​mherr-google](https://redirect.github.com/mherr-google) in [https://github.com/go-sql-driver/mysql/pull/1309](https://redirect.github.com/go-sql-driver/mysql/pull/1309) - Allow to change (or disable) the default driver name for registration by [@​dolmen](https://redirect.github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1499](https://redirect.github.com/go-sql-driver/mysql/pull/1499) - Add default connection attribute '\_server_host' by [@​oblitorum](https://redirect.github.com/oblitorum) in [https://github.com/go-sql-driver/mysql/pull/1506](https://redirect.github.com/go-sql-driver/mysql/pull/1506) - Make TimeTruncate functional option by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1552](https://redirect.github.com/go-sql-driver/mysql/pull/1552) - Add BeforeConnect callback to configuration object by [@​ItalyPaleAle](https://redirect.github.com/ItalyPaleAle) in [https://github.com/go-sql-driver/mysql/pull/1469](https://redirect.github.com/go-sql-driver/mysql/pull/1469) - QueryUnescape DSN ConnectionAttribute value by [@​zhangyangyu](https://redirect.github.com/zhangyangyu) in [https://github.com/go-sql-driver/mysql/pull/1470](https://redirect.github.com/go-sql-driver/mysql/pull/1470) - Add client_ed25519 authentication by [@​Gusted](https://redirect.github.com/Gusted) in [https://github.com/go-sql-driver/mysql/pull/1518](https://redirect.github.com/go-sql-driver/mysql/pull/1518) - Reduced allocation on connection.go by [@​EPuncker](https://redirect.github.com/EPuncker) in [https://github.com/go-sql-driver/mysql/pull/1421](https://redirect.github.com/go-sql-driver/mysql/pull/1421) - Avoid panic in TestRowsColumnTypes by [@​wayyoungboy](https://redirect.github.com/wayyoungboy) in [https://github.com/go-sql-driver/mysql/pull/1426](https://redirect.github.com/go-sql-driver/mysql/pull/1426) - Add benchmark to receive massive rows. by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1415](https://redirect.github.com/go-sql-driver/mysql/pull/1415) - README: Update multistatement by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1431](https://redirect.github.com/go-sql-driver/mysql/pull/1431) - all: replace ioutil pkg to new package by [@​uji](https://redirect.github.com/uji) in [https://github.com/go-sql-driver/mysql/pull/1438](https://redirect.github.com/go-sql-driver/mysql/pull/1438) - chore: code optimization by [@​testwill](https://redirect.github.com/testwill) in [https://github.com/go-sql-driver/mysql/pull/1439](https://redirect.github.com/go-sql-driver/mysql/pull/1439) - Reduce map lookup in ColumnTypeDatabaseTypeName. by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1436](https://redirect.github.com/go-sql-driver/mysql/pull/1436) - doc: add link to NewConnector from FormatDSN by [@​dolmen](https://redirect.github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1442](https://redirect.github.com/go-sql-driver/mysql/pull/1442) - Add fuzz test for ParseDSN / FormatDSN roundtrip by [@​dolmen](https://redirect.github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1444](https://redirect.github.com/go-sql-driver/mysql/pull/1444) - TestDSNReformat: add more roundtrip checks by [@​dolmen](https://redirect.github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1443](https://redirect.github.com/go-sql-driver/mysql/pull/1443) - tcp: handle errors returned by SetKeepAlive by [@​achille-roussel](https://redirect.github.com/achille-roussel) in [https://github.com/go-sql-driver/mysql/pull/1448](https://redirect.github.com/go-sql-driver/mysql/pull/1448) - use staticcheck by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1449](https://redirect.github.com/go-sql-driver/mysql/pull/1449) - Add Daemonxiao to AUTHORS by [@​Daemonxiao](https://redirect.github.com/Daemonxiao) in [https://github.com/go-sql-driver/mysql/pull/1459](https://redirect.github.com/go-sql-driver/mysql/pull/1459) - Update link about `LOAD DATA LOCAL` in README.md by [@​i7a7467](https://redirect.github.com/i7a7467) in [https://github.com/go-sql-driver/mysql/pull/1468](https://redirect.github.com/go-sql-driver/mysql/pull/1468) - Update README.md by [@​Netzer7](https://redirect.github.com/Netzer7) in [https://github.com/go-sql-driver/mysql/pull/1464](https://redirect.github.com/go-sql-driver/mysql/pull/1464) - add Go 1.21 and MySQL 8.1 to the build matrix by [@​shogo82148](https://redirect.github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1472](https://redirect.github.com/go-sql-driver/mysql/pull/1472) - Improve DSN docstsrings by [@​golddranks](https://redirect.github.com/golddranks) in [https://github.com/go-sql-driver/mysql/pull/1475](https://redirect.github.com/go-sql-driver/mysql/pull/1475) - Fix [#​1478](https://redirect.github.com/go-sql-driver/mysql/issues/1478) remove length check by [@​ShenFeng312](https://redirect.github.com/ShenFeng312) in [https://github.com/go-sql-driver/mysql/pull/1481](https://redirect.github.com/go-sql-driver/mysql/pull/1481) - README: fix markup error by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1480](https://redirect.github.com/go-sql-driver/mysql/pull/1480) - Close connection on ErrPktSync and ErrPktSyncMul by [@​owbone](https://redirect.github.com/owbone) in [https://github.com/go-sql-driver/mysql/pull/1473](https://redirect.github.com/go-sql-driver/mysql/pull/1473) - Spelling, grammar, and link fixes by [@​scop](https://redirect.github.com/scop) in [https://github.com/go-sql-driver/mysql/pull/1485](https://redirect.github.com/go-sql-driver/mysql/pull/1485) - Make use of strings.Cut by [@​scop](https://redirect.github.com/scop) in [https://github.com/go-sql-driver/mysql/pull/1486](https://redirect.github.com/go-sql-driver/mysql/pull/1486) - move stale connection check to ResetSession() by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1496](https://redirect.github.com/go-sql-driver/mysql/pull/1496) - fix race condition of TestConcurrent by [@​shogo82148](https://redirect.github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1490](https://redirect.github.com/go-sql-driver/mysql/pull/1490) - mark fail, mustExec and mustQuery as test helpers by [@​shogo82148](https://redirect.github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1488](https://redirect.github.com/go-sql-driver/mysql/pull/1488) - Remove obsolete fuzz.go [#​1445](https://redirect.github.com/go-sql-driver/mysql/issues/1445) by [@​dolmen](https://redirect.github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1498](https://redirect.github.com/go-sql-driver/mysql/pull/1498) - testing: expose testing.TB in DBTest instead of full \*testing.T by [@​dolmen](https://redirect.github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1500](https://redirect.github.com/go-sql-driver/mysql/pull/1500) - symbol removed from installation command by [@​panvalkar1994](https://redirect.github.com/panvalkar1994) in [https://github.com/go-sql-driver/mysql/pull/1510](https://redirect.github.com/go-sql-driver/mysql/pull/1510) - fix issue 1361 by [@​keeplearning20221](https://redirect.github.com/keeplearning20221) in [https://github.com/go-sql-driver/mysql/pull/1462](https://redirect.github.com/go-sql-driver/mysql/pull/1462) - fix fragile test by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1522](https://redirect.github.com/go-sql-driver/mysql/pull/1522) - Fix sql.RawBytes corruption issue by [@​shogo82148](https://redirect.github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1523](https://redirect.github.com/go-sql-driver/mysql/pull/1523) - fix for enum and set field type to column type identifying by [@​jennifersp](https://redirect.github.com/jennifersp) in [https://github.com/go-sql-driver/mysql/pull/1520](https://redirect.github.com/go-sql-driver/mysql/pull/1520) - Parallelize test by [@​shogo82148](https://redirect.github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1525](https://redirect.github.com/go-sql-driver/mysql/pull/1525) - Fix unsigned int overflow by [@​shiyuhang0](https://redirect.github.com/shiyuhang0) in [https://github.com/go-sql-driver/mysql/pull/1530](https://redirect.github.com/go-sql-driver/mysql/pull/1530) - Introduce `timeTruncate` parameter for `time.Time` arguments by [@​PauliusLozys](https://redirect.github.com/PauliusLozys) in [https://github.com/go-sql-driver/mysql/pull/1541](https://redirect.github.com/go-sql-driver/mysql/pull/1541) - add TiDB support in README.md by [@​crazycs520](https://redirect.github.com/crazycs520) in [https://github.com/go-sql-driver/mysql/pull/1333](https://redirect.github.com/go-sql-driver/mysql/pull/1333) - Update workflows by [@​methane](https://redirect.github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1547](https://redirect.github.com/go-sql-driver/mysql/pull/1547) #### New Contributors - [@​EPuncker](https://redirect.github.com/EPuncker) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1421](https://redirect.github.com/go-sql-driver/mysql/pull/1421) - [@​jypelle](https://redirect.github.com/jypelle) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1422](https://redirect.github.com/go-sql-driver/mysql/pull/1422) - [@​frozenbonito](https://redirect.github.com/frozenbonito) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1408](https://redirect.github.com/go-sql-driver/mysql/pull/1408) - [@​wayyoungboy](https://redirect.github.com/wayyoungboy) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1426](https://redirect.github.com/go-sql-driver/mysql/pull/1426) - [@​evanelias](https://redirect.github.com/evanelias) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1428](https://redirect.github.com/go-sql-driver/mysql/pull/1428) - [@​Daemonxiao](https://redirect.github.com/Daemonxiao) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1389](https://redirect.github.com/go-sql-driver/mysql/pull/1389) - [@​uji](https://redirect.github.com/uji) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1438](https://redirect.github.com/go-sql-driver/mysql/pull/1438) - [@​testwill](https://redirect.github.com/testwill) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1439](https://redirect.github.com/go-sql-driver/mysql/pull/1439) - [@​i7a7467](https://redirect.github.com/i7a7467) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1468](https://redirect.github.com/go-sql-driver/mysql/pull/1468) - [@​Netzer7](https://redirect.github.com/Netzer7) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1464](https://redirect.github.com/go-sql-driver/mysql/pull/1464) - [@​golddranks](https://redirect.github.com/golddranks) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1475](https://redirect.github.com/go-sql-driver/mysql/pull/1475) - [@​ShenFeng312](https://redirect.github.com/ShenFeng312) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1481](https://redirect.github.com/go-sql-driver/mysql/pull/1481) - [@​owbone](https://redirect.github.com/owbone) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1473](https://redirect.github.com/go-sql-driver/mysql/pull/1473) - [@​scop](https://redirect.github.com/scop) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1485](https://redirect.github.com/go-sql-driver/mysql/pull/1485) - [@​panvalkar1994](https://redirect.github.com/panvalkar1994) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1510](https://redirect.github.com/go-sql-driver/mysql/pull/1510) - [@​zhangyangyu](https://redirect.github.com/zhangyangyu) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1470](https://redirect.github.com/go-sql-driver/mysql/pull/1470) - [@​keeplearning20221](https://redirect.github.com/keeplearning20221) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1462](https://redirect.github.com/go-sql-driver/mysql/pull/1462) - [@​oblitorum](https://redirect.github.com/oblitorum) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1506](https://redirect.github.com/go-sql-driver/mysql/pull/1506) - [@​Gusted](https://redirect.github.com/Gusted) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1518](https://redirect.github.com/go-sql-driver/mysql/pull/1518) - [@​jennifersp](https://redirect.github.com/jennifersp) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1520](https://redirect.github.com/go-sql-driver/mysql/pull/1520) - [@​shiyuhang0](https://redirect.github.com/shiyuhang0) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1530](https://redirect.github.com/go-sql-driver/mysql/pull/1530) - [@​PauliusLozys](https://redirect.github.com/PauliusLozys) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1541](https://redirect.github.com/go-sql-driver/mysql/pull/1541) - [@​crazycs520](https://redirect.github.com/crazycs520) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1333](https://redirect.github.com/go-sql-driver/mysql/pull/1333) - [@​ItalyPaleAle](https://redirect.github.com/ItalyPaleAle) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1469](https://redirect.github.com/go-sql-driver/mysql/pull/1469) **Full Changelog**: go-sql-driver/mysql@v1.7.1...v1.8.0 </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [go.mongodb.org/mongo-driver](https://redirect.github.com/mongodb/mongo-go-driver) | `v1.16.1` -> `v1.17.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/go.mongodb.org%2fmongo-driver/v1.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.mongodb.org%2fmongo-driver/v1.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.mongodb.org%2fmongo-driver/v1.16.1/v1.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.mongodb.org%2fmongo-driver/v1.16.1/v1.17.0?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>mongodb/mongo-go-driver (go.mongodb.org/mongo-driver)</summary> ### [`v1.17.0`](https://redirect.github.com/mongodb/mongo-go-driver/compare/v1.16.1...v1.17.0) [Compare Source](https://redirect.github.com/mongodb/mongo-go-driver/compare/v1.16.1...v1.17.0) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…to v7.7.0 (#35254) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/aerospike/aerospike-client-go/v7](https://redirect.github.com/aerospike/aerospike-client-go) | `v7.6.1` -> `v7.7.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faerospike%2faerospike-client-go%2fv7/v7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faerospike%2faerospike-client-go%2fv7/v7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faerospike%2faerospike-client-go%2fv7/v7.6.1/v7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faerospike%2faerospike-client-go%2fv7/v7.6.1/v7.7.0?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>aerospike/aerospike-client-go (github.com/aerospike/aerospike-client-go/v7)</summary> ### [`v7.7.0`](https://redirect.github.com/aerospike/aerospike-client-go/blob/HEAD/CHANGELOG.md#September-13-2024-v770) [Compare Source](https://redirect.github.com/aerospike/aerospike-client-go/compare/v7.6.1...v7.7.0) Minor improvement release. - **Improvements** - \[CLIENT-3112] Correctly handle new error messages/error codes returned by AS 7.2. - \[CLIENT-3102] Add "XDR key busy" error code 32. - \[CLIENT-3119] Use Generics For a General Code Clean Up Uses several new generic containers to simplify concurrent access in the client. Uses a Guard as a monitor for the tend connection. This encapsulates synchronized tend connection management using said Guard. - Add documentation about client.WarmUp to the client initialization API. - **Fixes** - \[CLIENT-3082] BatchGet with empty Keys raises gRPC EOF error. </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [google.golang.org/grpc](https://redirect.github.com/grpc/grpc-go) | `v1.66.1` -> `v1.66.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.66.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgrpc/v1.66.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgrpc/v1.66.1/v1.66.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.66.1/v1.66.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [google.golang.org/grpc](https://redirect.github.com/grpc/grpc-go) | `v1.66.0` -> `v1.66.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.66.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgrpc/v1.66.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgrpc/v1.66.0/v1.66.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.66.0/v1.66.2?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>grpc/grpc-go (google.golang.org/grpc)</summary> ### [`v1.66.2`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.66.2): Release 1.66.2 [Compare Source](https://redirect.github.com/grpc/grpc-go/compare/v1.66.1...v1.66.2) ### Dependencies - Remove unintentional dependency on the `testing` package ([#​7579](https://redirect.github.com/grpc/grpc-go/issues/7579)) - Remove unintentional dependency on the `flate` package ([#​7595](https://redirect.github.com/grpc/grpc-go/issues/7595)) - Special Thanks: [@​ash2k](https://redirect.github.com/ash2k) ### Bug Fixes - client: fix a bug that prevented memory reuse after handling unary RPCs ([#​7571](https://redirect.github.com/grpc/grpc-go/issues/7571)) - Special Thanks: [@​coxley](https://redirect.github.com/coxley) </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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…lization feature gate as stable (#34764) **Description:** receiver.hostmetrics.normalizeProcessCPUUtilization feature gate **Link to tracking Issue:** #34763 --------- Signed-off-by: Israel Blancas <iblancasa@gmail.com> Signed-off-by: Israel Blancas <iblancas@redhat.com> Co-authored-by: Pablo Baeyens <pbaeyens31+github@gmail.com>
**Description:** <Describe what has changed.> * default value config * set default value in context source if metadata empty **Link to tracking Issue: #34412 **Testing:** tbd **Documentation:** see README.md --------- Co-authored-by: Juraci Paixão Kröhling <juraci@kroehling.de>
…ute filter (#34730) **Description:** This PR adds the `invert_match` option for `boolean_attribute` filters, as discussed in #34296 (comment) **Link to tracking Issue:** #34296 **Testing:** Added unit tests **Documentation:** The existing documentation already covered the semantics of the `invert_match` option --------- Signed-off-by: Florian Bacher <florian.bacher@dynatrace.com>
…#35253) Right now, the README in the attribute processor seems to indicate that it should match resource attributes. However, looking at the implementation of the filter processor, this doesn't do anything. Specifically, the function in filtermetric.go: newExpr(...) Doesn't handle resource metrics at all. While they deserialize (and likely should continue to do so, so they do not break things), they do not work. Co-authored-by: Andrew Howden <hello@andrewhowden.com>
…ider (#35227) **Description:** When the event doesn't have a Publisher we should not rely on the behavior of `EvtFormatMessage` API, given, that in some cases it reports error. Instead we should fallback to the non-formatted message to avoid logging error messages on the collector. See issue #35135. **Link to tracking Issue:** Fix #35135 **Testing:** Local validation of the processing of the events reported in the issue. **Documentation:** N/A --------- Co-authored-by: Daniel Jaglowski <jaglows3@gmail.com>
#### Description Testifylint is a linter that provides best practices with the use of testify. This PR enables [formatter](https://github.com/Antonboom/testifylint?tab=readme-ov-file#formatter) rule from [testifylint](https://github.com/Antonboom/testifylint) Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
#### Description Testifylint is a linter that provides best practices with the use of testify. This PR enables [useless-assert](https://github.com/Antonboom/testifylint?tab=readme-ov-file#useless-assert) rule from [testifylint](https://github.com/Antonboom/testifylint) Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
This updates a failing test in the filter processor --------- Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | mongo | final | major | `6.0` -> `7.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### 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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
adds "default" auth, to make the azure go package, autodiscover credentials added by e.g. workload identities
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [otel/opentelemetry-collector](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases) | minor | `0.110.0` -> `0.111.0` | | [otel/opentelemetry-collector-contrib](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases) | minor | `0.110.0` -> `0.111.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>open-telemetry/opentelemetry-collector-releases (otel/opentelemetry-collector)</summary> ### [`v0.111.0`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.111.0) [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/compare/v0.110.0...v0.111.0) **Starting on this release, the `logging` exporter is no longer available on the core and contrib distros. See [open-telemetry/opentelemetry-collector#11337](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/11337) for instructions on how to migrate to the `debug` exporter.** Check the [v0.111.0 contrib changelog](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.111.0) and the [v0.111.0 core changelog](https://redirect.github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.111.0) for changelogs on specific components. #### Changelog - [`38a2931`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/38a293181ae5931a176122217942430fc100cdee) Prepare for v0.111.0 release ([#​688](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/688)) - [`edc8e94`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/edc8e9443074c736551ad82e6c35814a336d1d71) \[chore] refactor(contrib): remove unused replace directive for `go-connections` package ([#​677](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/677)) - [`545bd7c`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/545bd7c1dd76f950f0f3dfcc04218732afdbdb5e) Remove the deprecated logging exporter ([#​682](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/682)) - [`f754260`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/f7542605648b630d502a4c4c3a69433ce1346cf8) Bump actions/checkout from 4.1.7 to 4.2.0 ([#​680](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/680)) - [`24c11af`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/24c11af290c7dca9c370630c493938f812a2a53a) add appropriate version tag in cmd/builder goreleaser config ([#​665](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/665)) - [`1e1b2fa`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/1e1b2fac8fe5ea7b39d76177843e6cbca74a1de0) \[chore] refactor(contrib): remove unused replace directive for `gnostic` package ([#​675](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/675)) - [`4800eb6`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/4800eb6f3a97d794abb60871c209a4a20be44a52) Add minimal OTLP-only distribution ([#​663](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/663)) </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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [cloud.google.com/go/spanner](https://redirect.github.com/googleapis/google-cloud-go) | `v1.68.0` -> `v1.69.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/cloud.google.com%2fgo%2fspanner/v1.69.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/cloud.google.com%2fgo%2fspanner/v1.69.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/cloud.google.com%2fgo%2fspanner/v1.68.0/v1.69.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/cloud.google.com%2fgo%2fspanner/v1.68.0/v1.69.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### 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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
…ib/cmd/telemetrygen to v0.111.0 (#35683) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib) | `v0.110.0` -> `v0.111.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.110.0/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.110.0/v0.111.0?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>open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen)</summary> ### [`v0.111.0`](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v01110) [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.110.0...v0.111.0) ##### 🛑 Breaking changes 🛑 - `instanaexporter`: Remove deprecated instanaexporter ([#​35367](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35367)) Use the `otlp` exporter instead as explained in IBM's [documentation](https://www.ibm.com/docs/en/instana-observability/current?topic=opentelemetry-sending-data-instana-backend). - `elasticsearchexporter`: Drop cumulative temporality histogram and exponential histogram ([#​35442](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35442)) Cumulative temporality histogram and exponential histogram are not supported by Elasticsearch. Use cumulativetodeltaprocessor to convert cumulative temporality to delta temporality. - `elasticsearchexporter`: Implement receiver-based routing under \*\_dynamic_index config ([#​34246](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34246)) - `config`: Move component.UseLocalHostAsDefaultHost feature gate to stable. ([#​35569](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35569)) - `metricsgenerationprocessor`: Generate metrics even when the second metric's value is 0 ([#​35533](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35533)) - `signalfxexporter`: Do not exclude the metric `container.memory.working_set` ([#​35475](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35475)) - `sqlqueryreceiver`: Fail if value for log column in result set is missing, collect errors ([#​35068](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35068)) - `windowseventlogreceiver`: The 'raw' flag no longer suppresses rendering info. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) Previously, this flag controlled two behaviors simultaneously: 1. Whether or not the body of the log record was an XML string or structured object. 2. Whether or not rendering info was resolved. A separate 'suppress_rendering_info' option now controls rendering info resolution. This is considered a breaking change because users setting only the 'raw' flag without also setting the new 'suppress_rendering_info' flag may see a performance decrease along with more detailed events. ##### 🚩 Deprecations 🚩 - `sapmreceiver`: `access_token_passthrough` is deprecated ([#​35330](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35330)) - "`access_token_passthrough` is deprecated." - "Please enable include_metadata in the receiver and add the following config to the batch processor:" ```yaml batch: metadata_keys: [X-Sf-Token] ``` ##### 🚀 New components 🚀 - `receiver/prometheusremotewrite`: Add a new receiver for Prometheus Remote Write. ([#​33782](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33782)) ##### 💡 Enhancements 💡 - `sumconnector`: adds connector and summing logic along with tests ([#​32669](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/32669)) - `receivercreator`: Validate endpoint's configuration before starting receivers ([#​33145](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33145)) - `otelarrowreceiver`: Add admission control in the otelarrow receiver's standard otlp data path. Also moves admission control config options to a separate block. arrow.admission_limit_mib -> admission.request_limit_mib arrow.waiter_limit -> admission.waiter_limit ([#​35021](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35021)) - `clickhouseexporter`: Upgrading stability for traces to beta ([#​35186](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35186)) The trace exporter has proven to be stable for production deployments. Trace configuration is unlikely to receive any significant changes. - `clickhouseexporter`: Updated the default trace table ([#​34245](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34245)) Reduced data types, improved partitioning and time range queries - `opampsupervisor`: Add configurable logging for the supervisor. ([#​35466](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35466)) - `datadogreceiver`: Move receiver's metrics stability to alpha. ([#​18278](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/18278)) - `datadogreceiver`: Add container id from v0.5 request header ([#​35345](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35345)) - `elasticsearchexporter`: Implement elasticsearch.mapping.hints attribute handling for data points in OTel mapping mode ([#​35479](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35479)) elasticsearch.mapping.hints takes a slice of strings. `_doc_count` enables emitting `_doc_count` for the document. `aggregate_metric_double` causes histogram or exponential histogram to be emitted as aggregate_metric_double. - `elasticsearchexporter`: Revert TSDB array dimension workaround for metrics OTel mode ([#​35291](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35291)) Remove the workaround to stringify array dimensions as the limitation has been lifted in Elasticsearch v8.16.0. - `receiver/statsd`: Add support for aggregating on Host/IP. ([#​23809](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/23809)) - `opampsupervisor`: Skip executing the collector if no config is provided ([#​33680](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33680)) - `googlecloudmonitoringreceiver`: Move receiver's stability to alpha. ([#​33762](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33762)) - `hostmetricsreceiver`: Add ability to mute all errors (mainly due to access rights) coming from process scraper of the hostmetricsreceiver ([#​20435](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/20435)) - `kubeletstats`: Introduce feature gate for deprecation of container.cpu.utilization, k8s.pod.cpu.utilization and k8s.node.cpu.utilization metrics ([#​35139](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35139)) - `opampsupervisor`: Make supervisor runnable as a Windows Service. ([#​34774](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34774)) - `opampsupervisor`: Add config option for setting the timeout for the initial bootstrap information retrieval from the agent ([#​34996](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34996)) - `pkg/ottl`: Add InsertXML Converter ([#​35436](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35436)) - `pkg/ottl`: Add GetXML Converter ([#​35462](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35462)) - `pkg/ottl`: Add ToKeyValueString Converter ([#​35334](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35334)) - `pkg/ottl`: Add RemoveXML Converter ([#​35301](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35301)) - `geoipprocessor`: No longer return an error when geo metadata is not found by a provider. ([#​35047](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35047)) - `sqlserverreceiver`: Add computer name resource attribute to relevant metrics ([#​35040](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35040)) - `windowseventlogreceiver`: Add 'suppress_rendering_info' option. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) When this flag is enabled, the receiver will not attempt to resolve rendering info. This can improve performance but comes at a cost of losing some details in the event log. - `windowseventlogreceiver`: Move artificial "remote_server" field to 'attributes\["server.address"]'. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) ##### 🧰 Bug fixes 🧰 - `webhookeventreceiver`: Fixed a bug where request bodies containing newline characters caused the results to split into multiple log entries ([#​35028](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35028)) - `opampsupervisor`: Only use TLS config when connecting to OpAMP server if using `wss` or `https` protocols. ([#​35283](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35283)) - `metricsgenerationprocessor`: Allow metric calculations to be done on sum metrics ([#​35428](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35428)) - `sqlqueryreceiver`: Fix reprocessing of logs when tracking_column type is timestamp ([#​35194](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35194)) - `windowseventlogreceiver`: While collecting from a remote windows host, the stanza operator will no longer log "subscription handle is already open" constantly during successful collection. ([#​35520](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35520)) - `windowseventlogreceiver`: If collecting from a remote host, the receiver will stop collecting if the host restarts. This change resubscribes when the host restarts. ([#​35175](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35175)) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…ib/extension/opampcustommessages to v0.111.0 (#35684) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/open-telemetry/opentelemetry-collector-contrib/extension/opampcustommessages](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib) | `v0.110.1-0.20241004063257-d6cd5935eefc` -> `v0.111.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fextension%2fopampcustommessages/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fextension%2fopampcustommessages/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fextension%2fopampcustommessages/v0.110.1-0.20241004063257-d6cd5935eefc/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fextension%2fopampcustommessages/v0.110.1-0.20241004063257-d6cd5935eefc/v0.111.0?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>open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/extension/opampcustommessages)</summary> ### [`v0.111.0`](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v01110) [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.110.0...v0.111.0) ##### 🛑 Breaking changes 🛑 - `instanaexporter`: Remove deprecated instanaexporter ([#​35367](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35367)) Use the `otlp` exporter instead as explained in IBM's [documentation](https://www.ibm.com/docs/en/instana-observability/current?topic=opentelemetry-sending-data-instana-backend). - `elasticsearchexporter`: Drop cumulative temporality histogram and exponential histogram ([#​35442](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35442)) Cumulative temporality histogram and exponential histogram are not supported by Elasticsearch. Use cumulativetodeltaprocessor to convert cumulative temporality to delta temporality. - `elasticsearchexporter`: Implement receiver-based routing under \*\_dynamic_index config ([#​34246](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34246)) - `config`: Move component.UseLocalHostAsDefaultHost feature gate to stable. ([#​35569](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35569)) - `metricsgenerationprocessor`: Generate metrics even when the second metric's value is 0 ([#​35533](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35533)) - `signalfxexporter`: Do not exclude the metric `container.memory.working_set` ([#​35475](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35475)) - `sqlqueryreceiver`: Fail if value for log column in result set is missing, collect errors ([#​35068](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35068)) - `windowseventlogreceiver`: The 'raw' flag no longer suppresses rendering info. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) Previously, this flag controlled two behaviors simultaneously: 1. Whether or not the body of the log record was an XML string or structured object. 2. Whether or not rendering info was resolved. A separate 'suppress_rendering_info' option now controls rendering info resolution. This is considered a breaking change because users setting only the 'raw' flag without also setting the new 'suppress_rendering_info' flag may see a performance decrease along with more detailed events. ##### 🚩 Deprecations 🚩 - `sapmreceiver`: `access_token_passthrough` is deprecated ([#​35330](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35330)) - "`access_token_passthrough` is deprecated." - "Please enable include_metadata in the receiver and add the following config to the batch processor:" ```yaml batch: metadata_keys: [X-Sf-Token] ``` ##### 🚀 New components 🚀 - `receiver/prometheusremotewrite`: Add a new receiver for Prometheus Remote Write. ([#​33782](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33782)) ##### 💡 Enhancements 💡 - `sumconnector`: adds connector and summing logic along with tests ([#​32669](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/32669)) - `receivercreator`: Validate endpoint's configuration before starting receivers ([#​33145](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33145)) - `otelarrowreceiver`: Add admission control in the otelarrow receiver's standard otlp data path. Also moves admission control config options to a separate block. arrow.admission_limit_mib -> admission.request_limit_mib arrow.waiter_limit -> admission.waiter_limit ([#​35021](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35021)) - `clickhouseexporter`: Upgrading stability for traces to beta ([#​35186](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35186)) The trace exporter has proven to be stable for production deployments. Trace configuration is unlikely to receive any significant changes. - `clickhouseexporter`: Updated the default trace table ([#​34245](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34245)) Reduced data types, improved partitioning and time range queries - `opampsupervisor`: Add configurable logging for the supervisor. ([#​35466](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35466)) - `datadogreceiver`: Move receiver's metrics stability to alpha. ([#​18278](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/18278)) - `datadogreceiver`: Add container id from v0.5 request header ([#​35345](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35345)) - `elasticsearchexporter`: Implement elasticsearch.mapping.hints attribute handling for data points in OTel mapping mode ([#​35479](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35479)) elasticsearch.mapping.hints takes a slice of strings. `_doc_count` enables emitting `_doc_count` for the document. `aggregate_metric_double` causes histogram or exponential histogram to be emitted as aggregate_metric_double. - `elasticsearchexporter`: Revert TSDB array dimension workaround for metrics OTel mode ([#​35291](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35291)) Remove the workaround to stringify array dimensions as the limitation has been lifted in Elasticsearch v8.16.0. - `receiver/statsd`: Add support for aggregating on Host/IP. ([#​23809](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/23809)) - `opampsupervisor`: Skip executing the collector if no config is provided ([#​33680](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33680)) - `googlecloudmonitoringreceiver`: Move receiver's stability to alpha. ([#​33762](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33762)) - `hostmetricsreceiver`: Add ability to mute all errors (mainly due to access rights) coming from process scraper of the hostmetricsreceiver ([#​20435](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/20435)) - `kubeletstats`: Introduce feature gate for deprecation of container.cpu.utilization, k8s.pod.cpu.utilization and k8s.node.cpu.utilization metrics ([#​35139](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35139)) - `opampsupervisor`: Make supervisor runnable as a Windows Service. ([#​34774](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34774)) - `opampsupervisor`: Add config option for setting the timeout for the initial bootstrap information retrieval from the agent ([#​34996](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34996)) - `pkg/ottl`: Add InsertXML Converter ([#​35436](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35436)) - `pkg/ottl`: Add GetXML Converter ([#​35462](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35462)) - `pkg/ottl`: Add ToKeyValueString Converter ([#​35334](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35334)) - `pkg/ottl`: Add RemoveXML Converter ([#​35301](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35301)) - `geoipprocessor`: No longer return an error when geo metadata is not found by a provider. ([#​35047](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35047)) - `sqlserverreceiver`: Add computer name resource attribute to relevant metrics ([#​35040](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35040)) - `windowseventlogreceiver`: Add 'suppress_rendering_info' option. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) When this flag is enabled, the receiver will not attempt to resolve rendering info. This can improve performance but comes at a cost of losing some details in the event log. - `windowseventlogreceiver`: Move artificial "remote_server" field to 'attributes\["server.address"]'. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) ##### 🧰 Bug fixes 🧰 - `webhookeventreceiver`: Fixed a bug where request bodies containing newline characters caused the results to split into multiple log entries ([#​35028](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35028)) - `opampsupervisor`: Only use TLS config when connecting to OpAMP server if using `wss` or `https` protocols. ([#​35283](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35283)) - `metricsgenerationprocessor`: Allow metric calculations to be done on sum metrics ([#​35428](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35428)) - `sqlqueryreceiver`: Fix reprocessing of logs when tracking_column type is timestamp ([#​35194](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35194)) - `windowseventlogreceiver`: While collecting from a remote windows host, the stanza operator will no longer log "subscription handle is already open" constantly during successful collection. ([#​35520](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35520)) - `windowseventlogreceiver`: If collecting from a remote host, the receiver will stop collecting if the host restarts. This change resubscribes when the host restarts. ([#​35175](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35175)) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/knadh/koanf/providers/file](https://redirect.github.com/knadh/koanf) | `v1.1.0` -> `v1.1.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fknadh%2fkoanf%2fproviders%2ffile/v1.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fknadh%2fkoanf%2fproviders%2ffile/v1.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fknadh%2fkoanf%2fproviders%2ffile/v1.1.0/v1.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fknadh%2fkoanf%2fproviders%2ffile/v1.1.0/v1.1.2?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>knadh/koanf (github.com/knadh/koanf/providers/file)</summary> ### [`v1.1.1`](https://redirect.github.com/knadh/koanf/releases/tag/v1.1.1) [Compare Source](https://redirect.github.com/knadh/koanf/compare/v1.1.0...v1.1.1) - [`57e89cf`](https://redirect.github.com/knadh/koanf/commit/57e89cf) Merge pull request [#​94](https://redirect.github.com/knadh/koanf/issues/94) from knadh/fix-posflag-callbacks - [`d3bad45`](https://redirect.github.com/knadh/koanf/commit/d3bad45) Merge pull request [#​91](https://redirect.github.com/knadh/koanf/issues/91) from knadh/bug-report-template - [`b1985ad`](https://redirect.github.com/knadh/koanf/commit/b1985ad) Merge pull request [#​93](https://redirect.github.com/knadh/koanf/issues/93) from rhnvrm/unit-test-issue-90 - [`a72baa3`](https://redirect.github.com/knadh/koanf/commit/a72baa3) Merge pull request [#​92](https://redirect.github.com/knadh/koanf/issues/92) from knadh/fix-posflag-callbacks - [`adc0b54`](https://redirect.github.com/knadh/koanf/commit/adc0b54) tests: add unit test for [#​90](https://redirect.github.com/knadh/koanf/issues/90) - [`9e87eba`](https://redirect.github.com/knadh/koanf/commit/9e87eba) Fix unchanged default posflag value merging via incorrect callback. - [`2f82a14`](https://redirect.github.com/knadh/koanf/commit/2f82a14) Merge pull request [#​87](https://redirect.github.com/knadh/koanf/issues/87) from mvrahden/feature/filesystem - [`6e9c0a7`](https://redirect.github.com/knadh/koanf/commit/6e9c0a7) Add github issue templates - [`023ecc6`](https://redirect.github.com/knadh/koanf/commit/023ecc6) Update README with fs.FS provider - [`f7e28d0`](https://redirect.github.com/knadh/koanf/commit/f7e28d0) fix call to Close on file descriptor - [`caeef66`](https://redirect.github.com/knadh/koanf/commit/caeef66) Merge pull request [#​1](https://redirect.github.com/knadh/koanf/issues/1) from rhnvrm/feature/filesystem - [`02f42ea`](https://redirect.github.com/knadh/koanf/commit/02f42ea) fix: add build constraints to maintain compat - [`149144c`](https://redirect.github.com/knadh/koanf/commit/149144c) add fs.FS provider - [`139fe40`](https://redirect.github.com/knadh/koanf/commit/139fe40) Merge pull request [#​85](https://redirect.github.com/knadh/koanf/issues/85) from mvrahden/fix/base_test - [`7cc3416`](https://redirect.github.com/knadh/koanf/commit/7cc3416) move error assertions and make them error-type dependent - [`0a31536`](https://redirect.github.com/knadh/koanf/commit/0a31536) fix race condition and reduce test time by half - [`af2e3f4`](https://redirect.github.com/knadh/koanf/commit/af2e3f4) simplify and unify test arrangements - [`aa62c04`](https://redirect.github.com/knadh/koanf/commit/aa62c04) update testify to v1.7.0 - [`5234867`](https://redirect.github.com/knadh/koanf/commit/5234867) Merge pull request [#​84](https://redirect.github.com/knadh/koanf/issues/84) from mr-karan/gh_actions - [`c79fbc5`](https://redirect.github.com/knadh/koanf/commit/c79fbc5) feat: Replace Travis with GitHub Actions </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/snowflakedb/gosnowflake](https://redirect.github.com/snowflakedb/gosnowflake) | `v1.11.1` -> `v1.11.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsnowflakedb%2fgosnowflake/v1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsnowflakedb%2fgosnowflake/v1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsnowflakedb%2fgosnowflake/v1.11.1/v1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsnowflakedb%2fgosnowflake/v1.11.1/v1.11.2?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>snowflakedb/gosnowflake (github.com/snowflakedb/gosnowflake)</summary> ### [`v1.11.2`](https://redirect.github.com/snowflakedb/gosnowflake/releases/tag/v1.11.2): Release [Compare Source](https://redirect.github.com/snowflakedb/gosnowflake/compare/v1.11.1...v1.11.2) - Please check Snowflake [community page for release notes](https://docs.snowflake.com/en/release-notes/clients-drivers/golang). </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
…odeowners (#35682) #### Description I have been working with this component recently and I would be happy to volunteer to help with its maintenance since I have relevant experience maintaining similar components in [Beats](https://github.com/elastic/beats) project. /cc @dmitryax since we discussed this already. ✅ Being a member of Opentelemetry organization PRs authored: https://github.com/open-telemetry/opentelemetry-collector-contrib/pulls?q=is%3Apr+author%3AChrsMark+label%3Aextension%2Fobserver PRs reviewed: https://github.com/open-telemetry/opentelemetry-collector-contrib/pulls?q=is%3Apr+label%3Aextension%2Fobserver+reviewed-by%3AChrsMark+ Signed-off-by: ChrsMark <chrismarkou92@gmail.com>
#### Description As an oversight, #35048 creates two `metadata.TelemetryBuilder` instances. It also introduces an async metric, but one `TelemetryBuilder` sets no callback for that, leading to a panic on `Collect()`. Fixes that by using the same `TelemetryBuilder` for both, properly setting the callback. #### Testing Test was added in first commit that passes after adding second commit
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/mattn/go-sqlite3](https://redirect.github.com/mattn/go-sqlite3) | `v1.14.23` -> `v1.14.24` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fmattn%2fgo-sqlite3/v1.14.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fmattn%2fgo-sqlite3/v1.14.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fmattn%2fgo-sqlite3/v1.14.23/v1.14.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fmattn%2fgo-sqlite3/v1.14.23/v1.14.24?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>mattn/go-sqlite3 (github.com/mattn/go-sqlite3)</summary> ### [`v1.14.24`](https://redirect.github.com/mattn/go-sqlite3/compare/v1.14.23...v1.14.24) [Compare Source](https://redirect.github.com/mattn/go-sqlite3/compare/v1.14.23...v1.14.24) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/aws/aws-sdk-go-v2](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.31.0` -> `v1.32.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2/v1.31.0/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2/v1.31.0/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/config](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.27.39` -> `v1.27.42` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.42?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.42?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.39/v1.27.42?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.39/v1.27.42?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/credentials](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.17.37` -> `v1.17.40` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.40?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.40?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.37/v1.17.40?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.37/v1.17.40?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.17.25` -> `v1.17.29` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.17.29?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.17.29?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.17.25/v1.17.29?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.17.25/v1.17.29?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/service/kinesis](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.31.2` -> `v1.32.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.31.2/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.31.2/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/service/s3](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.63.3` -> `v1.65.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.65.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.65.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.63.3/v1.65.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.63.3/v1.65.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.33.3` -> `v1.34.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.34.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.34.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.33.3/v1.34.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.33.3/v1.34.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/service/servicediscovery](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.32.3` -> `v1.33.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.32.3/v1.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.32.3/v1.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/aws-sdk-go-v2/service/sts](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.31.3` -> `v1.32.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.31.3/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.31.3/v1.32.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/aws/smithy-go](https://redirect.github.com/aws/smithy-go) | `v1.21.0` -> `v1.22.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2fsmithy-go/v1.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2fsmithy-go/v1.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2fsmithy-go/v1.21.0/v1.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2fsmithy-go/v1.21.0/v1.22.0?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>aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)</summary> ### [`v1.32.1`](https://redirect.github.com/aws/aws-sdk-go-v2/compare/v1.32.0...v1.32.1) [Compare Source](https://redirect.github.com/aws/aws-sdk-go-v2/compare/v1.32.0...v1.32.1) ### [`v1.32.0`](https://redirect.github.com/aws/aws-sdk-go-v2/compare/v1.31.0...v1.32.0) [Compare Source](https://redirect.github.com/aws/aws-sdk-go-v2/compare/v1.31.0...v1.32.0) </details> <details> <summary>aws/smithy-go (github.com/aws/smithy-go)</summary> ### [`v1.22.0`](https://redirect.github.com/aws/smithy-go/compare/v1.21.0...v1.22.0) [Compare Source](https://redirect.github.com/aws/smithy-go/compare/v1.21.0...v1.22.0) </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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/vmware/govmomi](https://redirect.github.com/vmware/govmomi) | `v0.43.0` -> `v0.44.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fvmware%2fgovmomi/v0.44.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fvmware%2fgovmomi/v0.44.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fvmware%2fgovmomi/v0.43.0/v0.44.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fvmware%2fgovmomi/v0.43.0/v0.44.0?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>vmware/govmomi (github.com/vmware/govmomi)</summary> ### [`v0.44.0`](https://redirect.github.com/vmware/govmomi/releases/tag/v0.44.0) [Compare Source](https://redirect.github.com/vmware/govmomi/compare/v0.43.0...v0.44.0) <a name="v0.44.0"></a> #### [Release v0.44.0](https://redirect.github.com/vmware/govmomi/compare/v0.43.0...v0.44.0) > Release Date: 2024-10-07 ##### 🐞 Fix - \[[`bf6e162`](https://redirect.github.com/vmware/govmomi/commit/bf6e1626)] synchronize access to session.Manager.userSession ([#​3571](https://redirect.github.com/vmware/govmomi/issues/3571)) ##### 💡 Examples - \[[`da37212`](https://redirect.github.com/vmware/govmomi/commit/da37212c)] add ExampleListView_ofContainerView ##### 💫 API Changes - \[[`733f1c0`](https://redirect.github.com/vmware/govmomi/commit/733f1c0c)] Update folder.PlaceVMsXCluster to support several placement types - \[[`4665dff`](https://redirect.github.com/vmware/govmomi/commit/4665dff2)] disable http.Transport.ForceAttemptHTTP2 by default ([#​3564](https://redirect.github.com/vmware/govmomi/issues/3564)) - \[[`d95d350`](https://redirect.github.com/vmware/govmomi/commit/d95d3508)] add vapi/crypto package with support for native KMS - \[[`d2ccadf`](https://redirect.github.com/vmware/govmomi/commit/d2ccadf4)] add rest.Client.DownloadAttachment method - \[[`cb0453c`](https://redirect.github.com/vmware/govmomi/commit/cb0453c9)] extract NewDatastoreURL from Datastore.NewURL method - \[[`9a02a4a`](https://redirect.github.com/vmware/govmomi/commit/9a02a4a9)] Support querying PBM profile for IOFILTERS - \[[`92797d4`](https://redirect.github.com/vmware/govmomi/commit/92797d40)] Helpers for key management servers ##### 💫 `govc` (CLI) - \[[`844fa1c`](https://redirect.github.com/vmware/govmomi/commit/844fa1cc)] update help url - \[[`7daac37`](https://redirect.github.com/vmware/govmomi/commit/7daac379)] add vm.change -managed-by flag - \[[`2613278`](https://redirect.github.com/vmware/govmomi/commit/2613278c)] add storage.policy.info flag to query IO filters - \[[`108e4fd`](https://redirect.github.com/vmware/govmomi/commit/108e4fd8)] add native kms provider support - \[[`ccf449e`](https://redirect.github.com/vmware/govmomi/commit/ccf449e4)] add kms commands ##### 💫 `vcsim` (Simulator) - \[[`5a9567f`](https://redirect.github.com/vmware/govmomi/commit/5a9567f6)] lock ViewManager in RegisterObject callbacks - \[[`6267644`](https://redirect.github.com/vmware/govmomi/commit/6267644d)] add \*Context param to UpdateObject interface method - \[[`3ba044c`](https://redirect.github.com/vmware/govmomi/commit/3ba044c9)] support clearing ManagedBy field ([#​3572](https://redirect.github.com/vmware/govmomi/issues/3572)) - \[[`2c49326`](https://redirect.github.com/vmware/govmomi/commit/2c493262)] handle traversal spec object updates - \[[`fc91180`](https://redirect.github.com/vmware/govmomi/commit/fc91180a)] ModifyListView 'remove' does not return unresolved objects - \[[`1f0838e`](https://redirect.github.com/vmware/govmomi/commit/1f0838ed)] override response namespace from struct tag - \[[`6cea86e`](https://redirect.github.com/vmware/govmomi/commit/6cea86e8)] fix RelocateVM_Task related races ([#​3565](https://redirect.github.com/vmware/govmomi/issues/3565)) - \[[`f81e83d`](https://redirect.github.com/vmware/govmomi/commit/f81e83d8)] support cluster registration in RegisterKmipServer - \[[`cddbe1f`](https://redirect.github.com/vmware/govmomi/commit/cddbe1f9)] Gen enc key w default provider on createvm ##### 📃 Documentation - \[[`707acb8`](https://redirect.github.com/vmware/govmomi/commit/707acb83)] sync CHANGELOG ([#​3286](https://redirect.github.com/vmware/govmomi/issues/3286)) - \[[`582eefa`](https://redirect.github.com/vmware/govmomi/commit/582eefa8)] various updates ##### 🧹 Chore - \[[`ff95505`](https://redirect.github.com/vmware/govmomi/commit/ff95505d)] Update version.go for v0.44.0 - \[[`f807c48`](https://redirect.github.com/vmware/govmomi/commit/f807c483)] fixup internal version - \[[`70edf99`](https://redirect.github.com/vmware/govmomi/commit/70edf99b)] bump default ClientVersion - \[[`e6bfadb`](https://redirect.github.com/vmware/govmomi/commit/e6bfadbd)] bump Go versions - \[[`4d0e69d`](https://redirect.github.com/vmware/govmomi/commit/4d0e69db)] fix GH Action tag output param - \[[`796892a`](https://redirect.github.com/vmware/govmomi/commit/796892a4)] rename crypto.Manager RegisterKmipCluster > RegisterKmsCluster - \[[`2b65990`](https://redirect.github.com/vmware/govmomi/commit/2b659905)] simplify error handling by using the new fault package #####⚠️ BREAKING ##### 📖 Commits - \[[`ff95505`](https://redirect.github.com/vmware/govmomi/commit/ff95505d)] chore: Update version.go for v0.44.0 - \[[`f807c48`](https://redirect.github.com/vmware/govmomi/commit/f807c483)] chore: fixup internal version - \[[`5a9567f`](https://redirect.github.com/vmware/govmomi/commit/5a9567f6)] vcsim: lock ViewManager in RegisterObject callbacks - \[[`844fa1c`](https://redirect.github.com/vmware/govmomi/commit/844fa1cc)] govc: update help url - \[[`d0278e2`](https://redirect.github.com/vmware/govmomi/commit/d0278e29)] build(deps): bump golang.org/x/text from 0.18.0 to 0.19.0 - \[[`6267644`](https://redirect.github.com/vmware/govmomi/commit/6267644d)] vcsim: add \*Context param to UpdateObject interface method - \[[`7daac37`](https://redirect.github.com/vmware/govmomi/commit/7daac379)] govc: add vm.change -managed-by flag - \[[`3ba044c`](https://redirect.github.com/vmware/govmomi/commit/3ba044c9)] vcsim: support clearing ManagedBy field ([#​3572](https://redirect.github.com/vmware/govmomi/issues/3572)) - \[[`bf6e162`](https://redirect.github.com/vmware/govmomi/commit/bf6e1626)] fix: synchronize access to session.Manager.userSession ([#​3571](https://redirect.github.com/vmware/govmomi/issues/3571)) - \[[`da37212`](https://redirect.github.com/vmware/govmomi/commit/da37212c)] examples: add ExampleListView_ofContainerView - \[[`2c49326`](https://redirect.github.com/vmware/govmomi/commit/2c493262)] vcsim: handle traversal spec object updates - \[[`fc91180`](https://redirect.github.com/vmware/govmomi/commit/fc91180a)] vcsim: ModifyListView 'remove' does not return unresolved objects - \[[`70edf99`](https://redirect.github.com/vmware/govmomi/commit/70edf99b)] chore: bump default ClientVersion - \[[`707acb8`](https://redirect.github.com/vmware/govmomi/commit/707acb83)] docs: sync CHANGELOG ([#​3286](https://redirect.github.com/vmware/govmomi/issues/3286)) - \[[`e6bfadb`](https://redirect.github.com/vmware/govmomi/commit/e6bfadbd)] chore: bump Go versions - \[[`4d0e69d`](https://redirect.github.com/vmware/govmomi/commit/4d0e69db)] chore: fix GH Action tag output param - \[[`582eefa`](https://redirect.github.com/vmware/govmomi/commit/582eefa8)] docs: various updates - \[[`2613278`](https://redirect.github.com/vmware/govmomi/commit/2613278c)] govc: add storage.policy.info flag to query IO filters - \[[`da340f5`](https://redirect.github.com/vmware/govmomi/commit/da340f59)] Use internalpbm namespace for PbmQueryIOFiltersFromProfileId - \[[`1f0838e`](https://redirect.github.com/vmware/govmomi/commit/1f0838ed)] vcsim: override response namespace from struct tag - \[[`733f1c0`](https://redirect.github.com/vmware/govmomi/commit/733f1c0c)] api: Update folder.PlaceVMsXCluster to support several placement types - \[[`4665dff`](https://redirect.github.com/vmware/govmomi/commit/4665dff2)] api: disable http.Transport.ForceAttemptHTTP2 by default ([#​3564](https://redirect.github.com/vmware/govmomi/issues/3564)) - \[[`6cea86e`](https://redirect.github.com/vmware/govmomi/commit/6cea86e8)] vcsim: fix RelocateVM_Task related races ([#​3565](https://redirect.github.com/vmware/govmomi/issues/3565)) - \[[`108e4fd`](https://redirect.github.com/vmware/govmomi/commit/108e4fd8)] govc: add native kms provider support - \[[`d95d350`](https://redirect.github.com/vmware/govmomi/commit/d95d3508)] api: add vapi/crypto package with support for native KMS - \[[`d2ccadf`](https://redirect.github.com/vmware/govmomi/commit/d2ccadf4)] api: add rest.Client.DownloadAttachment method - \[[`cb0453c`](https://redirect.github.com/vmware/govmomi/commit/cb0453c9)] api: extract NewDatastoreURL from Datastore.NewURL method - \[[`9a02a4a`](https://redirect.github.com/vmware/govmomi/commit/9a02a4a9)] api: Support querying PBM profile for IOFILTERS - \[[`ccf449e`](https://redirect.github.com/vmware/govmomi/commit/ccf449e4)] govc: add kms commands - \[[`796892a`](https://redirect.github.com/vmware/govmomi/commit/796892a4)] chore: rename crypto.Manager RegisterKmipCluster > RegisterKmsCluster - \[[`f81e83d`](https://redirect.github.com/vmware/govmomi/commit/f81e83d8)] vcsim: support cluster registration in RegisterKmipServer - \[[`cddbe1f`](https://redirect.github.com/vmware/govmomi/commit/cddbe1f9)] vcsim: Gen enc key w default provider on createvm - \[[`92797d4`](https://redirect.github.com/vmware/govmomi/commit/92797d40)] api: Helpers for key management servers - \[[`2b65990`](https://redirect.github.com/vmware/govmomi/commit/2b659905)] chore: simplify error handling by using the new fault package </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/SAP/go-hdb](https://redirect.github.com/SAP/go-hdb) | `v1.12.2` -> `v1.12.3` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fSAP%2fgo-hdb/v1.12.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.12.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.12.2/v1.12.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.12.2/v1.12.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.12.3`](https://redirect.github.com/SAP/go-hdb/blob/HEAD/RELEASENOTES.md#v1123) [Compare Source](https://redirect.github.com/SAP/go-hdb/compare/v1.12.2...v1.12.3) - updated dependencies - fixed linter issues </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
This PR makes sure @crobert-1 is placed on leave and no longer assigned issues. Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [google.golang.org/protobuf](https://redirect.github.com/protocolbuffers/protobuf-go) | `v1.34.2` -> `v1.35.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fprotobuf/v1.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fprotobuf/v1.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fprotobuf/v1.34.2/v1.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fprotobuf/v1.34.2/v1.35.1?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>protocolbuffers/protobuf-go (google.golang.org/protobuf)</summary> ### [`v1.35.1`](https://redirect.github.com/protocolbuffers/protobuf-go/compare/v1.35.0...v1.35.1) [Compare Source](https://redirect.github.com/protocolbuffers/protobuf-go/compare/v1.35.0...v1.35.1) ### [`v1.35.0`](https://redirect.github.com/protocolbuffers/protobuf-go/compare/v1.34.2...v1.35.0) [Compare Source](https://redirect.github.com/protocolbuffers/protobuf-go/compare/v1.34.2...v1.35.0) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
…35678) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/DataDog/datadog-api-client-go/v2](https://redirect.github.com/DataDog/datadog-api-client-go) | `v2.30.0` -> `v2.31.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-api-client-go%2fv2/v2.31.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fDataDog%2fdatadog-api-client-go%2fv2/v2.31.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fDataDog%2fdatadog-api-client-go%2fv2/v2.30.0/v2.31.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-api-client-go%2fv2/v2.30.0/v2.31.0?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>DataDog/datadog-api-client-go (github.com/DataDog/datadog-api-client-go/v2)</summary> ### [`v2.31.0`](https://redirect.github.com/DataDog/datadog-api-client-go/releases/tag/v2.31.0) [Compare Source](https://redirect.github.com/DataDog/datadog-api-client-go/compare/v2.30.0...v2.31.0) <!-- Release notes generated using configuration in .github/release.yml at v2.31.0 --> #### What's Changed ##### Fixed - change schema used in FastlyServicesResponse by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2700](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2700) ##### Added - Add new synthetics HTTP javascript assertion by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2616](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2616) - Dashboards - Toplist widget style - Add palette by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2668](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2668) - Allow Table Widget requests to specify text replace formatting in dashboards by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2669](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2669) - Add documentation for Data Jobs Monitoring summary keys by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2672](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2672) - Update estimate docs with realtime changes by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2704](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2704) - Ensure clients can handle empty oneOf objects by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2702](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2702) - Add referenceTables field to security monitoring endpoints by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2697](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2697) - Add UA documentation for new DJM usage_type by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2698](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2698) - Add v2 endpoints for MS Teams Integration by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2707](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2707) - Add documention for OCI Integration by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2713](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2713) - Add schema for mobile test by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2682](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2682) - Add Synthetics endpoint to fetch uptimes in API spec by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2661](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2661) ##### Changed - Split the synthetics request port field into a oneOf by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2678](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2678) - Remove unused field `color` in `TeamUpdateAttributes` by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2674](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2674) - Powerpack add support for prefix and available values by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2683](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2683) - bump go version to 1.22 by [@​amaskara-dd](https://redirect.github.com/amaskara-dd) in [https://github.com/DataDog/datadog-api-client-go/pull/2692](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2692) - Update v2 metrics list endpoint filter by metric type to use metric type category by [@​api-clients-generation-pipeline](https://redirect.github.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2705](https://redirect.github.com/DataDog/datadog-api-client-go/pull/2705) **Full Changelog**: DataDog/datadog-api-client-go@v2.30.0...v2.31.0 </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
Signed-off-by: Dan Jaglowski <jaglows3@gmail.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/antchfx/xpath](https://redirect.github.com/antchfx/xpath) | `v1.3.1` -> `v1.3.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fantchfx%2fxpath/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fantchfx%2fxpath/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fantchfx%2fxpath/v1.3.1/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fantchfx%2fxpath/v1.3.1/v1.3.2?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>antchfx/xpath (github.com/antchfx/xpath)</summary> ### [`v1.3.2`](https://redirect.github.com/antchfx/xpath/releases/tag/v1.3.2) [Compare Source](https://redirect.github.com/antchfx/xpath/compare/v1.3.1...v1.3.2) New Features: - Supports Unicode chars for Non-English (PR [#​100](https://redirect.github.com/antchfx/xpath/issues/100)) Bug Fixed: - [#​101](https://redirect.github.com/antchfx/xpath/issues/101) - [#​102](https://redirect.github.com/antchfx/xpath/issues/102) - [#​104](https://redirect.github.com/antchfx/xpath/issues/104) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
…ib/internal/common to v0.111.0 (#35688) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/open-telemetry/opentelemetry-collector-contrib/internal/common](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib) | `v0.110.0` -> `v0.111.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.110.0/v0.111.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.110.0/v0.111.0?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>open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/internal/common)</summary> ### [`v0.111.0`](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v01110) [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.110.0...v0.111.0) ##### 🛑 Breaking changes 🛑 - `instanaexporter`: Remove deprecated instanaexporter ([#​35367](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35367)) Use the `otlp` exporter instead as explained in IBM's [documentation](https://www.ibm.com/docs/en/instana-observability/current?topic=opentelemetry-sending-data-instana-backend). - `elasticsearchexporter`: Drop cumulative temporality histogram and exponential histogram ([#​35442](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35442)) Cumulative temporality histogram and exponential histogram are not supported by Elasticsearch. Use cumulativetodeltaprocessor to convert cumulative temporality to delta temporality. - `elasticsearchexporter`: Implement receiver-based routing under \*\_dynamic_index config ([#​34246](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34246)) - `config`: Move component.UseLocalHostAsDefaultHost feature gate to stable. ([#​35569](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35569)) - `metricsgenerationprocessor`: Generate metrics even when the second metric's value is 0 ([#​35533](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35533)) - `signalfxexporter`: Do not exclude the metric `container.memory.working_set` ([#​35475](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35475)) - `sqlqueryreceiver`: Fail if value for log column in result set is missing, collect errors ([#​35068](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35068)) - `windowseventlogreceiver`: The 'raw' flag no longer suppresses rendering info. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) Previously, this flag controlled two behaviors simultaneously: 1. Whether or not the body of the log record was an XML string or structured object. 2. Whether or not rendering info was resolved. A separate 'suppress_rendering_info' option now controls rendering info resolution. This is considered a breaking change because users setting only the 'raw' flag without also setting the new 'suppress_rendering_info' flag may see a performance decrease along with more detailed events. ##### 🚩 Deprecations 🚩 - `sapmreceiver`: `access_token_passthrough` is deprecated ([#​35330](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35330)) - "`access_token_passthrough` is deprecated." - "Please enable include_metadata in the receiver and add the following config to the batch processor:" ```yaml batch: metadata_keys: [X-Sf-Token] ``` ##### 🚀 New components 🚀 - `receiver/prometheusremotewrite`: Add a new receiver for Prometheus Remote Write. ([#​33782](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33782)) ##### 💡 Enhancements 💡 - `sumconnector`: adds connector and summing logic along with tests ([#​32669](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/32669)) - `receivercreator`: Validate endpoint's configuration before starting receivers ([#​33145](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33145)) - `otelarrowreceiver`: Add admission control in the otelarrow receiver's standard otlp data path. Also moves admission control config options to a separate block. arrow.admission_limit_mib -> admission.request_limit_mib arrow.waiter_limit -> admission.waiter_limit ([#​35021](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35021)) - `clickhouseexporter`: Upgrading stability for traces to beta ([#​35186](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35186)) The trace exporter has proven to be stable for production deployments. Trace configuration is unlikely to receive any significant changes. - `clickhouseexporter`: Updated the default trace table ([#​34245](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34245)) Reduced data types, improved partitioning and time range queries - `opampsupervisor`: Add configurable logging for the supervisor. ([#​35466](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35466)) - `datadogreceiver`: Move receiver's metrics stability to alpha. ([#​18278](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/18278)) - `datadogreceiver`: Add container id from v0.5 request header ([#​35345](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35345)) - `elasticsearchexporter`: Implement elasticsearch.mapping.hints attribute handling for data points in OTel mapping mode ([#​35479](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35479)) elasticsearch.mapping.hints takes a slice of strings. `_doc_count` enables emitting `_doc_count` for the document. `aggregate_metric_double` causes histogram or exponential histogram to be emitted as aggregate_metric_double. - `elasticsearchexporter`: Revert TSDB array dimension workaround for metrics OTel mode ([#​35291](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35291)) Remove the workaround to stringify array dimensions as the limitation has been lifted in Elasticsearch v8.16.0. - `receiver/statsd`: Add support for aggregating on Host/IP. ([#​23809](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/23809)) - `opampsupervisor`: Skip executing the collector if no config is provided ([#​33680](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33680)) - `googlecloudmonitoringreceiver`: Move receiver's stability to alpha. ([#​33762](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33762)) - `hostmetricsreceiver`: Add ability to mute all errors (mainly due to access rights) coming from process scraper of the hostmetricsreceiver ([#​20435](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/20435)) - `kubeletstats`: Introduce feature gate for deprecation of container.cpu.utilization, k8s.pod.cpu.utilization and k8s.node.cpu.utilization metrics ([#​35139](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35139)) - `opampsupervisor`: Make supervisor runnable as a Windows Service. ([#​34774](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34774)) - `opampsupervisor`: Add config option for setting the timeout for the initial bootstrap information retrieval from the agent ([#​34996](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34996)) - `pkg/ottl`: Add InsertXML Converter ([#​35436](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35436)) - `pkg/ottl`: Add GetXML Converter ([#​35462](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35462)) - `pkg/ottl`: Add ToKeyValueString Converter ([#​35334](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35334)) - `pkg/ottl`: Add RemoveXML Converter ([#​35301](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35301)) - `geoipprocessor`: No longer return an error when geo metadata is not found by a provider. ([#​35047](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35047)) - `sqlserverreceiver`: Add computer name resource attribute to relevant metrics ([#​35040](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35040)) - `windowseventlogreceiver`: Add 'suppress_rendering_info' option. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) When this flag is enabled, the receiver will not attempt to resolve rendering info. This can improve performance but comes at a cost of losing some details in the event log. - `windowseventlogreceiver`: Move artificial "remote_server" field to 'attributes\["server.address"]'. ([#​34720](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34720)) ##### 🧰 Bug fixes 🧰 - `webhookeventreceiver`: Fixed a bug where request bodies containing newline characters caused the results to split into multiple log entries ([#​35028](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35028)) - `opampsupervisor`: Only use TLS config when connecting to OpAMP server if using `wss` or `https` protocols. ([#​35283](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35283)) - `metricsgenerationprocessor`: Allow metric calculations to be done on sum metrics ([#​35428](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35428)) - `sqlqueryreceiver`: Fix reprocessing of logs when tracking_column type is timestamp ([#​35194](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35194)) - `windowseventlogreceiver`: While collecting from a remote windows host, the stanza operator will no longer log "subscription handle is already open" constantly during successful collection. ([#​35520](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35520)) - `windowseventlogreceiver`: If collecting from a remote host, the receiver will stop collecting if the host restarts. This change resubscribes when the host restarts. ([#​35175](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35175)) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/antchfx/xmlquery](https://redirect.github.com/antchfx/xmlquery) | `v1.4.1` -> `v1.4.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fantchfx%2fxmlquery/v1.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fantchfx%2fxmlquery/v1.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fantchfx%2fxmlquery/v1.4.1/v1.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fantchfx%2fxmlquery/v1.4.1/v1.4.2?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>antchfx/xmlquery (github.com/antchfx/xmlquery)</summary> ### [`v1.4.2`](https://redirect.github.com/antchfx/xmlquery/releases/tag/v1.4.2) [Compare Source](https://redirect.github.com/antchfx/xmlquery/compare/v1.4.1...v1.4.2) update dep package `github.com/antchfx/xpath` from v1.3.1 to v1.3.2 https://github.com/antchfx/xpath/releases/tag/v1.3.2 </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…8.0 (#35709) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://redirect.github.com/Azure/azure-sdk-for-go) | `v1.7.0` -> `v1.8.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazidentity/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazidentity/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazidentity/v1.7.0/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazidentity/v1.7.0/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### 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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
Fixes #35631 No changelog since this does not affect anyone outside this repo. Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description This error is harmless and happens regularly when `delete_after_read` is set. This is because we acquire the lock right at the start of the `ReadToEnd` function and then defer the unlock, but that function also performs the delete. So, by the time it returns and the defer runs the file descriptor is no longer valid. <!--Describe what testing was performed and which tests were added.--> #### Testing Tested manually on a laptop running MacOS. When using `acquire_fs_locks` in conjunction with `delete_after_read` I observe this error in the logs *before applying this change*: ``` 2024-10-08T14:30:23.626-0700 error reader/reader_unix.go:28 Failed to unlock {"kind": "receiver", "name": "filelog", "data_type": "logs", "component": "fileconsumer", "path": "<redacted>", "error": "bad file descriptor"} github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza/fileconsumer/internal/reader.(*Reader).unlockFile github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza@v0.111.0/fileconsumer/internal/reader/reader_unix.go:28 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza/fileconsumer/internal/reader.(*Reader).ReadToEnd github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza@v0.111.0/fileconsumer/internal/reader/reader.go:126 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza/fileconsumer.(*Manager).consume.func1 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza@v0.111.0/fileconsumer/file.go:160 ``` Performing the same test with this changed applied eliminates the error. --------- Co-authored-by: Bogdan Drutu <bogdandrutu@gmail.com>
…f manual initialization (#35509) **Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> Similar to #35452 but for the `elasticsearch` receiver. **Link to tracking Issue:** <Issue number if applicable> #35457 **Testing:** <Describe what testing was performed and which tests were added.> **Documentation:** <Describe the documentation added.>
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/jaegertracing/jaeger](https://redirect.github.com/jaegertracing/jaeger) | `v1.61.0` -> `v1.62.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fjaegertracing%2fjaeger/v1.62.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fjaegertracing%2fjaeger/v1.62.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fjaegertracing%2fjaeger/v1.61.0/v1.62.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fjaegertracing%2fjaeger/v1.61.0/v1.62.0?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>jaegertracing/jaeger (github.com/jaegertracing/jaeger)</summary> ### [`v1.62.0`](https://redirect.github.com/jaegertracing/jaeger/releases/tag/v1.62.0): / v2.0.0-rc2 [Compare Source](https://redirect.github.com/jaegertracing/jaeger/compare/v1.61.0...v1.62.0) ##### Backend Changes ##### ⛔ Breaking Changes - \[query] change http and tls server configurations to use otel configurations ([@​mahadzaryab1](https://redirect.github.com/mahadzaryab1) in [#​6023](https://redirect.github.com/jaegertracing/jaeger/pull/6023)) - \[fix]\[spm]: change default metrics namespace to match new default in spanmetricsconnector ([@​mahadzaryab1](https://redirect.github.com/mahadzaryab1) in [#​6007](https://redirect.github.com/jaegertracing/jaeger/pull/6007)) ##### 🐞 Bug fixes, Minor Improvements - \[grpc storage]: propagate tenant to grpc backend ([@​frzifus](https://redirect.github.com/frzifus) in [#​6030](https://redirect.github.com/jaegertracing/jaeger/pull/6030)) - \[feat] deduplicate spans based on their hashcode ([@​cdanis](https://redirect.github.com/cdanis) in [#​6009](https://redirect.github.com/jaegertracing/jaeger/pull/6009)) ##### 🚧 Experimental Features - \[jaeger-v2] consolidate v1 and v2 configurations for grpc storage ([@​mahadzaryab1](https://redirect.github.com/mahadzaryab1) in [#​6042](https://redirect.github.com/jaegertracing/jaeger/pull/6042)) - \[jaeger-v2] use environment variables in kafka config ([@​mahadzaryab1](https://redirect.github.com/mahadzaryab1) in [#​6028](https://redirect.github.com/jaegertracing/jaeger/pull/6028)) - \[jaeger-v2] align cassandra storage config with otel ([@​mahadzaryab1](https://redirect.github.com/mahadzaryab1) in [#​5949](https://redirect.github.com/jaegertracing/jaeger/pull/5949)) - \[jaeger-v2] refactor configuration for query service ([@​mahadzaryab1](https://redirect.github.com/mahadzaryab1) in [#​5998](https://redirect.github.com/jaegertracing/jaeger/pull/5998)) - \[v2] add temporary expvar extension ([@​yurishkuro](https://redirect.github.com/yurishkuro) in [#​5986](https://redirect.github.com/jaegertracing/jaeger/pull/5986)) ##### 👷 CI Improvements - \[ci] disable fail fast behaviour for ci workflows ([@​mahadzaryab1](https://redirect.github.com/mahadzaryab1) in [#​6052](https://redirect.github.com/jaegertracing/jaeger/pull/6052)) - Testifylint: enable go-require ([@​mmorel-35](https://redirect.github.com/mmorel-35) in [#​5983](https://redirect.github.com/jaegertracing/jaeger/pull/5983)) - Fix regex for publishing v2 image ([@​yurishkuro](https://redirect.github.com/yurishkuro) in [#​5988](https://redirect.github.com/jaegertracing/jaeger/pull/5988)) ##### 📊 UI Changes ##### 🐞 Bug fixes, Minor Improvements - Support uploads of .jsonl files ([@​Saumya40-codes](https://redirect.github.com/Saumya40-codes) in [#​2461](https://redirect.github.com/jaegertracing/jaeger-ui/pull/2461)) </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://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Bogdan Drutu <bogdandrutu@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )