forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Merge main staging #5252
Merged
Merged
Merge main staging #5252
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
preparation for release --------- Signed-off-by: Alex Boten <aboten@lightstep.com>
The following commands were run to prepare this release: - make chlog-update VERSION=v0.92.0 - sed -i.bak s/0.91.0/0.92.0/g versions.yaml - make multimod-prerelease - make multimod-sync
…3.6.2 (open-telemetry#30376) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/Azure/azure-event-hubs-go/v3](https://togithub.com/Azure/azure-event-hubs-go) | `v3.6.1` -> `v3.6.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAzure%2fazure-event-hubs-go%2fv3/v3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAzure%2fazure-event-hubs-go%2fv3/v3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAzure%2fazure-event-hubs-go%2fv3/v3.6.1/v3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAzure%2fazure-event-hubs-go%2fv3/v3.6.1/v3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>Azure/azure-event-hubs-go (github.com/Azure/azure-event-hubs-go/v3)</summary> ### [`v3.6.2`](https://togithub.com/Azure/azure-event-hubs-go/blob/HEAD/changelog.md#v362) [Compare Source](https://togithub.com/Azure/azure-event-hubs-go/compare/v3.6.1...v3.6.2) - Update dependencies. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
**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.--> From testing I found out that golang's `replace` directive didn't work properly when using an absolute path with the `../` included. Using a relative path or an absolute path (without `../` in the middle) resolves the issue. The simple and most clear solution is to use a true absolute path, so I've used `dirname` with the repo's root dir to determine the parent dir. **Link to tracking Issue:** <Issue number if applicable> Fixes open-telemetry#30330 **Testing:** <Describe what testing was performed and which tests were added.> Commands in bug description are all working.
…ned (open-telemetry#30364) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/facebook/time](https://togithub.com/facebook/time) | require | digest | `bbeecec` -> `d1456d1` | --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…ry#29681) **Description:** Implementing robust security measures is essential for any tracing ingestion service and infrastructure. This adds TLS/mTLS support to telemetrygen traces so that it can be used to test the security implementation. To illustrate the usage, a new example, `secure-tracing` is added to examples collection. **Link to tracking Issue:** <Issue number if applicable> **Testing:** Tested with the `secure-tracing` example. **Documentation:** - telemetrygen README has been updated with a link to secure-tracing. - secure-tracing README contains setup of a testing environment and test script via telemetrygen
open-telemetry#30236) Fixes open-telemetry#30235 --------- Co-authored-by: Alex Boten <aboten@lightstep.com>
Move off deprecated `ReportComponentStatus` to `ReportStatus`. See open-telemetry/opentelemetry-collector#9148 for rationale.
…AzureMonitorExporter (open-telemetry#29684) **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.--> This pull request addresses an issue in the Azure Monitor exporter where span attributes with double and int values were incorrectly added to the `measurements` field instead of the `properties` field in the Application Insights schema. **Changes** - Modified the AzureMonitorExporter to ensure that span attributes of type double and int are correctly placed in the properties field. - Manual testing was conducted to verify that the span attributes appear correctly in the properties field. **Link to tracking Issue:** <Issue number if applicable> open-telemetry#29683 **Testing:** <Describe what testing was performed and which tests were added.> - Updated relevant tests to reflect this change and ensure correctness.
…try#30366) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/samber/lo](https://togithub.com/samber/lo) | `v1.38.1` -> `v1.39.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsamber%2flo/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsamber%2flo/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsamber%2flo/v1.38.1/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsamber%2flo/v1.38.1/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>samber/lo (github.com/samber/lo)</summary> ### [`v1.39.0`](https://togithub.com/samber/lo/releases/tag/v1.39.0) [Compare Source](https://togithub.com/samber/lo/compare/v1.38.1...v1.39.0) Adding lo.IsNil helper </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…30365) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | golang.org/x/net | `v0.19.0` -> `v0.20.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fnet/v0.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fnet/v0.19.0/v0.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.19.0/v0.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…en-telemetry#30360) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [kentaro-m/auto-assign-action](https://togithub.com/kentaro-m/auto-assign-action) | action | patch | `v1.2.5` -> `v1.2.6` | --- ### Release Notes <details> <summary>kentaro-m/auto-assign-action (kentaro-m/auto-assign-action)</summary> ### [`v1.2.6`](https://togithub.com/kentaro-m/auto-assign-action/releases/tag/v1.2.6) [Compare Source](https://togithub.com/kentaro-m/auto-assign-action/compare/v1.2.5...v1.2.6) #### Changes - fix: fix security issue ([#&open-telemetry#8203;165](https://togithub.com/kentaro-m/auto-assign-action/issues/165)) [@&open-telemetry#8203;kentaro-m](https://togithub.com/kentaro-m) - chore(deps): update dependency prettier to v3.1.1 ([#&open-telemetry#8203;163](https://togithub.com/kentaro-m/auto-assign-action/issues/163)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update actions/setup-node action to v4 ([#&open-telemetry#8203;158](https://togithub.com/kentaro-m/auto-assign-action/issues/158)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update actions/checkout action to v4 ([#&open-telemetry#8203;152](https://togithub.com/kentaro-m/auto-assign-action/issues/152)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency typescript to v5.3.3 ([#&open-telemetry#8203;162](https://togithub.com/kentaro-m/auto-assign-action/issues/162)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency typescript to v5.3.2 ([#&open-telemetry#8203;161](https://togithub.com/kentaro-m/auto-assign-action/issues/161)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency prettier to v3.1.0 ([#&open-telemetry#8203;160](https://togithub.com/kentaro-m/auto-assign-action/issues/160)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update unit test packages ([#&open-telemetry#8203;138](https://togithub.com/kentaro-m/auto-assign-action/issues/138)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency typescript to v5.2.2 ([#&open-telemetry#8203;151](https://togithub.com/kentaro-m/auto-assign-action/issues/151)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency [@&open-telemetry#8203;vercel/ncc](https://togithub.com/vercel/ncc) to v0.38.1 ([#&open-telemetry#8203;156](https://togithub.com/kentaro-m/auto-assign-action/issues/156)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency lint-staged to v13.3.0 ([#&open-telemetry#8203;150](https://togithub.com/kentaro-m/auto-assign-action/issues/150)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency [@&open-telemetry#8203;vercel/ncc](https://togithub.com/vercel/ncc) to v0.38.0 ([#&open-telemetry#8203;149](https://togithub.com/kentaro-m/auto-assign-action/issues/149)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency [@&open-telemetry#8203;octokit/webhooks-types](https://togithub.com/octokit/webhooks-types) to v7.3.1 ([#&open-telemetry#8203;143](https://togithub.com/kentaro-m/auto-assign-action/issues/143)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - fix(deps): update dependency [@&open-telemetry#8203;actions/core](https://togithub.com/actions/core) to v1.10.1 ([#&open-telemetry#8203;148](https://togithub.com/kentaro-m/auto-assign-action/issues/148)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency prettier to v3.0.3 ([#&open-telemetry#8203;147](https://togithub.com/kentaro-m/auto-assign-action/issues/147)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency node to v16.20.2 ([#&open-telemetry#8203;142](https://togithub.com/kentaro-m/auto-assign-action/issues/142)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency [@&open-telemetry#8203;octokit/webhooks-types](https://togithub.com/octokit/webhooks-types) to v7 ([#&open-telemetry#8203;135](https://togithub.com/kentaro-m/auto-assign-action/issues/135)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency prettier to v3.0.1 ([#&open-telemetry#8203;141](https://togithub.com/kentaro-m/auto-assign-action/issues/141)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency prettier to v3 ([#&open-telemetry#8203;140](https://togithub.com/kentaro-m/auto-assign-action/issues/140)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency typescript to v5.1.6 ([#&open-telemetry#8203;139](https://togithub.com/kentaro-m/auto-assign-action/issues/139)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency lint-staged to v13.2.3 ([#&open-telemetry#8203;137](https://togithub.com/kentaro-m/auto-assign-action/issues/137)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update node.js to v16.20.1 ([#&open-telemetry#8203;134](https://togithub.com/kentaro-m/auto-assign-action/issues/134)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency typescript to v5.1.3 ([#&open-telemetry#8203;132](https://togithub.com/kentaro-m/auto-assign-action/issues/132)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update node.js to v16.20.0 ([#&open-telemetry#8203;126](https://togithub.com/kentaro-m/auto-assign-action/issues/126)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency ts-jest to v29.1.0 ([#&open-telemetry#8203;130](https://togithub.com/kentaro-m/auto-assign-action/issues/130)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency [@&open-telemetry#8203;octokit/webhooks-types](https://togithub.com/octokit/webhooks-types) to v6.11.0 ([#&open-telemetry#8203;129](https://togithub.com/kentaro-m/auto-assign-action/issues/129)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency prettier to v2.8.8 ([#&open-telemetry#8203;131](https://togithub.com/kentaro-m/auto-assign-action/issues/131)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency lint-staged to v13.2.2 ([#&open-telemetry#8203;127](https://togithub.com/kentaro-m/auto-assign-action/issues/127)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency typescript to v5.0.4 ([#&open-telemetry#8203;128](https://togithub.com/kentaro-m/auto-assign-action/issues/128)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency typescript to v5.0.3 ([#&open-telemetry#8203;125](https://togithub.com/kentaro-m/auto-assign-action/issues/125)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency prettier to v2.8.7 ([#&open-telemetry#8203;123](https://togithub.com/kentaro-m/auto-assign-action/issues/123)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency typescript to v5 ([#&open-telemetry#8203;122](https://togithub.com/kentaro-m/auto-assign-action/issues/122)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - fix(deps): update dependency js-yaml to v3.14.1 ([#&open-telemetry#8203;121](https://togithub.com/kentaro-m/auto-assign-action/issues/121)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - fix(deps): update dependency [@&open-telemetry#8203;actions/github](https://togithub.com/actions/github) to v5.1.1 ([#&open-telemetry#8203;120](https://togithub.com/kentaro-m/auto-assign-action/issues/120)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - fix(deps): update dependency [@&open-telemetry#8203;actions/core](https://togithub.com/actions/core) to v1.10.0 ([#&open-telemetry#8203;119](https://togithub.com/kentaro-m/auto-assign-action/issues/119)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update unit test packages to v29.5.0 ([#&open-telemetry#8203;118](https://togithub.com/kentaro-m/auto-assign-action/issues/118)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) - chore(deps): update dependency lint-staged to v13.2.0 ([#&open-telemetry#8203;117](https://togithub.com/kentaro-m/auto-assign-action/issues/117)) [@&open-telemetry#8203;renovate](https://togithub.com/renovate) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…ry#30367) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | golang.org/x/oauth2 | `v0.15.0` -> `v0.16.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2foauth2/v0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2foauth2/v0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2foauth2/v0.15.0/v0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2foauth2/v0.15.0/v0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…30368) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | golang.org/x/sys | `v0.15.0` -> `v0.16.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsys/v0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsys/v0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsys/v0.15.0/v0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsys/v0.15.0/v0.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…metry#30369) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [google.golang.org/api](https://togithub.com/googleapis/google-api-go-client) | `v0.154.0` -> `v0.155.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fapi/v0.155.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fapi/v0.155.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fapi/v0.154.0/v0.155.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fapi/v0.154.0/v0.155.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>googleapis/google-api-go-client (google.golang.org/api)</summary> ### [`v0.155.0`](https://togithub.com/googleapis/google-api-go-client/releases/tag/v0.155.0) [Compare Source](https://togithub.com/googleapis/google-api-go-client/compare/v0.154.0...v0.155.0) ##### Features - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2302](https://togithub.com/googleapis/google-api-go-client/issues/2302)) ([e2d35d5](https://togithub.com/googleapis/google-api-go-client/commit/e2d35d5701b1b82c2ec34a7a5ba3eb65a477e702)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2306](https://togithub.com/googleapis/google-api-go-client/issues/2306)) ([101074c](https://togithub.com/googleapis/google-api-go-client/commit/101074ca89de99afa5135f3cff6ba41b3a8bce05)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2307](https://togithub.com/googleapis/google-api-go-client/issues/2307)) ([96c0dea](https://togithub.com/googleapis/google-api-go-client/commit/96c0dea3474d75a6768acb87169ef8cae5a6db22)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2308](https://togithub.com/googleapis/google-api-go-client/issues/2308)) ([8c26aa7](https://togithub.com/googleapis/google-api-go-client/commit/8c26aa790106b1015999bcd62895449189d8bf3b)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2309](https://togithub.com/googleapis/google-api-go-client/issues/2309)) ([a9a45c4](https://togithub.com/googleapis/google-api-go-client/commit/a9a45c4aab9082ac49164c3d548950f79a40092f)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2312](https://togithub.com/googleapis/google-api-go-client/issues/2312)) ([bb522ac](https://togithub.com/googleapis/google-api-go-client/commit/bb522ac7eda7a91288d78459c99d1f6f8bd90c0c)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2316](https://togithub.com/googleapis/google-api-go-client/issues/2316)) ([f01739e](https://togithub.com/googleapis/google-api-go-client/commit/f01739eb94574c1dd703e3c6782a538340bfb6a8)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2317](https://togithub.com/googleapis/google-api-go-client/issues/2317)) ([16c2b92](https://togithub.com/googleapis/google-api-go-client/commit/16c2b92b24efd86e4da028dc6ca225c5e2cf9a89)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2318](https://togithub.com/googleapis/google-api-go-client/issues/2318)) ([78596d4](https://togithub.com/googleapis/google-api-go-client/commit/78596d4ffbbf6091e6eac5a1a79ab37ad5faa24a)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2319](https://togithub.com/googleapis/google-api-go-client/issues/2319)) ([6b9df05](https://togithub.com/googleapis/google-api-go-client/commit/6b9df050e65defb714daaf97202a38a58e88e6d1)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2320](https://togithub.com/googleapis/google-api-go-client/issues/2320)) ([96bbfbe](https://togithub.com/googleapis/google-api-go-client/commit/96bbfbebadf650069719cba8359b80bac6107372)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2322](https://togithub.com/googleapis/google-api-go-client/issues/2322)) ([1102aec](https://togithub.com/googleapis/google-api-go-client/commit/1102aec90dfac7a31b13ae1a545dbdb6d78a1410)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2324](https://togithub.com/googleapis/google-api-go-client/issues/2324)) ([cc0275b](https://togithub.com/googleapis/google-api-go-client/commit/cc0275b84be03d3c3269c0de9dc2a19a70c26218)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2327](https://togithub.com/googleapis/google-api-go-client/issues/2327)) ([aa81823](https://togithub.com/googleapis/google-api-go-client/commit/aa81823a238dafeeba5a6bca6989ba63d4bccba7)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2328](https://togithub.com/googleapis/google-api-go-client/issues/2328)) ([9502f9c](https://togithub.com/googleapis/google-api-go-client/commit/9502f9cd6533c407ab46a32b044db0df2e5df6ca)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2330](https://togithub.com/googleapis/google-api-go-client/issues/2330)) ([03de26a](https://togithub.com/googleapis/google-api-go-client/commit/03de26a7fd456962f4275a1adcf78de9665158bd)) - **all:** Auto-regenerate discovery clients ([#&open-telemetry#8203;2331](https://togithub.com/googleapis/google-api-go-client/issues/2331)) ([858fb57](https://togithub.com/googleapis/google-api-go-client/commit/858fb5799f91dcb4b9d5b6949f3b22a1618c2071)) - **option/internaloption:** Add WithDefaultEndpointTemplate ([#&open-telemetry#8203;2313](https://togithub.com/googleapis/google-api-go-client/issues/2313)) ([9e6e0c7](https://togithub.com/googleapis/google-api-go-client/commit/9e6e0c7c72dfa0a1505c14ff62119b7534f4d312)), refs [#&open-telemetry#8203;2264](https://togithub.com/googleapis/google-api-go-client/issues/2264) - **transport:** Add support for API keys for gprc ([#&open-telemetry#8203;2326](https://togithub.com/googleapis/google-api-go-client/issues/2326)) ([9dbfb73](https://togithub.com/googleapis/google-api-go-client/commit/9dbfb73d31f050b998cf111b09a084c07583bcb3)), refs [#&open-telemetry#8203;485](https://togithub.com/googleapis/google-api-go-client/issues/485) ##### Bug Fixes - **transport:** Fix memory leak in grpc.Dial ([#&open-telemetry#8203;2329](https://togithub.com/googleapis/google-api-go-client/issues/2329)) ([240f763](https://togithub.com/googleapis/google-api-go-client/commit/240f7630086da518b03dcc792dbff13d571fbe94)), refs [#&open-telemetry#8203;2321](https://togithub.com/googleapis/google-api-go-client/issues/2321) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…g-go-sdk version (open-telemetry#30243) **Description:** Replace deprecated UpdateStsToken, AccessKeyID, and AccessKeySecret fields in ProducerConfig with CredentialsProvider **Link to tracking Issue:** open-telemetry#26456
**Description:** Updates all deprecated confignet function usage to the non-deprecated functions. Needed to unblock open-telemetry/opentelemetry-collector#9258
**Description:** Change k8sattributes processor to be in line with lifecycle expectations of a component.
…#30388) All processors have moved to use generated tests (open-telemetry#30387 is the last one), we can move to deleting this test now.
…udwatchlogs exporter (open-telemetry#30316) **Description:** Include the instrumentation scope in the log records exported by the cloudwatchlogs expoter **Link to tracking Issue:** open-telemetry#29884 **Testing:** Unit tests were added. --------- Signed-off-by: Raphael Silva <rapphil@gmail.com> Co-authored-by: bryan-aguilar <46550959+bryan-aguilar@users.noreply.github.com>
…emetry#30172) **Description:** Adds some documentation around test targets to a new (to this project) `docs` folder, similar to what we have in `opentelemetry-collector` (upstream) **Link to tracking Issue:** [`30166`](open-telemetry#30166) **Testing:** N/A **Documentation:** Adds documentation to `docs` folder but not linked to `CONTRIBUTORS.md` until we get some discussion rolling about how to potentially reorganize such --------- Co-authored-by: bryan-aguilar <46550959+bryan-aguilar@users.noreply.github.com>
…0018) **Description:** Filelog senders in testbed have incorrect parsing configurations, leading to lots of parse errors: ``` 2023-12-16T18:19:53.515+0100 error helper/transformer.go:98 Failed to process entry {"kind": "receiver", "name": "filelog", "data_type": "logs", "operator_id": "regex_parser", "operator_type": "regex_parser", "error": {"description": "time parser: log entry does not have the expected parse_from field", "suggestion": "ensure that all entries forwarded to this parser contain the parse_from field", "details": {"parse_from": "body.time"}}, "action": "send", "entry": {"observed_timestamp":"2023-12-16T18:19:53.515753831+01:00","timestamp":"0001-01-01T00:00:00Z","body":"2023-12-16 INFO3 Load Generator Counter #0 batch_index=batch_1 item_index=item_1 a=test b=5 c=3 d=true","attributes":{"log.file.name":"perf-logs.log2985945617","msg":"Load Generator Counter #0 batch_index=batch_1 item_index=item_1 a=test b=5 c=3 d=true","sev":"INFO3","time":"2023-12-16"},"severity":0,"scope_name":""}} ``` This change fixes the errors. Note that there's going to be a change in benchmark results, as right now the error handling methods figure prominently in the benchmark. While it's not invalid to benchmark these, in general I think we'd prefer to check the happy path instead. **Testing:** Reran the testbed tests, saw no errors in agent logs.
…opy configuration README (open-telemetry#29919) **Documentation:** <Describe the documentation added.> open-telemetry#27879 recently added a new configuration option to the `servicegraph` components called `metrics_flush_interval`. I noticed this wasn't documented for either component, and the `connector/servicegraph` README doesn't include a configuration section. Since the connector is just a wrapper of the processor at this point, I cleaned up the processor's configuration section and copied it to the connector, adding an entry for the new `metrics_flush_interval` option.
…open-telemetry#29893) **Description:** These changes add back names to metrics generated by the `perfTestDataProvider` that were mistakenly removed with open-telemetry@063a71a. They also include no longer skipping a carbon test with failures [caused by empty names](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/ed85d1416292601f78b8310601ec556dd6df0a6c/exporter/carbonexporter/metricdata_to_plaintext.go#L84). Co-authored-by: Andrzej Stencel <astencel@sumologic.com>
…en-telemetry#30804) **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.--> This enables the `goleak` check on all tests in this package, to ensure the processor isn't leaking goroutines. The only update here is in testing, as one test was missing a necessary `shutdown` call. **Link to tracking Issue:** <Issue number if applicable> open-telemetry#30438 **Testing:** <Describe what testing was performed and which tests were added.> All tests are passing, including added `goleak` check.
…try#30794) **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.--> Correct a typo in a log message.
**Description:** Follow up to open-telemetry/opentelemetry-collector/pull/8622 **Link to tracking Issue:** First step of open-telemetry#30702
_tracking issue: https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/30705_ Adds basic component structure without any actual functionality as advised by `CONTRIBUTING.md`.
… name (open-telemetry#29328) **Description:** Added best effort support for detecting Azure Kubernetes Service cluster name: `k8s.cluster.name`. The cluster name can be extracted from the cluster's "resource group name" which is retrieved using existing functionality. The `parseClusterName` function has comments explaining the limitations. **Link to tracking Issue:** open-telemetry#26794 **Testing:** I added unit tests for each scenario, and have tested against live AKS clusters that fit each scenario. I am happy to spin these up if anyone has any questions. Added `k8s.cluster.name` to the list of AKS resource attributes.
There are a few places where we probably don't need the logging exporter anymore. Updating the local builds to only include the debug exporter instead of both the logging and the debug exporter. --------- Signed-off-by: Alex Boten <aboten@lightstep.com>
…ry#30496) **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.--> `NewSupervisor` starts two goroutines, one for the health check ticker and another running the agent process. Each was causing a leak. To resolve the health check ticker goroutine leak a `Stop` call has been added to it during shutdown. To resolve the agent process leak a wait group has been added (to make sure shutdown blocks until the agent process is completely shutdown), and a `break` statement has been changed to `return`. The `break` statement was only breaking out of the `select` statement, but since it's nested within a `for` loop, the loop just kept going instead of completing successfully. This also enables `goleak` checks for `cmd/opampsupervisor` and `cmd/opampsupervisor/supervisor` packages **Link to tracking Issue:** <Issue number if applicable> open-telemetry#30438 **Testing:** <Describe what testing was performed and which tests were added.> Existing tests and new `goleak` checks are passing.
…try#30457) **Description:** This enables `goleak` checks for all packages whose only failure is due to [a known issue](census-instrumentation/opencensus-go#1191) within the `opencensus-go` package. I believe it's safe to ignore for two main reasons: 1. All references that I'm aware of are indirect, the contrib repo isn't directly using the stat's worker functionality. The goroutine is started in the dependency's `init()` so it's not something that we're causing. 2. We're actively moving away from the opencensus dependency, and hope to remove it entirely soon. Relevant issue: open-telemetry/opentelemetry-collector#816. Once this work is complete the ignore will no longer be necessary and we can safely remove it. The only changes in this PR are test related. The same file is being copied into different packages, and then we run `make gotidy`. No functionality has been changed. **Link to tracking Issue:** open-telemetry#30438
**Description:** Add ProtoBuf output format to the AWS S3 exporter **Link to tracking Issue:** open-telemetry#30681 **Testing:** Additional unit tests have been added for the new format type and I've also exported data to an S3 bucket in Protobuf format and read it back to confirm that it's working end to end. **Documentation:** Added details of the new marshaler format to the README.md --------- Co-authored-by: Antoine Toulme <antoine@toulme.name>
…y released (open-telemetry#30838) Follow up to open-telemetry#30832, all of these components include `contrib` in their supported distributions list, but they are not actually currently included in [releases of `contrib`.](https://github.com/open-telemetry/opentelemetry-collector-releases/blob/main/distributions/otelcol-contrib/manifest.yaml) I believe since they're all labelled as `development` stability, they should not be included yet, so I'll remove from `metadata.yaml` instead of actually adding them to the release. Please let me know if I'm overstepping. From my understanding of [contributing a new component](https://github.com/open-telemetry/opentelemetry-collector-releases/blob/main/distributions/otelcol-contrib/manifest.yaml), we shouldn't include a distribution until it's actually being released. Happy to discuss if I'm misunderstanding something here.
**Description:** Update otel core and rename HTTPServerSettings -> HTTPServerConfig, HTTPClientSettings -> HTTPClientConfig --------- Signed-off-by: Antoine Toulme <antoine@lunar-ocean.com>
…elemetry#30850) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) | `v1.50.4` -> `v1.50.6` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go/v1.50.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go/v1.50.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go/v1.50.4/v1.50.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go/v1.50.4/v1.50.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>aws/aws-sdk-go (github.com/aws/aws-sdk-go)</summary> ### [`v1.50.6`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1506-2024-01-29) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.5...v1.50.6) \=== ##### Service Client Updates - `service/autoscaling`: Updates service API and documentation - EC2 Auto Scaling customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type. - `service/comprehend`: Updates service documentation - `service/ec2`: Updates service API and documentation - EC2 Fleet customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type. - `service/mwaa`: Updates service API and documentation - `service/rds`: Updates service API, documentation, waiters, paginators, and examples - Introduced support for the InsufficientDBInstanceCapacityFault error in the RDS RestoreDBClusterFromSnapshot and RestoreDBClusterToPointInTime API methods. This provides enhanced error handling, ensuring a more robust experience. - `service/snowball`: Updates service documentation - Modified description of createaddress to include direction to add path when providing a JSON file. ### [`v1.50.5`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1505-2024-01-26) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.4...v1.50.5) \=== ##### Service Client Updates - `service/connect`: Updates service API - `service/inspector2`: Updates service API and documentation - `service/sagemaker`: Updates service API and documentation - Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
**Description:** <Describe what has changed.> Replace the biased-language term `blacklist` for the unbiased `blocklist` counterpart.
… v2.19.1 (open-telemetry#30854) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/grpc-ecosystem/grpc-gateway/v2](https://togithub.com/grpc-ecosystem/grpc-gateway) | `v2.19.0` -> `v2.19.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0/v2.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.19.0/v2.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>grpc-ecosystem/grpc-gateway (github.com/grpc-ecosystem/grpc-gateway/v2)</summary> ### [`v2.19.1`](https://togithub.com/grpc-ecosystem/grpc-gateway/releases/tag/v2.19.1) [Compare Source](https://togithub.com/grpc-ecosystem/grpc-gateway/compare/v2.19.0...v2.19.1) #### What's Changed - (fix) remove internal comments from generated protoComments by [@&open-telemetry#8203;kiambogo](https://togithub.com/kiambogo) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3864](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3864) - fix(protoc-gen-openapiv2): exclude from query params oneof fields in the same group as the one used in the body by [@&open-telemetry#8203;ovargas](https://togithub.com/ovargas) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3862](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3862) - If no subfields are set in a map, add the field to fieldMask by [@&open-telemetry#8203;sbansal7](https://togithub.com/sbansal7) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3879](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3879) - Parse request body when using X-HTTP-Method-Override header by [@&open-telemetry#8203;eyasy1217](https://togithub.com/eyasy1217) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3918](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3918) - fix path param override by query params by [@&open-telemetry#8203;ljmsc](https://togithub.com/ljmsc) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3946](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3946) #### New Contributors - [@&open-telemetry#8203;kiambogo](https://togithub.com/kiambogo) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3864](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3864) - [@&open-telemetry#8203;ovargas](https://togithub.com/ovargas) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3862](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3862) - [@&open-telemetry#8203;sbansal7](https://togithub.com/sbansal7) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3879](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3879) - [@&open-telemetry#8203;eyasy1217](https://togithub.com/eyasy1217) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/3918](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/3918) **Full Changelog**: grpc-ecosystem/grpc-gateway@v2.19.0...v2.19.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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- 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.853 (open-telemetry#30861) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://togithub.com/tencentcloud/tencentcloud-sdk-go) | `v1.0.847` -> `v1.0.853` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.853?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.853?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.847/v1.0.853?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.847/v1.0.853?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>tencentcloud/tencentcloud-sdk-go (github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common)</summary> ### [`v1.0.853`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10853) [Compare Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.852...v1.0.853) #### 云数据库 MySQL(cdb) 版本:2017-03-20 ##### 第 152 次发布 发布时间:2024-01-30 01:08:20 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeInstanceAlarmEvents](https://cloud.tencent.com/document/api/236/103572) #### 物联网智能视频服务(iotvideo) 版本:2021-11-25 ##### 第 26 次发布 发布时间:2024-01-30 01:16:52 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribeDevicePackages](https://cloud.tencent.com/document/api/1131/95522) - 新增入参:ChannelId 修改数据结构: - [PackageInfo](https://cloud.tencent.com/document/api/1131/76635#PackageInfo) - 新增成员:ChannelId #### 物联网智能视频服务(iotvideo) 版本:2020-12-15 #### 物联网智能视频服务(iotvideo) 版本:2019-11-26 #### 边缘安全加速平台(teo) 版本:2022-09-01 ##### 第 73 次发布 发布时间:2024-01-30 01:24:01 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribeApplicationProxies](https://cloud.tencent.com/document/api/1552/80690) - 新增入参:ZoneId #### 边缘安全加速平台(teo) 版本:2022-01-06 #### 数据开发治理平台 WeData(wedata) 版本:2021-08-20 ##### 第 74 次发布 发布时间:2024-01-30 01:28:12 本次发布包含了以下内容: 改善已有的文档。 <font color="#dd0000">**删除接口**:</font> - AcquireLock - AnalyzeDependentTasks - BatchCreateTaskVersionAsync - BatchCreateVirtualTaskDs - BatchDeleteTasksDsAsync - BatchRunTasksDs - BatchUpdateTasksDs - CheckCustomFunctionPremise - CheckTaskNameExistDs - CheckTaskPriorityDs - ClearRecycleTask - CommitWorkflow - CompareDsTaskVersionInfo - CopyTaskDs - CopyWorkflowDs - CreateBrowsingHistory - CreateFileVersion - CreateLink - CreatePath - CreateProjectParamDs - CreateResourceDirectory - CreateScriptsImportTasksDs - CreateTaskDs - CreateTaskFolder - CreateTaskInParamDs - CreateTaskOutParamDs - CreateTaskOutputRegistries - CreateTaskOutputRegistry - CreateTaskParamDs - CreateWorkflowDs - DeleteBatchWorkflowDs - DeleteDsEvent - DeleteDsEventListener - DeleteDsEventPublisher - DeleteEventListenerByTaskId - DeleteLink - DeleteProjectParamVersionDs - DeleteRecordList - DeleteRecycleTask - DeleteResourcePath - DeleteTaskFolder - DeleteTaskInParamDs - DeleteTaskOutParamDs - DeleteTaskOutputRegistry - DescribeAllParamDs - DescribeBatchTestRun - DescribeBrowsingHistories - DescribeChildrenDs - DescribeChildrenPathTrees - DescribeCodeDetail - DescribeCodeDetailV2 - DescribeCodeSearchAuditInfo - DescribeCodeSearchAuditInfoV2 - DescribeCodeSearchCount - DescribeCodeSearchInfo - DescribeCodeSearchInfoV2 - DescribeCrontabTopNDs - DescribeCustomFunctionVersionList - DescribeDataDevelopTaskType - DescribeDataTableImportProgress - DescribeDependTasksDevDs - DescribeDependencyTasksForProjectClone - DescribeDependencyWorkflowForProjectClone - DescribeDevelopmentSpaceSupportType - DescribeDsEvent - DescribeDsEventDetail - DescribeDsEventListener - DescribeDsEventListenerList - DescribeDsEventPublisher - DescribeDsEventPublisherList - DescribeDsKettleServerFolderTree - DescribeDsLatestTaskVersionInfo - DescribeDsNotSubmitTasksAndCanRunByWorkflow - DescribeDsTaskVersionInfo - DescribeDsTaskVersionList - DescribeEtlTaskType - DescribeEventListenerByTaskId - DescribeEventListenerTask - DescribeExecutionLog - DescribeFatherDatasourceInfoDs - DescribeFileVersions - DescribeGlobalWorkflowDs - DescribeImportableOfflineTask - DescribeInfoTransByTypeIdDs - DescribeLock - DescribeNewSqlTaskResult - DescribeParentTask - DescribePathTrees - DescribeProdWorkflowCanvasInfoDs - DescribeProjectParamDs - DescribeProjectParamDsPage - DescribeProjectParamVersionDs - DescribeProjectParamVersionInfoDs - DescribeRecordList - DescribeRecycleTaskDetail - DescribeRecycleTaskList - DescribeScriptsImportTaskType - DescribeSqlTaskResult - DescribeTaskBindVirtualTask - DescribeTaskDetailDs - DescribeTaskInParamDs - DescribeTaskLatestRunTime - DescribeTaskListByConditionDs - DescribeTaskOutParamDs - DescribeTaskOutputRegistries - DescribeTaskParamDs - DescribeTaskParentRunTime - DescribeTaskTypeByScriptType - DescribeTasksForProjectClone - DescribeTestRun - DescribeToken - DescribeWorkflowByFordIds - DescribeWorkflowCanvasInfoDs - DescribeWorkflowCanvasOpLogs - DescribeWorkflowCanvasOperators - DescribeWorkflowForProjectClone - DescribeWorkflowParamDs - DescribeWorkflowSchedulerInfoDs - DescribeWorkflowTasksForProjectClone - DownloadNewSqlResult - DownloadSqlResult - ExportDsEvent - ExportFiles - ExportProjectParamDs - ExportWorkflowXml - ExportWorkflowZip - FindDependTaskListDs - FindDependTaskListsDs - FindFuzzyTasksDs - FindTaskByRemotePath - GetAdvanceRunParams - GetBatchDetailErrorLog - GetCosToken - GetLatestAnalyseInfo - GetLatestTestRunInfo - GetPathTrees - GetResourceCosPath - GetResourcePathTree - GetRunSonListDs - GetTestRunTaskInstancesStatusInfo - HeartBeat - ImportDsEvent - ImportFiles - ImportOfflineTask - ImportProjectParamDs - ImportTableData - ImportWorkflowXml - ImportWorkflowZip - JudgeResourceFile - JudgeTaskListenEvent - KillTasksTestRun - ListBatchDetail - ListBatchJob - ModifyTaskFolder - ModifyTaskInfoDs - ModifyTaskLinksDs - ModifyTaskScriptDs - MoveFile - MoveTasksToFolder - PreviewDataTableCsv - QueryWorkflowVersion - RegisterDsEvent - RegisterDsEventListener - RegisterDsEventPublisher - ReleaseLock - RenameFile - RenameResource - RenameResourceFile - RenameResourcePath - RenameTaskDs - RenewWorkflowDs - RenewWorkflowFolderDs - RenewWorkflowOwnerDs - RenewWorkflowSchedulerInfoDs - ReplaceProjectParamVersionDs - RestoreRecycleTask - RollbackCustomFunctionVersion - SavePositionsDs - ScriptUsedByOtherTaskDs - StopAdhocTask - StopTestRun - SubmitBatchTestRun - SubmitIntegrationTask - SubmitPySparkTask - SubmitPythonTask - SubmitShellTask - SubmitTestRun - UpdateBatchTaskAdvancedSettings - UpdateBatchTaskDatasource - UpdateBatchTaskInCharge - UpdateBatchTaskParameter - UpdateBatchTaskParams - UpdateBatchTaskResourceGroup - UpdateBatchTaskSchedule - UpdateDsEvent - UpdateEventListener - UpdateTaskDs - UpdateWorkflowInfo - UploadAdvanceRunParams - UploadFilesDs - UploadResource <font color="#dd0000">**删除数据结构**:</font> - AdhocRecordInfoDto - AdhocSubTaskDto - AlarmExtVO - AlarmVO - AnalyzeDependentTask - AsyncResourceVO - AttributeItemVO - BatchCreateVirtualTaskDTO - BatchJobVO - BatchResultDs - BatchTaskOperateNew - BizParams - BrowsingHistory - CheckTaskNameExistResult - CheckTaskPriorityTaskDTO - CloneObjectDTO - CloneTaskModeInfo - CloneTaskModePageInfoInfo - CodeDetailResult - CodeMatchInfo - CodeSearchAuditDTO - CodeSearchAuditInfo - CodeSearchAuditResult - CodeSearchCountInfo - CodeSearchInfo - CodeSearchInfoPage - CodeSearchResult - CollectionEventDTO - CollectionEventListenerTaskDTO - CollectionParamDTO - Columns - CosTokenResponse - CreateTaskOutputRegistry - CsvReadDTO - CsvRow - CustomizeBusinessEntityDTO - DeleteUserFileDTO - DependencyConfigDsDTO - DependencyConfigDsDTONoRecur - DependencyConfigDsDTONoRecurV3 - DependencyStrategy - DependencyTaskDTO - DependencyWorkflowDTO - DescribeLockResp - DescribeTestRunBatchItem - DescribeWorkflowCanvasOplogRequestFilter - DsKettleServerFolderTreeNodeDto - EventDsDto - EventListenerDTO - EventListenerNewDTO - EventListenerTaskInfo - EventPublisherDTO - ExportEventDTO - ExportFile - ExportRequestInfo - ImportRequestInfo - ImportTableDTO - KillTestRunTasksResponseResult - LatestAnalyseInfoTask - LatestTestRunInfoTask - ListBatchJobPages - NewPathDTO - ParamDsRequest - ParamGetTaskInstancesStatusInfoResponseInstance - ParamGetTestRunTaskInstancesStatusInfoTask - ParamMapDsDto - ParamTaskDsRequest - ParameterInfoDsDto - ParameterVersionDsDto - Params - PathTreeNode - PathTreeNodeParams - ProjectCloneTaskInfo - ProjectCloneTaskInfoPageNew - ProjectCloneWorkflowInfo - ProjectCloneWorkflowInfoPageNew - RecycleFilePageInfo - RecycleTaskInfo - RecycleTaskPageInfo - RenameResourceDTO - RowColumn - ScriptTypeInfo - ShareStorageFileDTO - ShareStorageFileMappingDTO - SparkParameterDTO - SubCloneObjectDTO - TCHouseXTaskParameter - TableHybrisReq - TaskBaseInfo - TaskDataRegistry - TaskDataRegistryDTO - TaskDatasourceDTO - TaskDatasourceDTOPage - TaskDsDTO - TaskDsDTOLite - TaskDsDTOLiteV3 - TaskDsDTONoRecur - TaskDsDTONoRecurV3 - TaskDsDTOPage - TaskExtVO - TaskInfoWithInstance - TaskParentSchedulerDependency - TaskTypeExtParamVO - TaskTypeExtVO - TaskTypeVO - TaskVersionDsDTO - TestRunBatchItem - UpdateBatchTaskParameterDTO - UploadResourceRequestInfo - UserFileDTONew - UserFileVersionDto - VirtualTaskInfo - VirtualTaskInfoPage - WorkflowCanvasOpLogResult - WorkflowCanvasOperatorsDs - WorkflowCanvasOplog - WorkflowDsDTO - WorkflowDsDTOPage - WorkflowScheduleDtoDs - WorkflowVersionInfo ### [`v1.0.852`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10852) [Compare Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.851...v1.0.852) #### 弹性 MapReduce(emr) 版本:2019-01-03 ##### 第 58 次发布 发布时间:2024-01-29 01:13:24 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [EmrListInstance](https://cloud.tencent.com/document/api/589/33981#EmrListInstance) - 新增成员:IsDedicatedCluster - <font color="#dd0000">**修改成员**:</font>IsSupportOutsideCluster #### 云数据库 MongoDB(mongodb) 版本:2019-07-25 ##### 第 34 次发布 发布时间:2024-01-29 01:17:07 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [InstanceDetail](https://cloud.tencent.com/document/api/240/38576#InstanceDetail) - 新增成员:ZoneList #### 云数据库 MongoDB(mongodb) 版本:2018-04-08 #### 云数据库Redis(redis) 版本:2018-04-12 ##### 第 70 次发布 发布时间:2024-01-29 01:18:51 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [InstanceClusterShard](https://cloud.tencent.com/document/api/239/20022#InstanceClusterShard) - 新增成员:RunId - [InstanceSet](https://cloud.tencent.com/document/api/239/20022#InstanceSet) - 新增成员:IPv6 - [Instances](https://cloud.tencent.com/document/api/239/20022#Instances) - 新增成员:IPv6 #### SSL 证书(ssl) 版本:2019-12-05 ##### 第 53 次发布 发布时间:2024-01-29 01:19:48 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DeleteCertificate](https://cloud.tencent.com/document/api/400/41675) - 新增入参:IsCheckResource - 新增出参:TaskId #### 边缘安全加速平台(teo) 版本:2022-09-01 ##### 第 72 次发布 发布时间:2024-01-27 19:39:47 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeBillingData](https://cloud.tencent.com/document/api/1552/103562) 新增数据结构: - [BillingData](https://cloud.tencent.com/document/api/1552/80721#BillingData) - [BillingDataFilter](https://cloud.tencent.com/document/api/1552/80721#BillingDataFilter) #### 边缘安全加速平台(teo) 版本:2022-01-06 ### [`v1.0.851`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10851) [Compare Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.850...v1.0.851) ### [`v1.0.850`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10850) [Compare Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.849...v1.0.850) #### 腾讯电子签企业版(ess) 版本:2020-11-11 ##### 第 148 次发布 发布时间:2024-01-26 01:13:26 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [CreateDocument](https://cloud.tencent.com/document/api/1323/70364) - <font color="#dd0000">**修改入参**:</font>FlowId #### 腾讯电子签(基础版)(essbasic) 版本:2021-05-26 ##### 第 150 次发布 发布时间:2024-01-26 01:13:42 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [WebThemeConfig](https://cloud.tencent.com/document/api/1420/61525#WebThemeConfig) - 新增成员:AuthenticateBackground, HideAuthenticateNavigationBar, HideAuthenticateTopLogo #### 腾讯电子签(基础版)(essbasic) 版本:2020-12-22 #### 媒体处理(mps) 版本:2019-06-12 ##### 第 79 次发布 发布时间:2024-01-26 01:17:35 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [CreateSchedule](https://cloud.tencent.com/document/api/862/88061) - 新增入参:ResourceId - [ModifySchedule](https://cloud.tencent.com/document/api/862/88056) - 新增入参:ResourceId 修改数据结构: - [SchedulesInfo](https://cloud.tencent.com/document/api/862/37615#SchedulesInfo) - 新增成员:ResourceId #### 文字识别(ocr) 版本:2018-11-19 ##### 第 129 次发布 发布时间:2024-01-26 01:18:14 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [RecognizeEncryptedIDCardOCR](https://cloud.tencent.com/document/api/866/103433) 修改接口: - [MLIDPassportOCR](https://cloud.tencent.com/document/api/866/37657) - 新增入参:ImageUrl - <font color="#dd0000">**修改入参**:</font>ImageBase64 新增数据结构: - [Encryption](https://cloud.tencent.com/document/api/866/33527#Encryption) 修改数据结构: - [PassportRecognizeInfos](https://cloud.tencent.com/document/api/866/33527#PassportRecognizeInfos) - 新增成员:Signature, IssuePlace, IssuingAuthority #### 标签(tag) 版本:2018-08-13 ##### 第 14 次发布 发布时间:2024-01-26 01:20:11 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribeProjects](https://cloud.tencent.com/document/api/651/78725) - 新增入参:ProjectId, ProjectName #### 边缘安全加速平台(teo) 版本:2022-09-01 ##### 第 71 次发布 发布时间:2024-01-25 11:46:06 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [CreateL4Proxy](https://cloud.tencent.com/document/api/1552/103417) - [CreateL4ProxyRules](https://cloud.tencent.com/document/api/1552/103416) - [DeleteL4Proxy](https://cloud.tencent.com/document/api/1552/103415) - [DeleteL4ProxyRules](https://cloud.tencent.com/document/api/1552/103414) - [DescribeL4Proxy](https://cloud.tencent.com/document/api/1552/103413) - [DescribeL4ProxyRules](https://cloud.tencent.com/document/api/1552/103412) - [ModifyL4Proxy](https://cloud.tencent.com/document/api/1552/103411) - [ModifyL4ProxyRules](https://cloud.tencent.com/document/api/1552/103410) - [ModifyL4ProxyRulesStatus](https://cloud.tencent.com/document/api/1552/103409) - [ModifyL4ProxyStatus](https://cloud.tencent.com/document/api/1552/103408) 新增数据结构: - [DDosProtectionConfig](https://cloud.tencent.com/document/api/1552/80721#DDosProtectionConfig) - [L4Proxy](https://cloud.tencent.com/document/api/1552/80721#L4Proxy) - [L4ProxyRule](https://cloud.tencent.com/document/api/1552/80721#L4ProxyRule) #### 边缘安全加速平台(teo) 版本:2022-01-06 #### Web 应用防火墙(waf) 版本:2018-01-25 ##### 第 79 次发布 发布时间:2024-01-26 01:25:28 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [ModifyDomainPostAction](https://cloud.tencent.com/document/api/627/103434) #### 数据开发治理平台 WeData(wedata) 版本:2021-08-20 ##### 第 73 次发布 发布时间:2024-01-26 01:25:54 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [CheckCustomFunctionPremise](https://cloud.tencent.com/document/api/1267/103500) - [ClearRecycleTask](https://cloud.tencent.com/document/api/1267/103471) - [CommitWorkflow](https://cloud.tencent.com/document/api/1267/103470) - [CompareDsTaskVersionInfo](https://cloud.tencent.com/document/api/1267/103506) - [CopyWorkflowDs](https://cloud.tencent.com/document/api/1267/103469) - [CreateBrowsingHistory](https://cloud.tencent.com/document/api/1267/103468) - [CreateLink](https://cloud.tencent.com/document/api/1267/103467) - [CreateResourceDirectory](https://cloud.tencent.com/document/api/1267/103476) - [CreateWorkflowDs](https://cloud.tencent.com/document/api/1267/103466) - [DeleteBatchWorkflowDs](https://cloud.tencent.com/document/api/1267/103465) - [DeleteDsEvent](https://cloud.tencent.com/document/api/1267/103464) - [DeleteEventListenerByTaskId](https://cloud.tencent.com/document/api/1267/103463) - [DeleteRecordList](https://cloud.tencent.com/document/api/1267/103497) - [DeleteRecycleTask](https://cloud.tencent.com/document/api/1267/103462) - [DeleteResourcePath](https://cloud.tencent.com/document/api/1267/103475) - [DescribeAllParamDs](https://cloud.tencent.com/document/api/1267/103461) - [DescribeBatchTestRun](https://cloud.tencent.com/document/api/1267/103482) - [DescribeCustomFunctionVersionList](https://cloud.tencent.com/document/api/1267/103499) - [DescribeDataTableImportProgress](https://cloud.tencent.com/document/api/1267/103460) - [DescribeDsEventDetail](https://cloud.tencent.com/document/api/1267/103459) - [DescribeDsEventListener](https://cloud.tencent.com/document/api/1267/103487) - [DescribeDsEventListenerList](https://cloud.tencent.com/document/api/1267/103458) - [DescribeDsEventPublisher](https://cloud.tencent.com/document/api/1267/103486) - [DescribeDsEventPublisherList](https://cloud.tencent.com/document/api/1267/103457) - [DescribeDsLatestTaskVersionInfo](https://cloud.tencent.com/document/api/1267/103505) - [DescribeDsNotSubmitTasksAndCanRunByWorkflow](https://cloud.tencent.com/document/api/1267/103504) - [DescribeDsTaskVersionInfo](https://cloud.tencent.com/document/api/1267/103503) - [DescribeDsTaskVersionList](https://cloud.tencent.com/document/api/1267/103502) - [DescribeExecutionLog](https://cloud.tencent.com/document/api/1267/103496) - [DescribeFileVersions](https://cloud.tencent.com/document/api/1267/103456) - [DescribeGlobalWorkflowDs](https://cloud.tencent.com/document/api/1267/103455) - [DescribeNewSqlTaskResult](https://cloud.tencent.com/document/api/1267/103495) - [DescribeProdWorkflowCanvasInfoDs](https://cloud.tencent.com/document/api/1267/103454) - [DescribeProjectParamDs](https://cloud.tencent.com/document/api/1267/103453) - [DescribeProjectParamVersionDs](https://cloud.tencent.com/document/api/1267/103452) - [DescribeRecordList](https://cloud.tencent.com/document/api/1267/103494) - [DescribeRecycleTaskDetail](https://cloud.tencent.com/document/api/1267/103451) - [DescribeRecycleTaskList](https://cloud.tencent.com/document/api/1267/103450) - [DescribeSqlTaskResult](https://cloud.tencent.com/document/api/1267/103493) - [DescribeTaskInParamDs](https://cloud.tencent.com/document/api/1267/103449) - [DescribeTaskOutParamDs](https://cloud.tencent.com/document/api/1267/103448) - [DescribeTaskParamDs](https://cloud.tencent.com/document/api/1267/103447) - [DescribeTestRun](https://cloud.tencent.com/document/api/1267/103481) - [DescribeToken](https://cloud.tencent.com/document/api/1267/103492) - [DescribeWorkflowByFordIds](https://cloud.tencent.com/document/api/1267/103446) - [DescribeWorkflowCanvasOperators](https://cloud.tencent.com/document/api/1267/103445) - [DescribeWorkflowParamDs](https://cloud.tencent.com/document/api/1267/103444) - [DownloadNewSqlResult](https://cloud.tencent.com/document/api/1267/103491) - [DownloadSqlResult](https://cloud.tencent.com/document/api/1267/103490) - [FindTaskByRemotePath](https://cloud.tencent.com/document/api/1267/103443) - [GetLatestAnalyseInfo](https://cloud.tencent.com/document/api/1267/103442) - [GetLatestTestRunInfo](https://cloud.tencent.com/document/api/1267/103441) - [GetResourceCosPath](https://cloud.tencent.com/document/api/1267/103474) - [ImportTableData](https://cloud.tencent.com/document/api/1267/103484) - [ImportWorkflowXml](https://cloud.tencent.com/document/api/1267/103440) - [ImportWorkflowZip](https://cloud.tencent.com/document/api/1267/103439) - [JudgeResourceFile](https://cloud.tencent.com/document/api/1267/103473) - [KillTasksTestRun](https://cloud.tencent.com/document/api/1267/103485) - [PreviewDataTableCsv](https://cloud.tencent.com/document/api/1267/103438) - [QueryWorkflowVersion](https://cloud.tencent.com/document/api/1267/103437) - [RenameResourcePath](https://cloud.tencent.com/document/api/1267/103472) - [ReplaceProjectParamVersionDs](https://cloud.tencent.com/document/api/1267/103436) - [RestoreRecycleTask](https://cloud.tencent.com/document/api/1267/103435) - [RollbackCustomFunctionVersion](https://cloud.tencent.com/document/api/1267/103498) - [StopAdhocTask](https://cloud.tencent.com/document/api/1267/103489) - [StopTestRun](https://cloud.tencent.com/document/api/1267/103480) - [SubmitBatchTestRun](https://cloud.tencent.com/document/api/1267/103479) - [SubmitIntegrationTask](https://cloud.tencent.com/document/api/1267/103488) - [SubmitTestRun](https://cloud.tencent.com/document/api/1267/103478) - [UpdateWorkflowInfo](https://cloud.tencent.com/document/api/1267/103501) 修改接口: - [DeleteProjectParamDs](https://cloud.tencent.com/document/api/1267/95142) - <font color="#dd0000">**修改入参**:</font>ParamKey, ProjectId - [DeleteResource](https://cloud.tencent.com/document/api/1267/81749) - <font color="#dd0000">**修改入参**:</font>ProjectId, ResourceId - [DeleteTaskDs](https://cloud.tencent.com/document/api/1267/95141) - <font color="#dd0000">**修改入参**:</font>ProjectId 新增数据结构: - [AdhocRecordInfoDto](https://cloud.tencent.com/document/api/1267/76336#AdhocRecordInfoDto) - [AdhocSubTaskDto](https://cloud.tencent.com/document/api/1267/76336#AdhocSubTaskDto) - [BizParams](https://cloud.tencent.com/document/api/1267/76336#BizParams) - [Columns](https://cloud.tencent.com/document/api/1267/76336#Columns) - [CsvReadDTO](https://cloud.tencent.com/document/api/1267/76336#CsvReadDTO) - [CsvRow](https://cloud.tencent.com/document/api/1267/76336#CsvRow) - [DescribeTestRunBatchItem](https://cloud.tencent.com/document/api/1267/76336#DescribeTestRunBatchItem) - [ImportTableDTO](https://cloud.tencent.com/document/api/1267/76336#ImportTableDTO) - [KillTestRunTasksResponseResult](https://cloud.tencent.com/document/api/1267/76336#KillTestRunTasksResponseResult) - [LatestAnalyseInfoTask](https://cloud.tencent.com/document/api/1267/76336#LatestAnalyseInfoTask) - [LatestTestRunInfoTask](https://cloud.tencent.com/document/api/1267/76336#LatestTestRunInfoTask) - [ParameterVersionDsDto](https://cloud.tencent.com/document/api/1267/76336#ParameterVersionDsDto) - [RecycleTaskInfo](https://cloud.tencent.com/document/api/1267/76336#RecycleTaskInfo) - [RecycleTaskPageInfo](https://cloud.tencent.com/document/api/1267/76336#RecycleTaskPageInfo) - [RowColumn](https://cloud.tencent.com/document/api/1267/76336#RowColumn) - [TableHybrisReq](https://cloud.tencent.com/document/api/1267/76336#TableHybrisReq) - [TaskVersionDsDTO](https://cloud.tencent.com/document/api/1267/76336#TaskVersionDsDTO) - [TestRunBatchItem](https://cloud.tencent.com/document/api/1267/76336#TestRunBatchItem) - [UserFileVersionDto](https://cloud.tencent.com/document/api/1267/76336#UserFileVersionDto) - [WorkflowCanvasOperatorsDs](https://cloud.tencent.com/document/api/1267/76336#WorkflowCanvasOperatorsDs) - [WorkflowDsDTOPage](https://cloud.tencent.com/document/api/1267/76336#WorkflowDsDTOPage) - [WorkflowVersionInfo](https://cloud.tencent.com/document/api/1267/76336#WorkflowVersionInfo) ### [`v1.0.849`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10849) [Compare Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.848...v1.0.849) #### TDSQL-C MySQL 版(cynosdb) 版本:2019-01-07 ##### 第 78 次发布 发布时间:2024-01-25 01:10:23 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [DescribeAuditInstanceList](https://cloud.tencent.com/document/api/1003/103372) 新增数据结构: - [AuditInstanceFilters](https://cloud.tencent.com/document/api/1003/48097#AuditInstanceFilters) - [AuditInstanceInfo](https://cloud.tencent.com/document/api/1003/48097#AuditInstanceInfo) - [InstanceAuditStatus](https://cloud.tencent.com/document/api/1003/48097#InstanceAuditStatus) #### Elasticsearch Service(es) 版本:2018-04-16 ##### 第 52 次发布 发布时间:2024-01-25 01:13:20 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [UpdateInstance](https://cloud.tencent.com/document/api/845/30629) - 新增入参:Protocol #### 腾讯电子签企业版(ess) 版本:2020-11-11 ##### 第 147 次发布 发布时间:2024-01-25 01:13:27 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [ModifyFlowDeadline](https://cloud.tencent.com/document/api/1323/103373) 修改数据结构: - [ApproverInfo](https://cloud.tencent.com/document/api/1323/70369#ApproverInfo) - 新增成员:Deadline - [FlowCreateApprover](https://cloud.tencent.com/document/api/1323/70369#FlowCreateApprover) - 新增成员:Deadline #### 腾讯电子签(基础版)(essbasic) 版本:2021-05-26 ##### 第 149 次发布 发布时间:2024-01-25 01:13:43 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [ModifyFlowDeadline](https://cloud.tencent.com/document/api/1420/103374) #### 腾讯电子签(基础版)(essbasic) 版本:2020-12-22 #### 云点播(vod) 版本:2018-07-17 ##### 第 178 次发布 发布时间:2024-01-25 01:25:21 本次发布包含了以下内容: 改善已有的文档。 新增数据结构: - [MediaCastEvent](https://cloud.tencent.com/document/api/266/31773#MediaCastEvent) 修改数据结构: - [EventContent](https://cloud.tencent.com/document/api/266/31773#EventContent) - 新增成员:MediaCastStatusChangedEvent #### 数据开发治理平台 WeData(wedata) 版本:2021-08-20 ##### 第 72 次发布 发布时间:2024-01-25 01:27:19 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [BatchCreateTaskVersionDs](https://cloud.tencent.com/document/api/1267/101693) - 新增入参:NeedCheckParentSubmitted - [DescribeCodeSearchInfo](https://cloud.tencent.com/document/api/1267/103316) - 新增入参:WorkflowIds, FolderIds, DatasourceIds, FolderPaths, TaskStatus - <font color="#dd0000">**修改入参**:</font>SearchScopes - [RemoveWorkflowDs](https://cloud.tencent.com/document/api/1267/95140) - 新增入参:DeleteScript, OperateIsInform, DeleteMode 修改数据结构: - [OrganizationalFunction](https://cloud.tencent.com/document/api/1267/76336#OrganizationalFunction) - 新增成员:SchemaName, CommandFormat, OwnerName, SubmitTimestamp ### [`v1.0.848`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10848) [Compare Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.847...v1.0.848) #### 云数据库 MySQL(cdb) 版本:2017-03-20 ##### 第 151 次发布 发布时间:2024-01-24 01:22:49 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribeDBInstanceLogToCLS](https://cloud.tencent.com/document/api/236/100576) - 新增入参:ClsRegion - [ModifyDBInstanceLogToCLS](https://cloud.tencent.com/document/api/236/100575) - 新增入参:ClsRegion 修改数据结构: - [LogToCLSConfig](https://cloud.tencent.com/document/api/236/15878#LogToCLSConfig) - 新增成员:ClsRegion #### 腾讯云数据仓库 TCHouse-D(cdwdoris) 版本:2021-12-28 ##### 第 7 次发布 发布时间:2024-01-24 01:23:33 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [SlowQueryRecord](https://cloud.tencent.com/document/api/1387/102385#SlowQueryRecord) - 新增成员:ResultBytesMB, MemoryUsageMB, DurationSec #### 云防火墙(cfw) 版本:2019-09-04 ##### 第 54 次发布 发布时间:2024-01-23 14:38:08 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [AddEnterpriseSecurityGroupRules](https://cloud.tencent.com/document/api/1132/64234) - 新增入参:From, IsUseId - [DescribeBlockIgnoreList](https://cloud.tencent.com/document/api/1132/86691) - 新增入参:ShowType - <font color="#dd0000">**修改入参**:</font>RuleType - 新增出参:RuleTypeDataList 新增数据结构: - [CustomWhiteRule](https://cloud.tencent.com/document/api/1132/49071#CustomWhiteRule) 修改数据结构: - [BlockIgnoreRule](https://cloud.tencent.com/document/api/1132/49071#BlockIgnoreRule) - 新增成员:RuleType, IocName, IocInfo, DirectionList, LastHitTime, CustomRule - [CreateNatRuleItem](https://cloud.tencent.com/document/api/1132/49071#CreateNatRuleItem) - 新增成员:InternalUuid - [DescAcItem](https://cloud.tencent.com/document/api/1132/49071#DescAcItem) - 新增成员:SourceName, TargetName - [SecurityGroupListData](https://cloud.tencent.com/document/api/1132/49071#SecurityGroupListData) - 新增成员:ProtocolPortName - [SecurityGroupRule](https://cloud.tencent.com/document/api/1132/49071#SecurityGroupRule) - 新增成员:Uid - [VpcRuleItem](https://cloud.tencent.com/document/api/1132/49071#VpcRuleItem) - 新增成员:TargetName, SourceName #### T-Sec-堡垒机(BH)(dasb) 版本:2019-10-18 ##### 第 23 次发布 发布时间:2024-01-24 01:26:26 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [Acl](https://cloud.tencent.com/document/api/1025/74416#Acl) - 新增成员:WhiteCmds - [User](https://cloud.tencent.com/document/api/1025/74416#User) - 新增成员:AclVersion #### 弹性 MapReduce(emr) 版本:2019-01-03 ##### 第 57 次发布 发布时间:2024-01-24 01:28:23 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [ImpalaQuery](https://cloud.tencent.com/document/api/589/33981#ImpalaQuery) - 新增成员:SessionId, PerNodePeakMemoryBytesSum - <font color="#dd0000">**修改成员**:</font>Statement, Id, StartTime, Duration, EndTime, State, RowsFetched, User, DefaultDB, Coordinator, MaxNodePeakMemoryUsage, QueryType, ScanHDFSRows, ScanKUDURows, ScanRowsTotal, TotalBytesRead, TotalBytesSent, TotalCpuTime, TotalInnerBytesSent, TotalScanBytesSent, EstimatedPerHostMemBytes, NumRowsFetchedFromCache #### 腾讯云可观测平台(monitor) 版本:2018-07-24 ##### 第 105 次发布 发布时间:2024-01-24 01:32:19 本次发布包含了以下内容: 改善已有的文档。 修改接口: - [DescribePrometheusInstanceInitStatus](https://cloud.tencent.com/document/api/248/85716) - 新增出参:SecurityGroupId ##### 第 104 次发布 发布时间:2024-01-23 14:38:25 本次发布包含了以下内容: 改善已有的文档。 修改数据结构: - [PrometheusAgentOverview](https://cloud.tencent.com/document/api/248/30354#PrometheusAgentOverview) - 新增成员:EnableExternal - <font color="#dd0000">**修改成员**:</font>Name #### 数据开发治理平台 WeData(wedata) 版本:2021-08-20 ##### 第 71 次发布 发布时间:2024-01-24 01:40:11 本次发布包含了以下内容: 改善已有的文档。 新增接口: - [AcquireLock](https://cloud.tencent.com/document/api/1267/103330) - [AnalyzeDependentTasks](https://cloud.tencent.com/document/api/1267/103304) - [BatchCreateTaskVersionAsync](https://cloud.tencent.com/document/api/1267/103303) - [BatchCreateVirtualTaskDs](https://cloud.tencent.com/document/api/1267/103356) - [BatchDeleteTasksDsAsync](https://cloud.tencent.com/document/api/1267/103355) - [BatchRunTasksDs](https://cloud.tencent.com/document/api/1267/103354) - [BatchUpdateTasksDs](https://cloud.tencent.com/document/api/1267/103353) - [CheckTaskNameExistDs](https://cloud.tencent.com/document/api/1267/103302) - [CheckTaskPriorityDs](https://cloud.tencent.com/document/api/1267/103352) - [CopyTaskDs](https://cloud.tencent.com/document/api/1267/103301) - [CreateFileVersion](https://cloud.tencent.com/document/api/1267/103309) - [CreatePath](https://cloud.tencent.com/document/api/1267/103322) - [CreateProjectParamDs](https://cloud.tencent.com/document/api/1267/103300) - [CreateScriptsImportTasksDs](https://cloud.tencent.com/document/api/1267/103299) - [CreateTaskDs](https://cloud.tencent.com/document/api/1267/103298) - [CreateTaskFolder](https://cloud.tencent.com/document/api/1267/103297) - [CreateTaskInParamDs](https://cloud.tencent.com/document/api/1267/103296) - [CreateTaskOutParamDs](https://cloud.tencent.com/document/api/1267/103295) - [CreateTaskOutputRegistries](https://cloud.tencent.com/document/api/1267/103294) - [CreateTaskOutputRegistry](https://cloud.tencent.com/document/api/1267/103293) - [CreateTaskParamDs](https://cloud.tencent.com/document/api/1267/103292) - [DeleteDsEventListener](https://cloud.tencent.com/document/api/1267/103291) - [DeleteDsEventPublisher](https://cloud.tencent.com/document/api/1267/103290) - [DeleteLink](https://cloud.tencent.com/document/api/1267/103289) - [DeleteProjectParamVersionDs](https://cloud.tencent.com/document/api/1267/103288) - [DeleteTaskFolder](https://cloud.tencent.com/document/api/1267/103287) - [DeleteTaskInParamDs](https://cloud.tencent.com/document/api/1267/103286) - [DeleteTaskOutParamDs](https://cloud.tencent.com/document/api/1267/103285) - [DeleteTaskOutputRegistry](https://cloud.tencent.com/document/api/1267/103284) - [DescribeBrowsingHistories](https://cloud.tencent.com/document/api/1267/103283) - [DescribeChildrenDs](https://cloud.tencent.com/document/api/1267/103351) - [DescribeChildrenPathTrees](https://cloud.tencent.com/document/api/1267/103282) - [DescribeCodeDetail](https://cloud.tencent.com/document/api/1267/103321) - [DescribeCodeDetailV2](https://cloud.tencent.com/document/api/1267/103320) - [DescribeCodeSearchAuditInfo](https://cloud.tencent.com/document/api/1267/103319) - [DescribeCodeSearchAuditInfoV2](https://cloud.tencent.com/document/api/1267/103318) - [DescribeCodeSearchCount](https://cloud.tencent.com/document/api/1267/103317) - [DescribeCodeSearchInfo](https://cloud.tencent.com/document/api/1267/103316) - [DescribeCodeSearchInfoV2](https://cloud.tencent.com/document/api/1267/103315) - [DescribeCrontabTopNDs](https://cloud.tencent.com/document/api/1267/103350) - [DescribeDataDevelopTaskType](https://cloud.tencent.com/document/api/1267/103281) - [DescribeDependTasksDevDs](https://cloud.tencent.com/document/api/1267/103349) - [DescribeDependencyTasksForProjectClone](https://cloud.tencent.com/document/api/1267/103348) - [DescribeDependencyWorkflowForProjectClone](https://cloud.tencent.com/document/api/1267/103347) - [DescribeDevelopmentSpaceSupportType](https://cloud.tencent.com/document/api/1267/103280) - [DescribeDsEvent](https://cloud.tencent.com/document/api/1267/103279) - [DescribeDsKettleServerFolderTree](https://cloud.tencent.com/document/api/1267/103278) - [DescribeEtlTaskType](https://cloud.tencent.com/document/api/1267/103277) - [DescribeEventListenerByTaskId](https://cloud.tencent.com/document/api/1267/103276) - [DescribeEventListenerTask](https://cloud.tencent.com/document/api/1267/103275) - [DescribeFatherDatasourceInfoDs](https://cloud.tencent.com/document/api/1267/103346) - [DescribeImportableOfflineTask](https://cloud.tencent.com/document/api/1267/103274) - [DescribeInfoTransByTypeIdDs](https://cloud.tencent.com/document/api/1267/103345) - [DescribeLock](https://cloud.tencent.com/document/api/1267/103329) - [DescribeParentTask](https://cloud.tencent.com/document/api/1267/103344) - [DescribePathTrees](https://cloud.tencent.com/document/api/1267/103273) - [DescribeProjectParamDsPage](https://cloud.tencent.com/document/api/1267/103272) - [DescribeProjectParamVersionInfoDs](https://cloud.tencent.com/document/api/1267/103271) - [DescribeScriptsImportTaskType](https://cloud.tencent.com/document/api/1267/103270) - [DescribeTaskBindVirtualTask](https://cloud.tencent.com/document/api/1267/103269) - [DescribeTaskDetailDs](https://cloud.tencent.com/document/api/1267/103343) - [DescribeTaskLatestRunTime](https://cloud.tencent.com/document/api/1267/103268) - [DescribeTaskListByConditionDs](https://cloud.tencent.com/document/api/1267/103342) - [DescribeTaskOutputRegistries](https://cloud.tencent.com/document/api/1267/103267) - [DescribeTaskParentRunTime](https://cloud.tencent.com/document/api/1267/103266) - [DescribeTaskTypeByScriptType](https://cloud.tencent.com/document/api/1267/103265) - [DescribeTasksForProjectClone](https://cloud.tencent.com/document/api/1267/103341) - [DescribeWorkflowCanvasInfoDs](https://cloud.tencent.com/document/api/1267/103264) - [DescribeWorkflowCanvasOpLogs](https://cloud.tencent.com/document/api/1267/103263) - [DescribeWorkflowForProjectClone](https://cloud.tencent.com/document/api/1267/103340) - [DescribeWorkflowSchedulerInfoDs](https://cloud.tencent.com/document/api/1267/103262) - [DescribeWorkflowTasksForProjectClone](https://cloud.tencent.com/document/api/1267/103339) - [ExportDsEvent](https://cloud.tencent.com/document/api/1267/103261) - [ExportFiles](https://cloud.tencent.com/document/api/1267/103314) - [ExportProjectParamDs](https://cloud.tencent.com/document/api/1267/103260) - [ExportWorkflowXml](https://cloud.tencent.com/document/api/1267/103259) - [ExportWorkflowZip](https://cloud.tencent.com/document/api/1267/103258) - [FindDependTaskListDs](https://cloud.tencent.com/document/api/1267/103257) - [FindDependTaskListsDs](https://cloud.tencent.com/document/api/1267/103338) - [FindFuzzyTasksDs](https://cloud.tencent.com/document/api/1267/103337) - [GetAdvanceRunParams](https://cloud.tencent.com/document/api/1267/103226) - [GetBatchDetailErrorLog](https://cloud.tencent.com/document/api/1267/103256) - [GetCosToken](https://cloud.tencent.com/document/api/1267/103313) - [GetPathTrees](https://cloud.tencent.com/document/api/1267/103255) - [GetResourcePathTree](https://cloud.tencent.com/document/api/1267/103308) - [GetRunSonListDs](https://cloud.tencent.com/document/api/1267/103336) - [GetTestRunTaskInstancesStatusInfo](https://cloud.tencent.com/document/api/1267/103254) - [HeartBeat](https://cloud.tencent.com/document/api/1267/103328) - [ImportDsEvent](https://cloud.tencent.com/document/api/1267/103253) - [ImportFiles](https://cloud.tencent.com/document/api/1267/103312) - [ImportOfflineTask](https://cloud.tencent.com/document/api/1267/103252) - [ImportProjectParamDs](https://cloud.tencent.com/document/api/1267/103251) - [JudgeTaskListenEvent](https://cloud.tencent.com/document/api/1267/103250) - [ListBatchDetail](https://cloud.tencent.com/document/api/1267/103249) - [ListBatchJob](https://cloud.tencent.com/document/api/1267/103248) - [ModifyTaskFolder](https://cloud.tencent.com/document/api/1267/103247) - [ModifyTaskInfoDs](https://cloud.tencent.com/document/api/1267/103335) - [ModifyTaskLinksDs](https://cloud.tencent.com/document/api/1267/103334) - [ModifyTaskScriptDs](https://cloud.tencent.com/document/api/1267/103333) - [MoveFile](https://cloud.tencent.com/document/api/1267/103311) - [MoveTasksToFolder](https://cloud.tencent.com/document/api/1267/103246) - [RegisterDsEvent](https://cloud.tencent.com/document/api/1267/103245) - [RegisterDsEventListener](https://cloud.tencent.com/document/api/1267/103244) - [RegisterDsEventPublisher](https://cloud.tencent.com/document/api/1267/103243) - [ReleaseLock](https://cloud.tencent.com/document/api/1267/103327) - [RenameFile](https://cloud.tencent.com/document/api/1267/103310) - [RenameResource](https://cloud.tencent.com/document/api/1267/103307) - [RenameResourceFile](https://cloud.tencent.com/document/api/1267/103306) - [RenameTaskDs](https://cloud.tencent.com/document/api/1267/103242) - [RenewWorkflowDs](https://cloud.tencent.com/document/api/1267/103241) - [RenewWorkflowFolderDs](https://cloud.tencent.com/document/api/1267/103240) - [RenewWorkflowOwnerDs](https://cloud.tencent.com/document/api/1267/103239) - [RenewWorkflowSchedulerInfoDs](https://cloud.tencent.com/document/api/1267/103238) - [SavePositionsDs](https://cloud.tencent.com/document/api/1267/103332) - [ScriptUsedByOtherTaskDs](https://cloud.tencent.com/document/api/1267/103237) - [SubmitPySparkTask](https://cloud.tencent.com/document/api/1267/103325) - [SubmitPythonTask](https://cloud.tencent.com/document/api/1267/103324) - [SubmitShellTask](https://cloud.tencent.com/document/api/1267/103323) - [UpdateBatchTaskAdvancedSettings](https://cloud.tencent.com/document/api/1267/103236) - [UpdateBatchTaskDatasource](https://cloud.tencent.com/document/api/1267/103235) - [UpdateBatchTaskInCharge](https://cloud.tencent.com/document/api/1267/103234) - [UpdateBatchTaskParameter](https://cloud.tencent.com/document/api/1267/103233) - [UpdateBatchTaskParams](https://cloud.tencent.com/document/api/1267/103232) - [UpdateBatchTaskResourceGroup](https://cloud.tencent.com/document/api/1267/103231) - [UpdateBatchTaskSchedule](https://cloud.tencent.com/document/api/1267/103230) - [UpdateDsEvent](https://cloud.tencent.com/document/api/1267/103229) - [UpdateEventListener](https://cloud.tencent.com/document/api/1267/103228) - [UpdateTaskDs](https://cloud.tencent.com/document/api/1267/103331) - [UploadAdvanceRunParams](https://cloud.tencent.com/document/api/1267/103225) - [UploadFilesDs](https://cloud.tencent.com/document/api/1267/103227) - [UploadResource](https://cloud.tencent.com/document/api/1267/103305) 新增数据结构: - [AlarmExtVO](https://cloud.tencent.com/document/api/1267/76336#AlarmExtVO) - [AlarmVO](https://cloud.tencent.com/document/api/1267/76336#AlarmVO) - [AnalyzeDependentTask](https://cloud.tencent.com/document/api/1267/76336#AnalyzeDependentTask) - [AsyncResourceVO](https://cloud.tencent.com/document/api/1267/76336#AsyncResourceVO) - [AttributeItemVO](https://cloud.tencent.com/document/api/1267/76336#AttributeItemVO) - [BatchCreateVirtualTaskDTO](https://cloud.tencent.com/document/api/1267/76336#BatchCreateVirtualTaskDTO) - [BatchJobVO](https://cloud.tencent.com/document/api/1267/76336#BatchJobVO) - [BatchResultDs](https://cloud.tencent.com/document/api/1267/76336#BatchResultDs) - [BatchTaskOperateNew](https://cloud.tencent.com/document/api/1267/76336#BatchTaskOperateNew) - [BrowsingHistory](https://cloud.tencent.com/document/api/1267/76336#BrowsingHistory) - [CheckTaskNameExistResult](https://cloud.tencent.com/document/api/1267/76336#CheckTaskNameExistResult) - [CheckTaskPriorityTaskDTO](https://cloud.tencent.com/document/api/1267/76336#CheckTaskPriorityTaskDTO) - [CloneObjectDTO](https://cloud.tencent.com/document/api/1267/76336#CloneObjectDTO) - [CloneTaskModeInfo](https://cloud.tencent.com/document/api/1267/76336#CloneTaskModeInfo) - [CloneTaskModePageInfoInfo](https://cloud.tencent.com/document/api/1267/76336#CloneTaskModePageInfoInfo) - [CodeDetailResult](https://cloud.tencent.com/document/api/1267/76336#CodeDetailResult) - [CodeMatchInfo](https://cloud.tencent.com/document/api/1267/76336#CodeMatchInfo) - [CodeSearchAuditDTO](https://cloud.tencent.com/document/api/1267/76336#CodeSearchAuditDTO) - [CodeSearchAuditInfo](https://cloud.tencent.com/document/api/1267/76336#CodeSearchAuditInfo) - [CodeSearchAuditResult](https://cloud.tencent.com/document/api/1267/76336#CodeSearchAuditResult) - [CodeSearchCountInfo](https://cloud.tencent.com/document/api/1267/76336#CodeSearchCountInfo) - [CodeSearchInfo](https://cloud.tencent.com/document/api/1267/76336#CodeSearchInfo) - [CodeSearchInfoPage](https://cloud.tencent.com/document/api/1267/76336#CodeSearchInfoPage) - [CodeSearchResult](https://cloud.tencent.com/document/api/1267/76336#CodeSearchResult) - [CollectionEventDTO](https://cloud.tencent.com/document/api/1267/76336#CollectionEventDTO) - [CollectionEventListenerTaskDTO](https://cloud.tencent.com/document/api/1267/76336#CollectionEventListenerTaskDTO) - [CollectionParamDTO](https://cloud.tencent.com/document/api/1267/76336#CollectionParamDTO) - [CosTokenResponse](https://cloud.tencent.com/document/api/1267/76336#CosTokenResponse) - [CreateTaskOutputRegistry](https://cloud.tencent.com/document/api/1267/76336#CreateTaskOutputRegistry) - [CustomizeBusinessEntityDTO](https://cloud.tencent.com/document/api/1267/76336#CustomizeBusinessEntityDTO) - [DeleteUserFileDTO](https://cloud.tencent.com/document/api/1267/76336#DeleteUserFileDTO) - [DependencyConfigDsDTO](https://cloud.tencent.com/document/api/1267/76336#DependencyConfigDsDTO) - [DependencyConfigDsDTONoRecur](https://cloud.tencent.com/document/api/1267/76336#DependencyConfigDsDTONoRecur) - [DependencyConfigDsDTONoRecurV3](https://cloud.tencent.com/document/api/1267/76336#DependencyConfigDsDTONoRecurV3) - [DependencyStrategy](https://cloud.tencent.com/document/api/1267/76336#DependencyStrategy) - [DependencyTaskDTO](https://cloud.tencent.com/document/api/1267/76336#DependencyTaskDTO) - [DependencyWorkflowDTO](https://cloud.tencent.com/document/api/1267/76336#DependencyWorkflowDTO) - [DescribeLockResp](https://cloud.tencent.com/document/api/1267/76336#DescribeLockResp) - [DescribeWorkflowCanvasOplogRequestFilter](https://cloud.tencent.com/document/api/1267/76336#DescribeWorkflowCanvasOplogRequestFilter) - [DsKettleServerFolderTreeNodeDto](https://cloud.tencent.com/document/api/1267/76336#DsKettleServerFolderTreeNodeDto) - [EventDsDto](https://cloud.tencent.com/document/api/1267/76336#EventDsDto) - [EventListenerDTO](https://cloud.tencent.com/document/api/1267/76336#EventListenerDTO) - [EventListenerNewDTO](https://cloud.tencent.com/document/api/1267/76336#EventListenerNewDTO) - [EventListenerTaskInfo](https://cloud.tencent.com/document/api/1267/76336#EventListenerTaskInfo) - [EventPublisherDTO](https://cloud.tencent.com/document/api/1267/76336#EventPublisherDTO) - [ExportEventDTO](https://cloud.tencent.com/document/api/1267/76336#ExportEventDTO) - [ExportFile](https://cloud.tencent.com/document/api/1267/76336#ExportFile) - [ExportRequestInfo](https://cloud.tencent.com/document/api/1267/76336#ExportRequestInfo) - [ImportRequestInfo](https://cloud.tencent.com/document/api/1267/76336#ImportRequestInfo) - [ListBatchJobPages](https://cloud.tencent.com/document/api/1267/76336#ListBatchJobPages) - [NewPathDTO](https://cloud.tencent.com/document/api/1267/76336#NewPathDTO) - [ParamDsRequest](https://cloud.tencent.com/document/api/1267/76336#ParamDsRequest) - [ParamGetTaskInstancesStatusInfoResponseInstance](https://cloud.tencent.com/document/api/1267/76336#ParamGetTaskInstancesStatusInfoResponseInstance) - [ParamGetTestRunTaskInstancesStatusInfoTask](https://cloud.tencent.com/document/api/1267/76336#ParamGetTestRunTaskInstancesStatusInfoTask) - [ParamMapDsDto](https://cloud.tencent.com/document/api/1267/76336#ParamMapDsDto) - [ParamTaskDsRequest](https://cloud.tencent.com/document/api/1267/76336#ParamTaskDsRequest) - [ParameterInfoDsDto](https://cloud.tencent.com/document/api/1267/76336#ParameterInfoDsDto) - [Params](https://cloud.tencent.com/document/api/1267/76336#Params) - [PathTreeNode](https://cloud.tencent.com/document/api/1267/76336#PathTreeNode) - [PathTreeNodeParams](https://cloud.tencent.com/document/api/1267/76336#PathTreeNodeParams) - [ProjectCloneTaskInfo](https://cloud.tencent.com/document/api/1267/76336#ProjectCloneTaskInfo) - [ProjectCloneTaskInfoPageNew](https://cloud.tencent.com/document/api/1267/76336#ProjectCloneTaskInfoPageNew) - [ProjectCloneWorkflowInfo](https://cloud.tencent.com/document/api/1267/76336#ProjectCloneWorkflowInfo) - [ProjectCloneWorkflowInfoPageNew](https://cloud.tencent.com/document/api/1267/76336#ProjectCloneWorkflowInfoPageNew) - [RecycleFilePageInfo](https://cloud.tencent.com/document/api/1267/76336#RecycleFilePageInfo) - [RenameResourceDTO](https://cloud.tencent.com/document/api/1267/76336#RenameResourceDTO) - [ScriptTypeInfo](https://cloud.tencent.com/document/api/1267/76336#ScriptTypeInfo) - [ShareStorageFileDTO](https://cloud.tencent.com/document/api/1267/76336#ShareStorageFileDTO) - [ShareStorageFileMappingDTO](https://cloud.tencent.com/document/api/1267/76336#ShareStorageFileMappingDTO) - [SparkParameterDTO](https://cloud.tencent.com/document/api/1267/76336#SparkParameterDTO) - [SubCloneObjectDTO](https://cloud.tencent.com/document/api/1267/76336#SubCloneObjectDTO) - [TCHouseXTaskParameter](https://cloud.tencent.com/document/api/1267/76336#TCHouseXTaskParameter) - [TaskBaseInfo](https://cloud.tencent.com/document/api/1267/76336#TaskBaseInfo) - [TaskDataRegistry](https://cloud.tencent.com/document/api/1267/76336#TaskDataRegistry) - [TaskDataRegistryDTO](https://cloud.tencent.com/document/api/1267/76336#TaskDataRegistryDTO) - [TaskDatasourceDTO](https://cloud.tencent.com/document/api/1267/76336#TaskDatasourceDTO) - [TaskDatasourceDTOPage](https://cloud.tencent.com/document/api/1267/76336#TaskDatasourceDTOPage) - [TaskDsDTO](https://cloud.tencent.com/document/api/1267/76336#TaskDsDTO) - [TaskDsDTOLite](https://cloud.tencent.com/document/api/1267/76336#TaskDsDTOLite) - [TaskDsDTOLiteV3](https://cloud.tencent.com/document/api/1267/76336#TaskDsDTOLiteV3) - [TaskDsDTONoRecur](https://cloud.tencent.com/document/api/1267/76336#TaskDsDTONoRecur) - [TaskDsDTONoRecurV3](https://cloud.tencent.com/document/api/1267/76336#TaskDsDTONoRecurV3) - [TaskDsDTOPage](https://cloud.tencent.com/document/api/1267/76336#TaskDsDTOPage) - [TaskExtVO](https://cloud.tencent.com/document/api/1267/76336#TaskExtVO) - [TaskInfoWithInstance](https://cloud.tencent.com/document/api/1267/76336#TaskInfoWithInstance) - [TaskParentSchedulerDependency](https://cloud.tencent.com/document/api/1267/76336#TaskParentSchedulerDependency) - [TaskTypeExtParamVO](https://cloud.tencent.com/document/api/1267/76336#TaskTypeExtParamVO) - [TaskTypeExtVO](https://cloud.tencent.com/document/api/1267/76336#TaskTypeExtVO) - [TaskTypeVO](https://cloud.tencent.com/document/api/1267/76336#TaskTypeVO) - [UpdateBatchTaskParameterDTO](https://cloud.tencent.com/document/api/1267/76336#UpdateBatchTaskParameterDTO) - [UploadResourceRequestInfo](https://cloud.tencent.com/document/api/1267/76336#UploadResourceRequestInfo) - [UserFileDTONew](https://cloud.tencent.com/document/api/1267/76336#UserFileDTONew) - [VirtualTaskInfo](https://cloud.tencent.com/document/api/1267/76336#VirtualTaskInfo) - [VirtualTaskInfoPage](https://cloud.tencent.com/document/api/1267/76336#VirtualTaskInfoPage) - [WorkflowCanvasOpLogResult](https://cloud.tencent.com/document/api/1267/76336#WorkflowCanvasOpLogResult) - [WorkflowCanvasOplog](https://cloud.tencent.com/document/api/1267/76336#WorkflowCanvasOplog) - [WorkflowDsDTO](https://cloud.tencent.com/document/api/1267/76336#WorkflowDsDTO) - [WorkflowScheduleDtoDs](https://cloud.tencent.com/document/api/1267/76336#WorkflowScheduleDtoDs) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…re gate (open-telemetry#30817) **Description:** Fixes open-telemetry#30816 --------- Co-authored-by: Alex Boten <aboten@lightstep.com>
…e gate (open-telemetry#30826) **Description:** Fixes open-telemetry#30825
…pen-telemetry#30787) Co-authored-by: Pablo Baeyens <pbaeyens31+github@gmail.com>
songy23
requested review from
mx-psi,
dineshg13,
liustanley and
mackjmr
as code owners
January 30, 2024 16:59
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.
No description provided.