-
Notifications
You must be signed in to change notification settings - Fork 918
GODRIVER-3373: Use non-default global DefaultTransport for DefaultClient #2109
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
Closed
Conversation
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
…ses. (mongodb#1974) Co-authored-by: Preston Vasquez <[email protected]>
…ons from `7891688` to `6118deb` (mongodb#2008) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Preston Vasquez <[email protected]>
mongodb#2020) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…Data Cursors (mongodb#1925) Co-authored-by: Copilot <[email protected]>
…check (mongodb#1998) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Qingyang Hu <[email protected]>
…check (mongodb#2026) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…ngodb#2029) Co-authored-by: Preston Vasquez <[email protected]>
mongodb#2035) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…aster-1746481223008 Merge release/2.2 into master
Co-authored-by: Preston Vasquez <[email protected]> Co-authored-by: Ahmad Shah <[email protected]> Co-authored-by: mongodb-drivers-pr-bot[bot] <147046816+mongodb-drivers-pr-bot[bot]@users.noreply.github.com>
…aster-1746553259504 Merge release/2.2 into master
…340465 * release/2.2: BUMP v2.2.1
…aster-1746622340465 Merge release/2.2 into master
…b` to `9d0d3f0` (mongodb#2052) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…aster-1748446276522 Merge release/2.2 into master
…aster-1749159495877 Merge release/2.2 into master
…891689 * release/2.2: Revert "Bump testdata/specifications from to 43d2c7b"
…aster-1749161891689 Merge release/2.2 into master
…com:mongodb/mongo-go-driver into merge-release/2.2-into-master-1749218797481
…aster-1749218797481 Merge release/2.2 into master
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…aster-1749561347682 Merge release/2.2 into master
…it-licenseck GODRIVER-3543 Check license headers in pre-commit.
…gedread GODRIVER-3494 Deprecate hedged read preference methods.
GODRIVER-3457: Pilot using OpenSSF Scorecard
Co-authored-by: Preston Vasquez <[email protected]>
GODRIVER-3457: Add OpenSSF Scorecard to README
…nto GODRIVER-3373
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.
GODRIVER-3373
Summary
NewHTTPClient
returns a globally definedDefaultHTTPClient
that returns DefaultTransport or updates the transport if it is replaced with a non-default transport.Background & Motivation
Users can now use non-default transports without panic.