Skip to content

[chore] merge with upstream latest #11

Merged
eladcon merged 829 commits into
mainfrom
merge-latest
Dec 1, 2025
Merged

[chore] merge with upstream latest #11
eladcon merged 829 commits into
mainfrom
merge-latest

Conversation

@eladcon

@eladcon eladcon commented Nov 26, 2025

Copy link
Copy Markdown

Description

Link to tracking issue

Fixes

Testing

Documentation

krajorama and others added 30 commits October 31, 2025 14:25
…3925)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

In the dependency upgrade open-telemetry#43890 there was the PR
prometheus/prometheus#16429 which changed the
provisions for staleness tracking. Now the code only does the tracking
if the series was successfully appended in storage. This is indicated by
a non zero storage reference returned by the appender.

Since we used to return 0 in all cases, the staleness tracking is now
broken.

Solution is to return a fake reference of 1, just to indicate success.

Alternative solution would be to make a unique reference for each series
label set, but that incurs an overhead which we can avoid.

Performance impact: probably small as the cache should be stable over
time - unless targets churn a lot between receiver instances.

Resource utilization: +1 hashmap with series identifier (name+labels)
pointing to cache entries. Size related to number of series. `addRef`
here:
https://github.com/prometheus/prometheus/blob/c8f1de18a7870e5dc99ed50119c194691c41e41c/scrape/scrape.go#L1089

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes open-telemetry#43893

<!--Describe what testing was performed and which tests were added.-->
#### Testing

Un-skip related tests.

---------

Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
…43906)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

Some tests set the global registry to enable
native histograms, which is not safe for t.Parallel().

Fix this by only using the feature gate in the receiver factory.

This makes TestNativeVsClassicHistogramScrapeViaProtobuf 4x faster on my
laptop.

Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
…#43920)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
Refactors the Cisco OS receiver connection handling:

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue

open-telemetry#42647

Fixes
- Centralized connection establishment logic into shared connection
factory
- Removed duplicate validation checks across receiver and connection
layers
- Simplified scraper nil checks and updated related tests
- Cleaned up linting issues (unused imports, context usage)
<!--Describe what testing was performed and which tests were added.-->
#### Testing
- Connection factory tests for password and key file authentication
- Scraper initialization and shutdown tests added
<!--Describe the documentation added.-->
#### Documentation
- Simplified inline documentation throughout connection handling code

<!--Please delete paragraphs that you did not use before submitting.-->
…-map (open-telemetry#43949)

The problems happens when assume inside "attributes" there is a key
called "tags" that is a pcommon.Map. Here is an example:

```
delete_key(attributes[tags], "test_key") where metric.name = "foo"
```

Because of the changes to always call set value on the target (see
open-telemetry#42350)
we will get to do a SetValue where the src and destination are the same,
but because we always set the destination to emptyMap will do a full
copy of the sub-map tags.

Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
…#43879)

#### Description

This PR updates all dependencies on the datadog-agent repo to a recent
pseudo-version past:
- [this PR](DataDog/datadog-agent#41710), which
should hopefully fix "ambiguous import" issues caused by
googleapis/go-genproto#1015
- [this PR](DataDog/datadog-agent#42268), which
should fix open-telemetry#43594
#### Description

I forgot to add a release note for some of the behavior changes
introduced as part of the dependency upgrade in open-telemetry#43879.
replaces
open-telemetry#43955

---------

Signed-off-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
Mark [ciscoosreceiver] as Alpha.

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue

open-telemetry#42647
Fixes

<!--Describe what testing was performed and which tests were added.-->
#### Testing
Ran `make generate` and `make genotelcontribcol`. All tests pass.

<!--Describe the documentation added.-->
#### Documentation
README status section auto-generated via `make generate`.

<!--Please delete paragraphs that you did not use before submitting.-->
…_keys functions (open-telemetry#43729)

Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>
Several of the benchmarks were failing to run, this fixes them all for
future use.
…y#43968)

Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>
This PR updates the opentelemetry-collector modules to
open-telemetry/opentelemetry-collector@f2bced2

---------

Signed-off-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
The following commands were run to prepare this release:
- make chlog-update VERSION=v0.139.0
- sed -i.bak s/0[.]138[.]0/0.139.0/g versions.yaml
- make multimod-prerelease
- make multimod-sync

---------

Signed-off-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
The default value of `lookbackTime` in TopQueryCollection config is
always calculated as `2` * `default value of CollectionInterval`.

This logic is flawed because the default value will always stay at 20
(2*10=20) even if the user provides a collection interval of `60`
seconds.

The expected default value for lookbackTime in this case should be `120`
(2*60=120).

The fix is to calculate lookbackTime based on the final value of
CollectionInterval.

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes
open-telemetry#43943

<!--Describe what testing was performed and which tests were added.-->
#### Testing
Unit tests updated.


<!--Please delete paragraphs that you did not use before submitting.-->
…ob name format (open-telemetry#43630)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

Add serial number and time parsing switches for blob name.

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes open-telemetry#43603 and open-telemetry#43604 .

<!--Describe what testing was performed and which tests were added.-->
#### Testing

1. unit test
2. validated using an azure blob instance.

<!--Describe the documentation added.-->
#### Documentation

See `README.md`

<!--Please delete paragraphs that you did not use before submitting.-->
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
unexport structs ParsedPath, PlaintextPathParser, function NewParser
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
Include most of ALB fields in log record.

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Refs open-telemetry#43757
…ans (open-telemetry#43771)

#### Description

Adds `include_span_events` configuration option to include the raw
events from GitHub on the run and job spans in order to enhance
troubleshooting.

#### Link to tracking issue
Relates to open-telemetry#43180 but does not fix.

#### Testing

updated tests

#### Documentation

updated readme

---------

Co-authored-by: Curtis Robert <crobert@splunk.com>
…y#42058)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
This is start at implementing open-telemetry#33532. I'm trying to do this in
relatively minor increments to make this reviewable, so this *only* adds
support for reporting the active units' status.

This follows a similar approach to the httpcheck receiver, with an
attribute for every possible state, with one metric set to `1`, and the
rest set to `0`.

```
systemd.unit.state{systemd.unit.name="nginx", systemd.unit.active_state="active"} = 1
systemd.unit.state{systemd.unit.name="nginx", systemd.unit.active_state="reloading"} = 0
systemd.unit.state{systemd.unit.name="nginx", systemd.unit.active_state="inactive"} = 0
systemd.unit.state{systemd.unit.name="nginx", systemd.unit.active_state="failed"} = 0
systemd.unit.state{systemd.unit.name="nginx", systemd.unit.active_state="activating"} = 0
systemd.unit.state{systemd.unit.name="nginx", systemd.unit.active_state="deactivating"} = 0
systemd.unit.state{systemd.unit.name="nginx", systemd.unit.active_state="maintenance"} = 0
systemd.unit.state{systemd.unit.name="nginx", systemd.unit.active_state="refreshing"} = 0
```

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Part of open-telemetry#33532, but possibly not enough to mark as fixed. 

#### Testing
I have done some manual testing, and confirmed this generates the
metrics I'd expected. Aside from the auto-generated tests, I'm afraid
I've not written any unit/integration tests — I wanted some advice here
first, about whether it was better to try to mock out the dbus
interface, or instead try to run the tests against a real systemd
instance.

#### Documentation
I've updated the README of the systemdreceiver component to mention the
metric exposed, and the configuration options.

---------

Co-authored-by: Paulo Janotti <pjanotti@splunk.com>
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2)
| `v1.39.4` -> `v1.39.5` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2/v1.39.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2/v1.39.4/v1.39.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2)
| `v1.31.15` -> `v1.31.16` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.31.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.31.15/v1.31.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2)
| `v1.18.19` -> `v1.18.20` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.18.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.18.19/v1.18.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue](https://github.com/aws/aws-sdk-go-v2)
| `v1.20.19` -> `v1.20.20` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fdynamodb%2fattributevalue/v1.20.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fdynamodb%2fattributevalue/v1.20.19/v1.20.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/feature/ec2/imds](https://github.com/aws/aws-sdk-go-v2)
| `v1.18.11` -> `v1.18.12` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fec2%2fimds/v1.18.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fec2%2fimds/v1.18.11/v1.18.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://github.com/aws/aws-sdk-go-v2)
| `v1.20.1` -> `v1.20.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2ffeature%2fs3%2fmanager/v1.20.1/v1.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2)
| `v1.58.5` -> `v1.58.6` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fcloudwatchlogs/v1.58.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-v2%2fservice%2fcloudwatchlogs/v1.58.5/v1.58.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/dynamodb](https://github.com/aws/aws-sdk-go-v2)
| `v1.52.2` -> `v1.52.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fdynamodb/v1.52.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fdynamodb/v1.52.2/v1.52.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2)
| `v1.259.0` -> `v1.261.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fec2/v1.261.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fec2/v1.259.0/v1.261.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/ecs](https://github.com/aws/aws-sdk-go-v2)
| `v1.66.0` -> `v1.67.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fecs/v1.67.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fecs/v1.66.0/v1.67.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/kinesis](https://github.com/aws/aws-sdk-go-v2)
| `v1.41.0` -> `v1.42.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.42.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.41.0/v1.42.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2)
| `v1.89.0` -> `v1.89.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.89.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.89.0/v1.89.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2)
| `v1.39.9` -> `v1.39.10` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.39.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.39.9/v1.39.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/servicediscovery](https://github.com/aws/aws-sdk-go-v2)
| `v1.39.12` -> `v1.39.13` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.39.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.39.12/v1.39.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/sqs](https://github.com/aws/aws-sdk-go-v2)
| `v1.42.11` -> `v1.42.12` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsqs/v1.42.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsqs/v1.42.11/v1.42.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/sts](https://github.com/aws/aws-sdk-go-v2)
| `v1.38.9` -> `v1.39.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.38.9/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/xray](https://github.com/aws/aws-sdk-go-v2)
| `v1.36.7` -> `v1.36.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fxray/v1.36.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fxray/v1.36.7/v1.36.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [github.com/aws/smithy-go](https://github.com/aws/smithy-go)
| `v1.23.1` -> `v1.23.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2fsmithy-go/v1.23.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2fsmithy-go/v1.23.1/v1.23.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)</summary>

###
[`v1.39.5`](https://github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2024-11-07)

[Compare
Source](https://github.com/aws/aws-sdk-go-v2/compare/v1.39.4...v1.39.5)

#### General Highlights

- **Dependency Update**: Updated to the latest SDK module versions

#### Module Highlights

- `github.com/aws/aws-sdk-go-v2/service/accessanalyzer`:
[v1.34.5](service/accessanalyzer/CHANGELOG.md#v1345-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/account`:
[v1.21.5](service/account/CHANGELOG.md#v1215-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/acm`:
[v1.30.5](service/acm/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/acmpca`:
[v1.37.6](service/acmpca/CHANGELOG.md#v1376-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/amp`:
[v1.30.2](service/amp/CHANGELOG.md#v1302-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/amplify`:
[v1.27.3](service/amplify/CHANGELOG.md#v1273-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/amplifybackend`:
[v1.27.5](service/amplifybackend/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/amplifyuibuilder`:
[v1.23.5](service/amplifyuibuilder/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apigateway`:
[v1.27.5](service/apigateway/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apigatewaymanagementapi`:
[v1.23.5](service/apigatewaymanagementapi/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apigatewayv2`:
[v1.24.5](service/apigatewayv2/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appconfig`:
[v1.35.3](service/appconfig/CHANGELOG.md#v1353-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appconfigdata`:
[v1.18.5](service/appconfigdata/CHANGELOG.md#v1185-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appfabric`:
[v1.11.5](service/appfabric/CHANGELOG.md#v1115-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appflow`:
[v1.45.6](service/appflow/CHANGELOG.md#v1456-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appintegrations`:
[v1.30.5](service/appintegrations/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationautoscaling`:
[v1.33.5](service/applicationautoscaling/CHANGELOG.md#v1335-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationcostprofiler`:
[v1.21.5](service/applicationcostprofiler/CHANGELOG.md#v1215-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationdiscoveryservice`:
[v1.28.5](service/applicationdiscoveryservice/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationinsights`:
[v1.29.3](service/applicationinsights/CHANGELOG.md#v1293-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationsignals`:
[v1.6.5](service/applicationsignals/CHANGELOG.md#v165-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appmesh`:
[v1.29.5](service/appmesh/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apprunner`:
[v1.32.5](service/apprunner/CHANGELOG.md#v1325-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appstream`:
[v1.41.5](service/appstream/CHANGELOG.md#v1415-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appsync`:
[v1.39.2](service/appsync/CHANGELOG.md#v1392-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apptest`:
[v1.4.5](service/apptest/CHANGELOG.md#v145-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/arczonalshift`:
[v1.14.5](service/arczonalshift/CHANGELOG.md#v1145-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/artifact`:
[v1.6.5](service/artifact/CHANGELOG.md#v165-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/athena`:
[v1.48.3](service/athena/CHANGELOG.md#v1483-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/auditmanager`:
[v1.37.5](service/auditmanager/CHANGELOG.md#v1375-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/autoscaling`:
[v1.48.0](service/autoscaling/CHANGELOG.md#v1480-2024-11-07)
- **Feature**: Auto Scaling groups now support the ability to strictly
balance instances across Availability Zones by configuring the
AvailabilityZoneDistribution parameter. If balanced-only is configured
for a group, launches will always be attempted in the under scaled
Availability Zone even if it is unhealthy.
- `github.com/aws/aws-sdk-go-v2/service/autoscalingplans`:
[v1.24.5](service/autoscalingplans/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/b2bi`:
[v1.0.0-preview.51](service/b2bi/CHANGELOG.md#v100-preview51-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/backup`:
[v1.39.6](service/backup/CHANGELOG.md#v1396-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/backupgateway`:
[v1.20.5](service/backupgateway/CHANGELOG.md#v1205-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/batch`:
[v1.47.2](service/batch/CHANGELOG.md#v1472-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bcmdataexports`:
[v1.7.5](service/bcmdataexports/CHANGELOG.md#v175-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bedrock`:
[v1.22.2](service/bedrock/CHANGELOG.md#v1222-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bedrockagent`:
[v1.27.0](service/bedrockagent/CHANGELOG.md#v1270-2024-11-07)
- **Feature**: Add prompt support for chat template configuration and
agent generative AI resource. Add support for configuring an optional
guardrail in Prompt and Knowledge Base nodes in Prompt Flows. Add API to
validate flow definition
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bedrockagentruntime`:
[v1.23.3](service/bedrockagentruntime/CHANGELOG.md#v1233-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bedrockruntime`:
[v1.20.0](service/bedrockruntime/CHANGELOG.md#v1200-2024-11-07)
- **Feature**: Add Prompt management support to Bedrock runtime APIs:
Converse, ConverseStream, InvokeModel, InvokeModelWithStreamingResponse
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/billingconductor`:
[v1.20.5](service/billingconductor/CHANGELOG.md#v1205-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/braket`:
[v1.31.5](service/braket/CHANGELOG.md#v1315-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/budgets`:
[v1.28.5](service/budgets/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chatbot`:
[v1.8.5](service/chatbot/CHANGELOG.md#v185-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chime`:
[v1.34.5](service/chime/CHANGELOG.md#v1345-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkidentity`:
[v1.22.5](service/chimesdkidentity/CHANGELOG.md#v1225-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkmediapipelines`:
[v1.20.5](service/chimesdkmediapipelines/CHANGELOG.md#v1205-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkmeetings`:
[v1.27.5](service/chimesdkmeetings/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkmessaging`:
[v1.26.5](service/chimesdkmessaging/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkvoice`:
[v1.19.5](service/chimesdkvoice/CHANGELOG.md#v1195-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cleanrooms`:
[v1.20.0](service/cleanrooms/CHANGELOG.md#v1200-2024-11-07)
- **Feature**: This release introduces support for Custom Models in AWS
Clean Rooms ML.
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cleanroomsml`:
[v1.10.0](service/cleanroomsml/CHANGELOG.md#v1100-2024-11-07)
- **Feature**: This release introduces support for Custom Models in AWS
Clean Rooms ML.
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloud9`:
[v1.28.5](service/cloud9/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudcontrol`:
[v1.22.5](service/cloudcontrol/CHANGELOG.md#v1225-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/clouddirectory`:
[v1.24.5](service/clouddirectory/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudfrontkeyvaluestore`:
[v1.8.5](service/cloudfrontkeyvaluestore/CHANGELOG.md#v185-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudhsm`:
[v1.24.5](service/cloudhsm/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudhsmv2`:
[v1.27.6](service/cloudhsmv2/CHANGELOG.md#v1276-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudsearchdomain`:
[v1.23.5](service/cloudsearchdomain/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudtrail`:
[v1.44.5](service/cloudtrail/CHANGELOG.md#v1445-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudtraildata`:
[v1.11.5](service/cloudtraildata/CHANGELOG.md#v1115-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudwatchevents`:
[v1.27.5](service/cloudwatchevents/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs`:
[v1.43.2](service/cloudwatchlogs/CHANGELOG.md#v1432-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codeartifact`:
[v1.33.5](service/codeartifact/CHANGELOG.md#v1335-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codebuild`:
[v1.48.1](service/codebuild/CHANGELOG.md#v1481-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codecatalyst`:
[v1.17.5](service/codecatalyst/CHANGELOG.md#v1175-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codecommit`:
[v1.27.5](service/codecommit/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codeconnections`:
[v1.5.5](service/codeconnections/CHANGELOG.md#v155-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codedeploy`:
[v1.29.5](service/codedeploy/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codeguruprofiler`:
[v1.24.5](service/codeguruprofiler/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codegurureviewer`:
[v1.29.5](service/codegurureviewer/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codegurusecurity`:
[v1.12.5](service/codegurusecurity/CHANGELOG.md#v1125-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codepipeline`:
[v1.36.3](service/codepipeline/CHANGELOG.md#v1363-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codestarconnections`:
[v1.29.5](service/codestarconnections/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codestarnotifications`:
[v1.26.5](service/codestarnotifications/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cognitoidentity`:
[v1.27.5](service/cognitoidentity/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider`:
[v1.46.5](service/cognitoidentityprovider/CHANGELOG.md#v1465-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cognitosync`:
[v1.23.5](service/cognitosync/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/comprehend`:
[v1.35.5](service/comprehend/CHANGELOG.md#v1355-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/comprehendmedical`:
[v1.26.5](service/comprehendmedical/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/computeoptimizer`:
[v1.39.5](service/computeoptimizer/CHANGELOG.md#v1395-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/configservice`:
[v1.50.5](service/configservice/CHANGELOG.md#v1505-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connect`:
[v1.115.2](service/connect/CHANGELOG.md#v11152-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connectcampaigns`:
[v1.15.5](service/connectcampaigns/CHANGELOG.md#v1155-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connectcases`:
[v1.21.5](service/connectcases/CHANGELOG.md#v1215-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connectcontactlens`:
[v1.26.5](service/connectcontactlens/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connectparticipant`:
[v1.27.5](service/connectparticipant/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/controlcatalog`:
[v1.5.5](service/controlcatalog/CHANGELOG.md#v155-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/controltower`:
[v1.18.6](service/controltower/CHANGELOG.md#v1186-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/costandusagereportservice`:
[v1.28.5](service/costandusagereportservice/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/costexplorer`:
[v1.43.5](service/costexplorer/CHANGELOG.md#v1435-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/costoptimizationhub`:
[v1.10.5](service/costoptimizationhub/CHANGELOG.md#v1105-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/customerprofiles`:
[v1.42.5](service/customerprofiles/CHANGELOG.md#v1425-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/databasemigrationservice`:
[v1.44.3](service/databasemigrationservice/CHANGELOG.md#v1443-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/databrew`:
[v1.33.5](service/databrew/CHANGELOG.md#v1335-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dataexchange`:
[v1.33.3](service/dataexchange/CHANGELOG.md#v1333-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/datapipeline`:
[v1.25.5](service/datapipeline/CHANGELOG.md#v1255-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/datasync`:
[v1.43.2](service/datasync/CHANGELOG.md#v1432-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/datazone`:
[v1.23.3](service/datazone/CHANGELOG.md#v1233-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dax`:
[v1.23.5](service/dax/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/deadline`:
[v1.6.4](service/deadline/CHANGELOG.md#v164-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/detective`:
[v1.31.5](service/detective/CHANGELOG.md#v1315-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/devicefarm`:
[v1.28.5](service/devicefarm/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/devopsguru`:
[v1.34.5](service/devopsguru/CHANGELOG.md#v1345-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/directconnect`:
[v1.29.5](service/directconnect/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/directoryservice`:
[v1.30.5](service/directoryservice/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/directoryservicedata`:
[v1.2.5](service/directoryservicedata/CHANGELOG.md#v125-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dlm`:
[v1.28.5](service/dlm/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/docdbelastic`:
[v1.14.2](service/docdbelastic/CHANGELOG.md#v1142-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/drs`:
[v1.30.5](service/drs/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dynamodb`:
[v1.36.5](service/dynamodb/CHANGELOG.md#v1365-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dynamodbstreams`:
[v1.24.5](service/dynamodbstreams/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/ebs`:
[v1.27.5](service/ebs/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/ec2instanceconnect`:
[v1.27.5](service/ec2instanceconnect/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/ecr`:
[v1.36.5](service/ecr/CHANGELOG.md#v1365-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/ecrpublic`:
[v1.27.5](service/ecrpublic/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/ecs`:
[v1.49.2](service/ecs/CHANGELOG.md#v1492-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/efs`:
[v1.33.5](service/efs/CHANGELOG.md#v1335-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/eks`:
[v1.51.3](service/eks/CHANGELOG.md#v1513-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/eksauth`:
[v1.7.5](service/eksauth/CHANGELOG.md#v175-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/elasticinference`:
[v1.23.6](service/elasticinference/CHANGELOG.md#v1236-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/elasticsearchservice`:
[v1.32.5](service/elasticsearchservice/CHANGELOG.md#v1325-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/elastictranscoder`:
[v1.27.5](service/elastictranscoder/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/emr`:
[v1.46.3](service/emr/CHANGELOG.md#v1463-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/emrcontainers`:
[v1.33.5](service/emrcontainers/CHANGELOG.md#v1335-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/emrserverless`:
[v1.26.5](service/emrserverless/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/entityresolution`:
[v1.15.5](service/entityresolution/CHANGELOG.md#v1155-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/eventbridge`:
[v1.35.5](service/eventbridge/CHANGELOG.md#v1355-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/evidently`:
[v1.23.5](service/evidently/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/finspace`:
[v1.28.5](service/finspace/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/finspacedata`:
[v1.28.5](service/finspacedata/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/firehose`:
[v1.34.5](service/firehose/CHANGELOG.md#v1345-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/fis`:
[v1.30.5](service/fis/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/fms`:
[v1.38.3](service/fms/CHANGELOG.md#v1383-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/forecast`:
[v1.36.5](service/forecast/CHANGELOG.md#v1365-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/forecastquery`:
[v1.24.5](service/forecastquery/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/frauddetector`:
[v1.35.5](service/frauddetector/CHANGELOG.md#v1355-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/freetier`:
[v1.7.5](service/freetier/CHANGELOG.md#v175-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/fsx`:
[v1.49.5](service/fsx/CHANGELOG.md#v1495-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/gamelift`:
[v1.36.5](service/gamelift/CHANGELOG.md#v1365-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/geomaps`:
[v1.0.2](service/geomaps/CHANGELOG.md#v102-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/geoplaces`:
[v1.0.2](service/geoplaces/CHANGELOG.md#v102-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/georoutes`:
[v1.0.2](service/georoutes/CHANGELOG.md#v102-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/glacier`:
[v1.26.5](service/glacier/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/globalaccelerator`:
[v1.29.5](service/globalaccelerator/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/glue`:
[v1.101.2](service/glue/CHANGELOG.md#v11012-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/grafana`:
[v1.26.5](service/grafana/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/greengrass`:
[v1.27.5](service/greengrass/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/greengrassv2`:
[v1.35.5](service/greengrassv2/CHANGELOG.md#v1355-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/groundstation`:
[v1.31.5](service/groundstation/CHANGELOG.md#v1315-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/guardduty`:
[v1.51.1](service/guardduty/CHANGELOG.md#v1511-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/health`:
[v1.28.5](service/health/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/healthlake`:
[v1.28.5](service/healthlake/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/identitystore`:
[v1.27.5](service/identitystore/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/imagebuilder`:
[v1.38.3](service/imagebuilder/CHANGELOG.md#v1383-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/inspector`:
[v1.25.5](service/inspector/CHANGELOG.md#v1255-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/inspector2`:
[v1.32.5](service/inspector2/CHANGELOG.md#v1325-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/inspectorscan`:
[v1.7.5](service/inspectorscan/CHANGELOG.md#v175-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/internetmonitor`:
[v1.19.5](service/internetmonitor/CHANGELOG.md#v1195-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iot`:
[v1.59.5](service/iot/CHANGELOG.md#v1595-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iot1clickdevicesservice`:
[v1.23.5](service/iot1clickdevicesservice/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iot1clickprojects`:
[v1.23.5](service/iot1clickprojects/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotanalytics`:
[v1.26.5](service/iotanalytics/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotdataplane`:
[v1.26.5](service/iotdataplane/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotdeviceadvisor`:
[v1.31.5](service/iotdeviceadvisor/CHANGELOG.md#v1315-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotevents`:
[v1.27.5](service/iotevents/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/ioteventsdata`:
[v1.24.5](service/ioteventsdata/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotfleethub`:
[v1.24.5](service/iotfleethub/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotfleetwise`:
[v1.21.2](service/iotfleetwise/CHANGELOG.md#v1212-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotjobsdataplane`:
[v1.23.5](service/iotjobsdataplane/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotsecuretunneling`:
[v1.27.5](service/iotsecuretunneling/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotsitewise`:
[v1.43.5](service/iotsitewise/CHANGELOG.md#v1435-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotthingsgraph`:
[v1.25.5](service/iotthingsgraph/CHANGELOG.md#v1255-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iottwinmaker`:
[v1.24.5](service/iottwinmaker/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/iotwireless`:
[v1.44.5](service/iotwireless/CHANGELOG.md#v1445-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/ivschat`:
[v1.16.5](service/ivschat/CHANGELOG.md#v1165-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kafka`:
[v1.38.5](service/kafka/CHANGELOG.md#v1385-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kafkaconnect`:
[v1.21.5](service/kafkaconnect/CHANGELOG.md#v1215-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kendra`:
[v1.54.5](service/kendra/CHANGELOG.md#v1545-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kendraranking`:
[v1.11.5](service/kendraranking/CHANGELOG.md#v1115-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/keyspaces`:
[v1.15.2](service/keyspaces/CHANGELOG.md#v1152-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kinesis`:
[v1.32.5](service/kinesis/CHANGELOG.md#v1325-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kinesisanalytics`:
[v1.25.5](service/kinesisanalytics/CHANGELOG.md#v1255-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kinesisanalyticsv2`:
[v1.31.5](service/kinesisanalyticsv2/CHANGELOG.md#v1315-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kinesisvideo`:
[v1.27.5](service/kinesisvideo/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kinesisvideoarchivedmedia`:
[v1.27.5](service/kinesisvideoarchivedmedia/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kinesisvideomedia`:
[v1.22.5](service/kinesisvideomedia/CHANGELOG.md#v1225-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kinesisvideosignaling`:
[v1.23.5](service/kinesisvideosignaling/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kinesisvideowebrtcstorage`:
[v1.14.5](service/kinesisvideowebrtcstorage/CHANGELOG.md#v1145-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/kms`:
[v1.37.5](service/kms/CHANGELOG.md#v1375-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lakeformation`:
[v1.38.1](service/lakeformation/CHANGELOG.md#v1381-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lambda`:
[v1.64.3](service/lambda/CHANGELOG.md#v1643-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/launchwizard`:
[v1.8.5](service/launchwizard/CHANGELOG.md#v185-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lexmodelbuildingservice`:
[v1.28.5](service/lexmodelbuildingservice/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lexmodelsv2`:
[v1.49.5](service/lexmodelsv2/CHANGELOG.md#v1495-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lexruntimeservice`:
[v1.24.5](service/lexruntimeservice/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lexruntimev2`:
[v1.29.5](service/lexruntimev2/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/licensemanager`:
[v1.29.5](service/licensemanager/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
-
`github.com/aws/aws-sdk-go-v2/service/licensemanagerlinuxsubscriptions`:
[v1.14.5](service/licensemanagerlinuxsubscriptions/CHANGELOG.md#v1145-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
-
`github.com/aws/aws-sdk-go-v2/service/licensemanagerusersubscriptions`:
[v1.13.5](service/licensemanagerusersubscriptions/CHANGELOG.md#v1135-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lightsail`:
[v1.42.5](service/lightsail/CHANGELOG.md#v1425-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/location`:
[v1.42.5](service/location/CHANGELOG.md#v1425-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lookoutequipment`:
[v1.30.5](service/lookoutequipment/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lookoutmetrics`:
[v1.31.5](service/lookoutmetrics/CHANGELOG.md#v1315-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/lookoutvision`:
[v1.27.5](service/lookoutvision/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/m2`:
[v1.18.3](service/m2/CHANGELOG.md#v1183-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/machinelearning`:
[v1.28.5](service/machinelearning/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/macie2`:
[v1.43.5](service/macie2/CHANGELOG.md#v1435-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/mailmanager`:
[v1.6.3](service/mailmanager/CHANGELOG.md#v163-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/managedblockchain`:
[v1.26.5](service/managedblockchain/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/managedblockchainquery`:
[v1.16.5](service/managedblockchainquery/CHANGELOG.md#v1165-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/marketplaceagreement`:
[v1.6.5](service/marketplaceagreement/CHANGELOG.md#v165-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/marketplacecatalog`:
[v1.30.5](service/marketplacecatalog/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/marketplacecommerceanalytics`:
[v1.24.5](service/marketplacecommerceanalytics/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/marketplacedeployment`:
[v1.6.5](service/marketplacedeployment/CHANGELOG.md#v165-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/marketplaceentitlementservice`:
[v1.25.5](service/marketplaceentitlementservice/CHANGELOG.md#v1255-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/marketplacemetering`:
[v1.25.5](service/marketplacemetering/CHANGELOG.md#v1255-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/marketplacereporting`:
[v1.1.5](service/marketplacereporting/CHANGELOG.md#v115-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/mediaconnect`:
[v1.35.5](service/mediaconnect/CHANGELOG.md#v1355-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/mediaconvert`:
[v1.61.5](service/mediaconvert/CHANGELOG.md#v1615-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/medialive`:
[v1.62.5](service/medialive/CHANGELOG.md#v1625-2024-11-07)
 

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github/codeql-action](https://github.com/github/codeql-action)
| action | patch | `v4.31.0` -> `v4.31.2` |
|
[github/codeql-action](https://github.com/github/codeql-action)
| action | digest | `4e94bd1` -> `0499de3` |
| [helm/kind-action](https://github.com/helm/kind-action) |
action | minor | `v1.12.0` -> `v1.13.0` |
|
[lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action)
| action | minor | `v2.6.1` -> `v2.7.0` |
| lycheeverse/lychee-action | action | digest | `44b353b` -> `a8c4c7c` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v4.31.2`](https://github.com/github/codeql-action/compare/v4.31.1...v4.31.2)

[Compare
Source](https://github.com/github/codeql-action/compare/v4.31.1...v4.31.2)

###
[`v4.31.1`](https://github.com/github/codeql-action/compare/v4.31.0...v4.31.1)

[Compare
Source](https://github.com/github/codeql-action/compare/v4.31.0...v4.31.1)

</details>

<details>
<summary>helm/kind-action (helm/kind-action)</summary>

###
[`v1.13.0`](https://github.com/helm/kind-action/releases/tag/v1.13.0)

[Compare
Source](https://github.com/helm/kind-action/compare/v1.12.0...v1.13.0)

#### What's Changed

- chore: verify sha256sum of kubectl by
[@&open-telemetry#8203;felix-kaestner](https://github.com/felix-kaestner) in
[#&open-telemetry#8203;134](https://github.com/helm/kind-action/pull/134)
- Load GITHUB\_PATH in PATH to use correct binaries when creating
registry by [@&open-telemetry#8203;gotha](https://github.com/gotha) in
[#&open-telemetry#8203;133](https://github.com/helm/kind-action/pull/133)
- feat: Add cloud provider by
[@&open-telemetry#8203;waltermity](https://github.com/waltermity) in
[#&open-telemetry#8203;135](https://github.com/helm/kind-action/pull/135)
- chore: bump kind to v0.29.0 by
[@&open-telemetry#8203;pmalek](https://github.com/pmalek) in
[#&open-telemetry#8203;144](https://github.com/helm/kind-action/pull/144)
- Bump actions/checkout from 4.2.2 to 5.0.0 by
[@&open-telemetry#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&open-telemetry#8203;145](https://github.com/helm/kind-action/pull/145)
- bug: respect 'install\_only' action input value by
[@&open-telemetry#8203;mszostok](https://github.com/mszostok) in
[#&open-telemetry#8203;147](https://github.com/helm/kind-action/pull/147)
- bump kind and kubectl and also nodejs by
[@&open-telemetry#8203;cpanato](https://github.com/cpanato) in
[#&open-telemetry#8203;150](https://github.com/helm/kind-action/pull/150)

#### New Contributors

- [@&open-telemetry#8203;felix-kaestner](https://github.com/felix-kaestner)
made their first contribution in
[#&open-telemetry#8203;134](https://github.com/helm/kind-action/pull/134)
- [@&open-telemetry#8203;gotha](https://github.com/gotha) made their first
contribution in
[#&open-telemetry#8203;133](https://github.com/helm/kind-action/pull/133)
- [@&open-telemetry#8203;waltermity](https://github.com/waltermity) made
their first contribution in
[#&open-telemetry#8203;135](https://github.com/helm/kind-action/pull/135)
- [@&open-telemetry#8203;pmalek](https://github.com/pmalek) made their first
contribution in
[#&open-telemetry#8203;144](https://github.com/helm/kind-action/pull/144)
- [@&open-telemetry#8203;mszostok](https://github.com/mszostok) made their
first contribution in
[#&open-telemetry#8203;147](https://github.com/helm/kind-action/pull/147)

**Full Changelog**:
<helm/kind-action@v1...v1.13.0>

</details>

<details>
<summary>lycheeverse/lychee-action (lycheeverse/lychee-action)</summary>

###
[`v2.7.0`](https://github.com/lycheeverse/lychee-action/releases/tag/v2.7.0):
Version 2.7.0

[Compare
Source](https://github.com/lycheeverse/lychee-action/compare/v2.6.1...v2.7.0)

#### Breaking changes

If you're using `--base`, you must now provide either a URL (with
scheme) or an absolute local path. See `lychee --help` for more
information. If you want to resolve root-relative links in local files,
also see `--root-dir`.

#### What's Changed

- Bump peter-evans/create-issue-from-file from 5 to 6 by
[@&open-telemetry#8203;dependabot](https://github.com/dependabot)\[bot] in
[#&open-telemetry#8203;307](https://github.com/lycheeverse/lychee-action/pull/307)
- Upgrade checkout action from v4 to v5 by
[@&open-telemetry#8203;jacobdalamb](https://github.com/jacobdalamb) in
[#&open-telemetry#8203;310](https://github.com/lycheeverse/lychee-action/pull/310)
- Update lycheeVersion to v0.21.0 by
[@&open-telemetry#8203;github-actions](https://github.com/github-actions)\[bot]
in
[#&open-telemetry#8203;312](https://github.com/lycheeverse/lychee-action/pull/312)
See <https://github.com/lycheeverse/lychee/releases/tag/lychee-v0.21.0>
for the lychee changelog.

**Full Changelog**:
<lycheeverse/lychee-action@v2...v2.7.0>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Fully working windowsservicereceiver.

Performed testing by running:
- make test
- make lint

---------

Co-authored-by: Paulo Janotti <pjanotti@splunk.com>
This struct is not used outside carbonreceiver. It should not be part of
the public API of the component.
Reverts
open-telemetry#43852

Given that we provide pdata->zipkin API, we should keep providing the
curated API for Zipkin->pdata translation as long as we offer zipkin
receiver. It's being used in the Splunk distro where we don't want
diverge from the OTel specification.
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
This PR renames the Cisco OS receiver component name from
`ciscoosreceiver` to `ciscoos`.

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes

<!--Describe what testing was performed and which tests were added.-->
#### Testing

<!--Describe the documentation added.-->
#### Documentation
Updated README.md with all configuration examples using the new ciscoos 
<!--Please delete paragraphs that you did not use before submitting.-->
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [simple-git](https://github.com/steveukx/git-js)
([source](https://github.com/steveukx/git-js/tree/HEAD/simple-git))
| [`3.28.0` ->
`3.30.0`](https://renovatebot.com/diffs/npm/simple-git/3.28.0/3.30.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/simple-git/3.30.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/simple-git/3.28.0/3.30.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>steveukx/git-js (simple-git)</summary>

###
[`v3.30.0`](https://github.com/steveukx/git-js/blob/HEAD/simple-git/CHANGELOG.md#3300)

[Compare
Source](https://github.com/steveukx/git-js/compare/0b326b4f004ca53c7d406a223dce4cdcb19e6944...simple-git@3.30.0)

##### Minor Changes

-
[`bc77774`](https://github.com/steveukx/git-js/commit/bc77774):
Correctly identify current branch name when using `git.status` in a
cloned empty repo.

Previously `git.status` would report the current branch name as `No`.
Thank you to
[@&open-telemetry#8203;MaddyGuthridge](https://github.com/MaddyGuthridge) for
identifying this issue.

###
[`v3.29.0`](https://github.com/steveukx/git-js/blob/HEAD/simple-git/CHANGELOG.md#3290)

[Compare
Source](https://github.com/steveukx/git-js/compare/simple-git@3.28.0...0b326b4f004ca53c7d406a223dce4cdcb19e6944)

##### Minor Changes

-
[`240ec64`](https://github.com/steveukx/git-js/commit/240ec64):
Support for absolute paths on Windows when using `git.checkIngore`,
previously Windows would report
  paths with duplicate separators `\\\\` between directories.

Following this change all paths returned from `git.checkIgnore` will be
normalized through `node:path`,
this should have no impact on non-windows users where the `git` binary
doesn't wrap absolute paths with
  quotes.

Thanks to
[@&open-telemetry#8203;Maxim-Mazurok](https://github.com/Maxim-Mazurok) for
reporting this issue.

-
[`9872f84`](https://github.com/steveukx/git-js/commit/9872f84):
Support the use of `git.branch(['--show-current'])` to limit the branch
list to only the current branch.

Thanks to [@&open-telemetry#8203;peterbe](https://github.com/peterbe) for
pointing out the use-case.

-
[`5736bd8`](https://github.com/steveukx/git-js/commit/5736bd8):
Change to biome for lint and format

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mterhar and others added 24 commits November 18, 2025 09:47
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

Allows the libhoney receiver to receive individual events (not in an
array) in either msgpack or json format.

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue

Fixes open-telemetry#44026 
 
<!--Describe what testing was performed and which tests were added.-->
#### Testing

Added several test cases to ensure 

<!--Describe the documentation added.-->
#### Documentation

These are bugs so the existing documentation is good. 

<!--Please delete paragraphs that you did not use before submitting.-->
…b23ca (open-telemetry#44361)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| mcr.microsoft.com/mssql/server | final | digest | `2c80e54` ->
`54b23ca` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMTMuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…elemetry#44365)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

Supercedes open-telemetry#44362

I think with this version the govc had been updated to at least fit our
use case, just needed to update the Test IDs based off the new version.


<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes

<!--Describe what testing was performed and which tests were added.-->
#### Testing

<!--Describe the documentation added.-->
#### Documentation

<!--Please delete paragraphs that you did not use before submitting.-->
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github/codeql-action](https://github.com/github/codeql-action)
| action | patch | `v4.31.3` -> `v4.31.4` |
|
[github/codeql-action](https://github.com/github/codeql-action)
| action | digest | `014f16e` -> `e12f017` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v4.31.4`](https://github.com/github/codeql-action/compare/v4.31.3...v4.31.4)

[Compare
Source](https://github.com/github/codeql-action/compare/v4.31.3...v4.31.4)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMTMuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) |
`v1.76.0` -> `v1.77.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.77.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.76.0/v1.77.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>grpc/grpc-go (google.golang.org/grpc)</summary>

###
[`v1.77.0`](https://github.com/grpc/grpc-go/releases/tag/v1.77.0):
Release 1.77.0

[Compare
Source](https://github.com/grpc/grpc-go/compare/v1.76.0...v1.77.0)

##### API Changes

- mem: Replace the `Reader` interface with a struct for better
performance and maintainability.
([#&open-telemetry#8203;8669](https://github.com/grpc/grpc-go/issues/8669))

##### Behavior Changes

- balancer/pickfirst: Remove support for the old `pick_first` LB policy
via the environment variable
`GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false`. The new `pick_first`
has been the default since `v1.71.0`.
([#&open-telemetry#8203;8672](https://github.com/grpc/grpc-go/issues/8672))

##### Bug Fixes

- xdsclient: Fix a race condition in the ADS stream implementation that
could result in `resource-not-found` errors, causing the gRPC client
channel to move to `TransientFailure`.
([#&open-telemetry#8203;8605](https://github.com/grpc/grpc-go/issues/8605))
- client: Ignore HTTP status header for gRPC streams.
([#&open-telemetry#8203;8548](https://github.com/grpc/grpc-go/issues/8548))
- client: Set a read deadline when closing a transport to prevent it
from blocking indefinitely on a broken connection.
([#&open-telemetry#8203;8534](https://github.com/grpc/grpc-go/issues/8534))
- Special Thanks:
[@&open-telemetry#8203;jgold2-stripe](https://github.com/jgold2-stripe)
- client: Fix a bug where default port 443 was not automatically added
to addresses without a specified port when sent to a proxy.
- Setting environment variable
`GRPC_EXPERIMENTAL_ENABLE_DEFAULT_PORT_FOR_PROXY_TARGET=false` disables
this change; please file a bug if any problems are encountered as we
will remove this option soon.
([#&open-telemetry#8203;8613](https://github.com/grpc/grpc-go/issues/8613))
- balancer/pickfirst: Fix a bug where duplicate addresses were not being
ignored as intended.
([#&open-telemetry#8203;8611](https://github.com/grpc/grpc-go/issues/8611))
- server: Fix a bug that caused overcounting of channelz metrics for
successful and failed streams.
([#&open-telemetry#8203;8573](https://github.com/grpc/grpc-go/issues/8573))
- Special Thanks: [@&open-telemetry#8203;hugehoo](https://github.com/hugehoo)
- balancer/pickfirst: When configured, shuffle addresses in resolver
updates that lack endpoints. Since gRPC automatically adds endpoints to
resolver updates, this bug only affects custom LB policies that delegate
to `pick_first` but don't set endpoints.
([#&open-telemetry#8203;8610](https://github.com/grpc/grpc-go/issues/8610))
- mem: Clear large buffers before re-using.
([#&open-telemetry#8203;8670](https://github.com/grpc/grpc-go/issues/8670))

##### Performance Improvements

- transport: Reduce heap allocations to reduce time spent in garbage
collection.
([#&open-telemetry#8203;8624](https://github.com/grpc/grpc-go/issues/8624),
[#&open-telemetry#8203;8630](https://github.com/grpc/grpc-go/issues/8630),
[#&open-telemetry#8203;8639](https://github.com/grpc/grpc-go/issues/8639),
[#&open-telemetry#8203;8668](https://github.com/grpc/grpc-go/issues/8668))
- transport: Avoid copies when reading and writing Data frames.
([#&open-telemetry#8203;8657](https://github.com/grpc/grpc-go/issues/8657),
[#&open-telemetry#8203;8667](https://github.com/grpc/grpc-go/issues/8667))
- mem: Avoid clearing newly allocated buffers.
([#&open-telemetry#8203;8670](https://github.com/grpc/grpc-go/issues/8670))

##### New Features

- outlierdetection: Add metrics specified in [gRFC
A91](https://github.com/grpc/proposal/blob/master/A91-outlier-detection-metrics.md).
([#&open-telemetry#8203;8644](https://github.com/grpc/grpc-go/issues/8644))
- Special Thanks:
[@&open-telemetry#8203;davinci26](https://github.com/davinci26),
[@&open-telemetry#8203;PardhuKonakanchi](https://github.com/PardhuKonakanchi)
- stats/opentelemetry: Add support for optional label
`grpc.lb.backend_service` in per-call metrics
([#&open-telemetry#8203;8637](https://github.com/grpc/grpc-go/issues/8637))
- xds: Add support for JWT Call Credentials as specified in [gRFC
A97](https://github.com/grpc/proposal/blob/master/A97-xds-jwt-call-creds.md).
Set environment variable
`GRPC_EXPERIMENTAL_XDS_BOOTSTRAP_CALL_CREDS=true` to enable this
feature.
([#&open-telemetry#8203;8536](https://github.com/grpc/grpc-go/issues/8536))
- Special Thanks:
[@&open-telemetry#8203;dimpavloff](https://github.com/dimpavloff)
- experimental/stats: Add support for up/down counters.
([#&open-telemetry#8203;8581](https://github.com/grpc/grpc-go/issues/8581))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMTMuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
…y#44377)

This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/DataDog/datadog-agent/comp/core/config](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fcore%2fconfig/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fcore%2fconfig/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/core/hostname/hostnameinterface](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fcore%2fhostname%2fhostnameinterface/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fcore%2fhostname%2fhostnameinterface/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/core/log/def](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fcore%2flog%2fdef/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fcore%2flog%2fdef/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/core/tagger/types](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fcore%2ftagger%2ftypes/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fcore%2ftagger%2ftypes/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fforwarder%2fdefaultforwarder/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fforwarder%2fdefaultforwarder/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/logs/agent/config](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2flogs%2fagent%2fconfig/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2flogs%2fagent%2fconfig/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2flogsagentpipeline/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2flogsagentpipeline/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/otelcol/logsagentpipeline/logsagentpipelineimpl](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2flogsagentpipeline%2flogsagentpipelineimpl/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2flogsagentpipeline%2flogsagentpipelineimpl/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/logsagentexporter](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2fotlp%2fcomponents%2fexporter%2flogsagentexporter/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2fotlp%2fcomponents%2fexporter%2flogsagentexporter/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/exporter/serializerexporter](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2fotlp%2fcomponents%2fexporter%2fserializerexporter/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2fotlp%2fcomponents%2fexporter%2fserializerexporter/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/otelcol/otlp/components/metricsclient](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2fotlp%2fcomponents%2fmetricsclient/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2fotlp%2fcomponents%2fmetricsclient/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2fotlp%2ftestutil/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fotelcol%2fotlp%2ftestutil/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/serializer/logscompression](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fserializer%2flogscompression/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2fserializer%2flogscompression/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/comp/trace/compression/impl-gzip](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2ftrace%2fcompression%2fimpl-gzip/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fcomp%2ftrace%2fcompression%2fimpl-gzip/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/config/model](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fconfig%2fmodel/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fconfig%2fmodel/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/config/setup](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fconfig%2fsetup/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fconfig%2fsetup/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/config/utils](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fconfig%2futils/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fconfig%2futils/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/config/viperconfig](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fconfig%2fviperconfig/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fconfig%2fviperconfig/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/logs/sources](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2flogs%2fsources/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2flogs%2fsources/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/metrics](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fmetrics/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fmetrics/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/obfuscate](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fobfuscate/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fobfuscate/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/inframetadata](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fopentelemetry-mapping-go%2finframetadata/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fopentelemetry-mapping-go%2finframetadata/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/attributes](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fopentelemetry-mapping-go%2fotlp%2fattributes/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fopentelemetry-mapping-go%2fotlp%2fattributes/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/opentelemetry-mapping-go/otlp/metrics](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fopentelemetry-mapping-go%2fotlp%2fmetrics/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fopentelemetry-mapping-go%2fotlp%2fmetrics/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/proto](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fproto/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fproto/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/serializer](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fserializer/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2fserializer/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/trace](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2ftrace/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2ftrace/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/util/compression](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2fcompression/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2fcompression/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/util/hostname/validate](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2fhostname%2fvalidate/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2fhostname%2fvalidate/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/util/log](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2flog/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2flog/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/util/option](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2foption/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2foption/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/DataDog/datadog-agent/pkg/util/quantile](https://github.com/DataDog/datadog-agent)
| `v0.73.0-rc.7` -> `v0.73.0-rc.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2fquantile/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fdatadog-agent%2fpkg%2futil%2fquantile/v0.73.0-rc.7/v0.73.0-rc.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMTMuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: Yang Song <songy23@users.noreply.github.com>
)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

This change prevents log collection from being fully halted by a single
log with a NULL value. Instead, logs should drop NULL values, and other
logs will be collected normally.

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes
open-telemetry#43984

<!--Describe what testing was performed and which tests were added.-->
#### Testing

Unit testing to ensure that the receiver would not error upon receiving
`ErrNullValueWarning` from DBClient.QueryRows.
Manual testing with a distribution of the collector built off of this
branch.
…_file are missing and add test case (open-telemetry#43911) (open-telemetry#44093)

### Summary

This PR fixes a bug in the **ClickHouse exporter** where the TLS
configuration was ignored
if neither `cert_file` nor `key_file` were set — even when a valid
`ca_file` was provided.
As a result, server-side TLS verification setups (CA-only) failed
unexpectedly.

---

###  Root Cause

In the previous logic inside `buildClickHouseOptions()`, TLS
initialization was conditioned
on both `cert_file` and `key_file` being provided.  
However, for many ClickHouse deployments, only a `ca_file` is necessary
to validate
the server certificate without using client-side authentication.

This caused the exporter to skip TLS setup entirely when only `ca_file`
was specified.

---

### Fix Implemented

- Updated `buildClickHouseOptions()` to **initialize TLS** even when
only a `ca_file` is set.
- Ensured server-side TLS verification is correctly configured.  
- Added a new regression test to prevent future regressions:
  
  ```go
  TestBuildClickHouseOptions_WithCAFileOnly

This test verifies:
- TLS initialization occurs when only a ca_file is present.
- The function handles invalid CA files gracefully without panic.
- Exporter logic remains stable under all TLS configurations.

---

### Test Plan

Run locally:
```
cd exporter/clickhouseexporter
go test -v ./...
```

Expected output:
```
=== RUN   TestBuildClickHouseOptions_WithCAFileOnly
--- PASS: TestBuildClickHouseOptions_WithCAFileOnly (0.00s)
PASS
ok  	github.com/open-telemetry/opentelemetry-collector-contrib/exporter/clickhouseexporter	0.8s
```

---

### Behavior Before

- TLS configuration was ignored when cert_file and key_file were not
provided.
- Exporter silently defaulted to a non-TLS connection even if a ca_file
existed.

---

### Behavior After

- TLS setup is respected when only a ca_file is configured.
- Server certificate validation now works as expected.
- Added unit test ensures this behavior remains protected against
regressions.

---

### Affected Files

- exporter/clickhouseexporter/config.go
- exporter/clickhouseexporter/config_test.go

---

### Related Issue

Fixes: open-telemetry#43911 

---

### Additional Notes

This improvement ensures the ClickHouse exporter correctly handles
standard TLS verification
scenarios where a root CA file is provided but no client certificates
are required.

It brings the exporter in line with expected ClickHouse server security
behavior and adds
a regression test to safeguard future changes.

---------

Co-authored-by: Paulo Janotti <pjanotti@splunk.com>
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| redis | final | minor | `8.2.3` -> `8.4.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMTMuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…d/common to v1.2.2 (open-telemetry#44383)

This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://github.com/tencentcloud/tencentcloud-sdk-go)
| `v1.2.1` -> `v1.2.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.2.2?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.2.1/v1.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>tencentcloud/tencentcloud-sdk-go
(github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common)</summary>

###
[`v1.2.2`](https://github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.2.1...v1.2.2)

[Compare
Source](https://github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.2.1...v1.2.2)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMTMuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: Yang Song <songy23@users.noreply.github.com>
…v1.59.0 (open-telemetry#44379)

This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2)
| `v1.58.9` -> `v1.59.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fcloudwatchlogs/v1.59.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fcloudwatchlogs/v1.58.9/v1.59.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>aws/aws-sdk-go-v2
(github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs)</summary>

###
[`v1.59.0`](https://github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2025-04-29)

#### Module Highlights

- `github.com/aws/aws-sdk-go-v2/service/connectcases`:
[v1.25.0](service/connectcases/CHANGELOG.md#v1250-2025-04-29)
- **Feature**: Introduces CustomEntity as part of the UserUnion data
type. This field is used to indicate the entity who is performing the
API action.
- `github.com/aws/aws-sdk-go-v2/service/dataexchange`:
[v1.34.3](service/dataexchange/CHANGELOG.md#v1343-2025-04-29)
- **Bug Fix**: **BREAKING CHANGE**: The type of
Dataexchange#UpdateRevision$Finalized has been changed from `bool` to
`*bool`. efore this change, the field was incorrectly marked as having a
default value of false by the service, which made it functionally
impossible for users to set this value to false
- `github.com/aws/aws-sdk-go-v2/service/kinesis`:
[v1.34.0](service/kinesis/CHANGELOG.md#v1340-2025-04-29)
- **Feature**: Amazon KDS now supports tagging and attribute-based
access control (ABAC) for enhanced fan-out consumers.
- `github.com/aws/aws-sdk-go-v2/service/pinpointsmsvoicev2`:
[v1.20.0](service/pinpointsmsvoicev2/CHANGELOG.md#v1200-2025-04-29)
- **Feature**: AWS End User Messaging has added MONITOR and FILTER
functionality to SMS Protect.
- `github.com/aws/aws-sdk-go-v2/service/qbusiness`:
[v1.26.0](service/qbusiness/CHANGELOG.md#v1260-2025-04-29)
- **Feature**: Add support for anonymous user access for Q Business
applications
- `github.com/aws/aws-sdk-go-v2/service/sagemaker`:
[v1.189.0](service/sagemaker/CHANGELOG.md#v11890-2025-04-29)
- **Feature**: Introduced support for P5en instance types on SageMaker
Studio for JupyterLab and CodeEditor applications.
- `github.com/aws/aws-sdk-go-v2/service/sagemakermetrics`:
[v1.14.0](service/sagemakermetrics/CHANGELOG.md#v1140-2025-04-29)
- **Feature**: SageMaker Metrics Service now supports FIPS endpoint in
all US and Canada Commercial regions.
- `github.com/aws/aws-sdk-go-v2/service/ssm`:
[v1.59.0](service/ssm/CHANGELOG.md#v1590-2025-04-29)
- **Feature**: This release adds support for just-In-time node access in
AWS Systems Manager. Just-in-time node access enables customers to move
towards zero standing privileges by requiring operators to request
access and obtain approval before remotely connecting to nodes managed
by the SSM Agent.
- `github.com/aws/aws-sdk-go-v2/service/ssmguiconnect`:
[v1.0.0](service/ssmguiconnect/CHANGELOG.md#v100-2025-04-29)
  - **Release**: New AWS service client module
- **Feature**: This release adds API support for the connection
recording GUI Connect feature of AWS Systems Manager

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMTMuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: Yang Song <songy23@users.noreply.github.com>
…emetry#44388)

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes
open-telemetry#44280
…tic Cloud IDs when sent with multiple dollar sign separators (open-telemetry#44325)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

The CloudID decoder was incorrectly using `strings.Cut()`, which only
splits at the first delimiter, resulting in malformed URLs when the
decoded CloudID contained multiple `$` separators. Changed to use
`strings.Split()` to match the reference implementation from the
[go-elasticsearch](https://github.com/elastic/go-elasticsearch/blob/4739f334675880df102135bcca6104c8c63b59db/elasticsearch.go#L474)
library.

<!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes open-telemetry#44306

<!--Describe what testing was performed and which tests were added.-->
#### Testing

Added tests to validate this behaviour and the expected output.

Signed-off-by: Paulo Dias <paulodias.gm@gmail.com>
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
…elemetry#44367)

This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[gitlab.com/gitlab-org/api/client-go](https://gitlab.com/gitlab-org/api/client-go)
| `v0.159.0` -> `v0.160.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/gitlab.com%2fgitlab-org%2fapi%2fclient-go/v0.160.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/gitlab.com%2fgitlab-org%2fapi%2fclient-go/v0.159.0/v0.160.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>gitlab-org/api/client-go
(gitlab.com/gitlab-org/api/client-go)</summary>

###
[`v0.160.0`](https://gitlab.com/gitlab-org/api/client-go/tags/v0.160.0)

[Compare
Source](https://gitlab.com/gitlab-org/api/client-go/compare/v0.159.0...v0.160.0)

#### 0.160.0

##### 🚀 Features

- feat (project_members): Add show_seat_info option to ProjectMembers
([!2572](https://gitlab.com/gitlab-org/api/client-go/-/merge_requests/2572))
by [Zubeen](https://gitlab.com/syedzubeen)

##### 🔄 Other Changes

- refactor: fix modernize lint issues
([!2574](https://gitlab.com/gitlab-org/api/client-go/-/merge_requests/2574))
by [Oleksandr Redko](https://gitlab.com/alexandear)
- chore(deps): update module cel.dev/expr to v0.25.1
([!2573](https://gitlab.com/gitlab-org/api/client-go/-/merge_requests/2573))
by [GitLab Dependency
Bot](https://gitlab.com/gitlab-dependency-update-bot)
- docs(no-release): format examples, update pkg doc url
([!2543](https://gitlab.com/gitlab-org/api/client-go/-/merge_requests/2543))
by [Oleksandr Redko](https://gitlab.com/alexandear)

###
[0.160.0](https://gitlab.com/gitlab-org/api/client-go/compare/v0.159.0...v0.160.0)
(2025-11-12)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMy41IiwidXBkYXRlZEluVmVyIjoiNDIuMTMuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: Yang Song <songy23@users.noreply.github.com>
…ter configurable (open-telemetry#43799)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

New optional configuration flag `drop_tags` has been added to SignalFx
Exporter to allow users to disable tags metadata sending.

This feature has been introduced due to a common issue among Splunk
Observability customers when they're receiving more tags than allowed
limit.

<!--Describe what testing was performed and which tests were added.-->
#### Testing

- added unit test to check if `drop_tags` flag is working

<!--Describe the documentation added.-->
#### Documentation

- added new config option description in README file

<!--Please delete paragraphs that you did not use before submitting.-->
…ensions (open-telemetry#44120)

#### Description
This PR adds support for chaining the `headersetter` extension with
other authentication extensions (e.g., OAuth2).
It introduces a new configuration parameter `additional_auth` in
headersetter and ensures that the additional auth extension is started
first using the Dependent interface.

#### Link to tracking issue
Fixes
[open-telemetry#43935](open-telemetry#43935)

---------

Signed-off-by: Kushal Shukla <kushalshukla110@gmail.com>
…4101)

<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description

Add implementation to the googlecloudpubsubpush receiver.

<!--Describe what testing was performed and which tests were added.-->
#### Testing

Unit tests added.

<!--Describe the documentation added.-->
#### Documentation

README already up to date.
#### Description
Still saw failures occasionally in scoped-test due to not enough device
space so apply the script too. Similar to
open-telemetry#44351
…try#44402)

#### Description

Adds yaml formatting to collector configs in issue templates.
@eladcon eladcon changed the title merge with upstream latest [chore] merge with upstream latest Nov 26, 2025
@eladcon eladcon merged commit a120226 into main Dec 1, 2025
151 of 174 checks passed
@eladcon eladcon deleted the merge-latest branch December 1, 2025 13:43
@amir-jakoby

Copy link
Copy Markdown

SAW-5522

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.