-
Notifications
You must be signed in to change notification settings - Fork 15
chore: Restore add_auth_token(s) as deprecated for backward compatibility #236
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
Merged
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
b229394
to
6ef6e62
Compare
585288a
to
ccbebfa
Compare
6ef6e62
to
ffdedf9
Compare
ccbebfa
to
6c721f7
Compare
ffdedf9
to
bd696b5
Compare
e25a8a1
to
fd0c947
Compare
bd696b5
to
3465dd9
Compare
f43c150
to
25226d1
Compare
25226d1
to
9954139
Compare
kurtisvg
approved these changes
May 16, 2025
4c73dd0
to
28f3221
Compare
9954139
to
dd061af
Compare
28f3221
to
993cf7e
Compare
dd061af
to
6818556
Compare
e8ec4f4
to
0b7b3f9
Compare
6818556
to
0c74ce6
Compare
0b7b3f9
to
fef11af
Compare
0c74ce6
to
109bf37
Compare
fef11af
to
a128a8e
Compare
a128a8e
to
9bfb8d1
Compare
…lity This PR addresses a breaking change introduced by the removal of `add_auth_token(s)` methods in #182. To ensure backward compatibility and facilitate a smoother upgrade path, these methods are now reintroduced but explicitly marked as **deprecated**. Users are encouraged to migrate to the new `add_auth_token_getter(s)` methods instead. > [!NOTE] > The `strict` flag in the deprecated methods are not used anymore since the functionality of the `strict` flag has been changed (see #205 for more details).
722e436
to
faa9d68
Compare
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.
This PR addresses a breaking change introduced by the removal of
add_auth_token(s)
methods in #182. To ensure backward compatibility and facilitate a smoother upgrade path, these methods are now reintroduced but explicitly marked as deprecated. Users are encouraged to migrate to the newadd_auth_token_getter(s)
methods instead.Note
The
strict
flag in the deprecated methods are not used anymore since the functionality of thestrict
flag has been changed (see #205 for more details).