Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/2.42.32.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@
"category": "Redshift Data API Service",
"contributor": "",
"description": "The BatchExecuteStatement API now supports named SQL parameters, enabling secure batch queries with parameterized values. This enhancement helps prevent SQL injection vulnerabilities and improves query reusability."
},
{
"type": "bugfix",
"category": "AWS CRT HTTP Client",
"contributor": "",
"description": "Rolled back enabling default connection health monitoring for CRT HTTP clients"
}
]
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,11 @@ Special thanks to the following contributors to this release:
- ### Features
- The BatchExecuteStatement API now supports named SQL parameters, enabling secure batch queries with parameterized values. This enhancement helps prevent SQL injection vulnerabilities and improves query reusability.

## __AWS CRT HTTP Client__
- ### Bugfixes
- Rolled back enabling default connection health monitoring for CRT HTTP clients


# __2.42.31__ __2026-04-08__
## __AWS Backup__
- ### Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,7 @@ public interface Builder extends SdkAsyncHttpClient.Builder<AwsCrtAsyncHttpClien
* then the connection is considered unhealthy and will be shut down.
*
* <p>
* If not explicitly configured, a default health configuration is applied with a minimum throughput of 1 byte per
* second and a throughput failure interval of 30 seconds. The failure interval is derived from the read/write timeout
* settings and will change if those are overridden by service specific defaults.
* Disabled by default.
*
* @param healthChecksConfiguration The health checks config to use
* @return The builder of the method chaining.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,7 @@ public interface Builder extends SdkHttpClient.Builder<AwsCrtHttpClient.Builder>
* then the connection is considered unhealthy and will be shut down.
*
* <p>
* If not explicitly configured, a default health configuration is applied with a minimum throughput of 1 byte per
* second and a throughput failure interval of 30 seconds. The failure interval is derived from the read/write timeout
* settings and will change if those are overridden by service specific defaults.
* Disabled by default.
*
* @param healthChecksConfiguration The health checks config to use
* @return The builder of the method chaining.
Expand Down
Loading