-
Notifications
You must be signed in to change notification settings - Fork 906
GODRIVER-3443 Remove internal APIs in migration guide. #1911
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
Conversation
docs/migration-2.0.md
Outdated
The following fields were marked for internal use only and do not have replacement: | ||
|
||
- `ClientOptions.AuthenticateToAnything` | ||
- `FindOptions.OplogReplay` | ||
- `FindOneOptions.OplogReplay` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It makes sense to remove OplogReplay from this list since it was added back to v2 with GODRIVER-3433, but AuthenticateToAnything was removed in v2 because it was internalized. Users migrating that are relying on that field (e.g.) could be confused if it's removal is not called out in the migration guide. Suggest the following:
ClientOptions.AuthenticateToAnything
was marked for internal use in 1.x and does not have a replacement.
API Change ReportNo changes found! |
drivers-pr-bot please backport to release/2.0 |
(cherry picked from commit c79e929)
…se/2.0] (#1951) Co-authored-by: Qingyang Hu <[email protected]>
* release/2.0: BUMP v2.0.1 GODRIVER-3477 Bump golang.org/x/crypto from 0.29.0 to 0.31.0 [release/2.0] (#1952) GODRIVER-3284 Allow valid SRV hostnames with less than 3 parts. (#1898) [release/2.0] (#1949) GODRIVER-3452 MergeClientOptions returns object when given nil arguments (#1917) [release/2.0] (#1948) GODRIVER-3443 Remove internal APIs in migration guide. (#1911) [release/2.0] (#1951) GODRIVER-3470 Correct BSON unmarshaling logic for null values (#1924) [master] (#1945) [release/2.0] (#1947) Fix erroneous nil error return in FindOne. (#1926) [release/2.0] (#1944) GODRIVER-3298 Handle joined errors correctly in WithTransaction. (#1928) [release/2.0] (#1931) GODRIVER-3307 clone returned byte slice in MarshalValue (#1913) [release/2.0] (#1921)
GODRIVER-3443
Summary
Remove internal APIs in the migration guide.
Background & Motivation