[receiver/prometheusreceiver] fix stalness tracking#43925
Merged
songy23 merged 3 commits intoopen-telemetry:mainfrom Oct 31, 2025
Merged
[receiver/prometheusreceiver] fix stalness tracking#43925songy23 merged 3 commits intoopen-telemetry:mainfrom
songy23 merged 3 commits intoopen-telemetry:mainfrom
Conversation
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. Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
We are now correctly tracking what series were added to "storage". Which means that the number of series added is only 13 on the first scrape. Debug logs: Running tool: /home/krajo/opt/go/bin/go test -timeout 30s -run ^TestEndToEndSummarySupport$ github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter number of series added: 13 number of series added: 0 number of series added: 0 number of series added: 0 number of series added: 0 number of series added: 0 number of series added: 0 number of series added: 0 Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
krajorama
commented
Oct 31, 2025
| `. HELP test_scrape_series_added The approximate number of new series in this scrape`, | ||
| `. TYPE test_scrape_series_added gauge`, | ||
| `test_scrape_series_added.instance="127.0.0.1:.*",job="otel-collector",otel_scope_name=\"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver\",otel_scope_schema_url=\"\",otel_scope_version=\"latest\". 13 .*`, | ||
| `test_scrape_series_added.instance="127.0.0.1:.*",job="otel-collector",otel_scope_name=\"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver\",otel_scope_schema_url=\"\",otel_scope_version=\"latest\". (0|13) .*`, |
Member
Author
There was a problem hiding this comment.
Note to reviewers: now we correctly tracking what series were added to "storage", i.e. successfully processed by the receiver. Which means that the number of series added is only 13 on the first scrape. Debug printf:
Running tool: /home/krajo/opt/go/bin/go test -timeout 30s -tags requires_docker,stringlabels -run ^TestEndToEndSummarySupport$ github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter -timeout=5m
number of series added: 13
number of series added: 0
number of series added: 0
number of series added: 0
number of series added: 0
number of series added: 0
number of series added: 0
number of series added: 0
dashpole
approved these changes
Oct 31, 2025
jelly-afk
pushed a commit
to jelly-afk/opentelemetry-collector-contrib
that referenced
this pull request
Nov 6, 2025
…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>
dyl10s
pushed a commit
to dyl10s/opentelemetry-collector-contrib
that referenced
this pull request
Nov 21, 2025
…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>
eladcon
added a commit
to Sawmills/opentelemetry-collector-contrib
that referenced
this pull request
Dec 1, 2025
* [receiver/prometheusreceiver] fix stalness tracking (#43925)
<!--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 #43890 there was the PR
https://github.com/prometheus/prometheus/pull/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. #1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes #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>
* [chore][prometheusreceiver]: safer and quicker tests (#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>
* [chore] Update connection method of Cisco OS Receiver (#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. #1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/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.-->
* [chore] Add missing stability levels to processors metrics (#43953)
to unblock core collector dependency upgrade
* Remove unnecessary full copy of maps/slices when setting value on sub-map (#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
https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/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>
* [chore] Update datadog-agent to recent pseudo-version (#43879)
#### Description
This PR updates all dependencies on the datadog-agent repo to a recent
pseudo-version past:
- [this PR](https://github.com/DataDog/datadog-agent/pull/41710), which
should hopefully fix "ambiguous import" issues caused by
https://github.com/googleapis/go-genproto/issues/1015
- [this PR](https://github.com/DataDog/datadog-agent/pull/42268), which
should fix #43594
* Add changelog for logging change (#43956)
#### Description
I forgot to add a release note for some of the behavior changes
introduced as part of the dependency upgrade in #43879.
* [chore] Update core dependencies (#43957)
replaces
https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/43955
---------
Signed-off-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
* [chore] Update metadata (#43958)
<!--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. #1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/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.-->
* [chore] Remove remaining openshift replaces (#43963)
* [receiver/jmx] unexport InsertDefault (#43965)
* [pkg/ottl] Support dynamic pattern key in keep_keys and keep_matching_keys functions (#43729)
Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>
* [processor/tailsampling] fix benchmarks (#43947)
Several of the benchmarks were failing to run, this fixes them all for
future use.
* Allow to filter whole resource in the filter processor (#43968)
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>
* [chore] Update core dependencies (#43986)
This PR updates the opentelemetry-collector modules to
open-telemetry/opentelemetry-collector@f2bced23bda7c64bfdec8dfb44704f7f35a1d2c5
---------
Signed-off-by: otelbot <197425009+otelbot@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
* [chore] Prepare release 0.139.0 (#43987)
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>
* Fix issue with LookbackTime calculation (#43944)
<!--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. #1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes
https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/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.-->
* [receiver/googlecloudpubsub] Delete and inline functions used for tests (#43964)
* [exporter/azureblob] add serial number and time parsing options to blob name format (#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. #1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Fixes #43603 and #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.-->
* [receiver/carbon] unexport API (#43966)
<!--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
* [chore] Add full support for AWS ELB logs. (#43934)
<!--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. #1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Refs #43757
* [receiver/github] add include_span_events for workflow run and job spans (#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 #43180 but does not fix.
#### Testing
updated tests
#### Documentation
updated readme
---------
Co-authored-by: Curtis Robert <crobert@splunk.com>
* [systemdreceiver] Add support for scraping unit status (#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 #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. #1234) or full URL to issue, if applicable. -->
#### Link to tracking issue
Part of #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>
* Update All github.com/aws packages (#43989)
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/aws/aws-sdk-go-v2](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.39.4` -> `v1.39.5` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/config](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.31.15` -> `v1.31.16` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/credentials](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.18.19` -> `v1.18.20` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.20.19` -> `v1.20.20` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/feature/ec2/imds](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.18.11` -> `v1.18.12` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.20.1` -> `v1.20.2` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.58.5` -> `v1.58.6` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/dynamodb](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.52.2` -> `v1.52.3` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/ec2](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.259.0` -> `v1.261.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/ecs](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.66.0` -> `v1.67.1` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/kinesis](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.41.0` -> `v1.42.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/s3](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.89.0` -> `v1.89.1` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.39.9` -> `v1.39.10` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/servicediscovery](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.39.12` -> `v1.39.13` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/sqs](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.42.11` -> `v1.42.12` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/sts](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.38.9` -> `v1.39.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/xray](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.36.7` -> `v1.36.8` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [github.com/aws/smithy-go](https://redirect.github.com/aws/smithy-go)
| `v1.23.1` -> `v1.23.2` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](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://redirect.github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2024-11-07)
[Compare
Source](https://redirect.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/aw…
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
In the dependency upgrade #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.
addRefhere: https://github.com/prometheus/prometheus/blob/c8f1de18a7870e5dc99ed50119c194691c41e41c/scrape/scrape.go#L1089Link to tracking issue
Fixes #43893
Testing
Un-skip related tests.