-
Notifications
You must be signed in to change notification settings - Fork 863
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Salande/merge master acctid #4978
Merged
cenedhryn
merged 296 commits into
feature/master/accountid-endpoint-routing
from
salande/merge-master-acctid
Feb 29, 2024
Merged
Salande/merge master acctid #4978
cenedhryn
merged 296 commits into
feature/master/accountid-endpoint-routing
from
salande/merge-master-acctid
Feb 29, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…or Amazon MWAA environments.
…ddress to include direction to add path when providing a JSON file.
…h input documents.
…e08f15750 Pull request: release <- staging/22b991eb-2caa-49ef-9691-57de08f15750
* chore: a more polite closed issue message * chore: relax stale issue timing
Modifying the SDK client configuration at the request level uses extra memory, because it requires copying the existing configuration map. Before this change, we always modify the client configuration with each request to add the client instance. This change moves this modification to the client-creation, so that the configuration doesn't need to be copied unless plugins also modify the configuration. This change also removes the conditional logic that only added the client for S3, which simplifies the code generator.
…d new skipDeletionCheck to DeleteProject which also automatically deletes dependent objects
…c828dcbe6 Pull request: release <- staging/6a11e764-329c-484d-8b19-653c828dcbe6
1. Do not call SignerProperty.toString() whenever required properties are read. 2. Check if an SdkHttpRequest is an SdkHttpFullRequest before performing a full conversion to the latter.
1. Removed apply*Hack method. This method wasn't doing anything, because its side effects were immediately overridden. 2. Do not modify the execution context in the modify* methods unless the interceptor requests a modification. The time added by the comparisons are less than the cost of always modifying the interceptor context, because modifying the execution context is relatively rare.
…sed by flexible checksums in S3. (#4858) Before this change, our chunk encoding logic would copy customer data five times: 1. [From the customer's stream into a byte array.](https://github.com/aws/aws-sdk-java-v2/blob/6040b2be6731e4b5ef64e775a2cfffb07d76766c/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer/chunkedencoding/ChunkedEncodedInputStream.java#L106-L107) 2. [From the byte array into a slightly smaller byte array.](https://github.com/aws/aws-sdk-java-v2/blob/6040b2be6731e4b5ef64e775a2cfffb07d76766c/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer/chunkedencoding/ChunkedEncodedInputStream.java#L111) 3. [From the smaller byte array into a byte array output stream.](https://github.com/aws/aws-sdk-java-v2/blob/6040b2be6731e4b5ef64e775a2cfffb07d76766c/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer/chunkedencoding/ChunkedEncodedInputStream.java#L171) 4. [From the byte array output stream into an array.](https://github.com/aws/aws-sdk-java-v2/blob/6040b2be6731e4b5ef64e775a2cfffb07d76766c/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer/chunkedencoding/ChunkedEncodedInputStream.java#L149) 5. [From the array into the output array.](https://github.com/aws/aws-sdk-java-v2/blob/6040b2be6731e4b5ef64e775a2cfffb07d76766c/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer/chunkedencoding/ChunkedEncodedInputStream.java#L85) After this change, the logic will copy the data twice: 1. From the customer's stream into a byte array. 2. From the byte array into the output array. There's a path to make it only one copy, but it requires the chunk encoded input stream to know the length of the underlying stream so that it can detect when the last chunk will be encountered. This will require additional piping, so we can do it in a follow-up PR.
…S3 2. Fix Maven warnings (#4859)
…draining intervals for Network Load Balancers.
… scan existing resources in your account and select resources to generate a template for a new or existing CloudFormation stack.
…onal Duration parameter to StateManager Associations. This allows customers to specify how long an apply-only-on-cron association execution should run. Once the specified Duration is out all the ongoing cancellable commands or automations are cancelled.
…a131f31e5 Pull request: release <- staging/590b85ab-f197-473d-a0c3-616a131f31e5
The original check checks whether the tag *exists* in the local and then tries to remove it from the public repo. However, it's possible that the tag is in the private repo, where it might not exists (refs from both remotes are present locally). This commit fixes this by explicitly check if the tag exists in the public repo and only then will it try to delete it.
…for gp3 data volumes for Multi-AZ DB Clusters.
… with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API.
…433c12aee Pull request: release <- staging/0efbc641-68ea-420b-94c4-c06433c12aee
* Remove the use of the legacy signer * Remove extra whitespace * Small commit to kick the build * Remove the profiles dependency that is not needed anymore
…oad (#4951) * Enable transfer listener for Java-based TransferManager multipart upload * Add Java Progress Listener and refactor * Refactoring * Fix merge * Address comments * Address comments * Add changelog entry * Make NoOpPublisherListener static * Remove static modifier
…p client. (#4962) * Support Non proxy host settings in the ProxyConfiguration for Crt http client. * Handled comments
…rces after they are created
…45e1b6492 Pull request: release <- staging/d5590a20-fdb4-4c31-87db-06445e1b6492
Revert "Support Non proxy host settings in the ProxyConfiguration for Crt http client. (#4962)"
…RequestBody#writeInputStream` could get stuck if any of the multipart request fails. (#4970)
Re-enable japicmp for S3
Quality Gate passedIssues Measures |
cenedhryn
merged commit Feb 29, 2024
20d8243
into
feature/master/accountid-endpoint-routing
16 of 17 checks passed
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.
Motivation and Context
Modifications
Testing
Screenshots (if appropriate)
Types of changes
Checklist
mvn install
succeedsscripts/new-change
script and following the instructions. Commit the new file created by the script in.changes/next-release
with your changes.License