Opensearch go update deps - #831
Merged
Jakob3xD merged 4 commits intoMay 5, 2026
Merged
Conversation
Mechanical modernization only: replaces interface{} with any,
fixes an errgroup doc typo, bumps go directive to 1.25.0.
Zero behavioral changes.
Signed-off-by: Sean Chittenden <sean.chittenden@crowdstrike.com>
No source code changes between these versions. Only go.mod metadata: go directive bumped to 1.25.0 and golang.org/x/tools updated (both by Gopher Robot). Signed-off-by: Sean Chittenden <sean.chittenden@crowdstrike.com>
Bug fix: factorization was dropping operations when JSON Pointer paths share a string prefix (e.g. /key/b vs /key/bb). Now checks path boundary at '/' separator. Also adds MergePatch (RFC 7386) generation support (stdlib-only, no new dependencies). Signed-off-by: Sean Chittenden <sean.chittenden@crowdstrike.com>
Notable changes across the AWS SDK + smithy-go dependency tree: aws-sdk-go-v2 core: - Fix: strip X-Amz-Security-Token header on cross-host redirect - Fix: clock skew no longer persists after client/server realign smithy-go v1.24.0 -> v1.25.1: - Fix: LRU cache memory leak (existing keys leaked list entries) - Feature: endpoint BDD trait support - Feature: additional SigV4 configuration knobs New transitive dep: internal/v4a v1.4.24 (SigV4A asymmetric signing, pulled by STS v1.42.1 which now advertises SigV4A). Uses only Go stdlib crypto primitives. Signed-off-by: Sean Chittenden <sean.chittenden@crowdstrike.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #831 +/- ##
==========================================
- Coverage 72.90% 72.87% -0.04%
==========================================
Files 428 428
Lines 15647 15647
==========================================
- Hits 11408 11403 -5
- Misses 2600 2604 +4
- Partials 1639 1640 +1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
This was referenced May 4, 2026
Jakob3xD
approved these changes
May 5, 2026
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.
Summary
Routine dependency updates.
golang.org/x/syncv0.19.0 -> v0.20.0interface{}->anyrename (semantically identical since Go 1.18)errgroupgolang.org/x/modv0.33.0 -> v0.35.0github.com/wI2L/jsondiffv0.7.0 -> v0.7.1/key/bvs/key/bb). Root cause: barestrings.HasPrefixwithout checking for/path boundary. Fixed withhasProperPathPrefix().MergePatch/MergePatchJSONfor RFC 7386 JSON Merge Patch generation (stdlib-only, usesencoding/json)github.com/aws/aws-sdk-go-v2v1.41.1 -> v1.41.7X-Amz-Security-Tokenheader on HTTP redirect to a different host. Prevents credential leakage when a redirect crosses trust boundaries. Correctly scoped to cross-host 307/308 redirects only.atomic.Int64for skew state with proper healing on realignment.interface{}->any,ioutil-> modern stdlib)panic()with error returns for unknown header types (robustness)github.com/aws/aws-sdk-go-v2/configv1.32.7 -> v1.32.17github.com/aws/aws-sdk-go-v2/credentialsv1.19.7 -> v1.19.16github.com/aws/smithy-gov1.24.0 -> v1.25.1Put()with an existing key allocated a new list entry without removing the old one. Now updates in place and moves to front.MetadataDisableUnsignedPayloadSentinel,CanonicalTimeFormat) for CodeCommit Git HTTPS signingNew transitive dependency:
github.com/aws/aws-sdk-go-v2/internal/v4av1.4.24SchemeIDSigV4Aalongside SigV4crypto/ecdsa,crypto/elliptic,crypto/hmac,crypto/sha256)Fixes: #805
Fixes: #806
Fixes: #807
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.