-
Notifications
You must be signed in to change notification settings - Fork 17
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
Cleanup things before the next release (0.10) #30
Merged
Merged
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
ddccbea
chore: fix typo
ctron 31d584d
chore: clear warning
ctron 215e9c2
refactor: make the values of the storage keys internal
ctron 55b57c2
docs: add some docs
ctron ae155ba
build: go back to a simple version
ctron a2993c4
fix: drop unused type arguments, clean up
ctron 962a94f
refactor: cleanups before the next release
ctron 9f2cdd2
refactor: drop the legacy re-export
ctron 243c864
chore: uptick version
ctron b0d8e3f
refactor: tweak the API a bit, make it public again, document
ctron c494a36
refactor: rename properties
ctron c8af310
refactor: destructure to ensure we consumed all the fields
ctron a901bb6
fix: the default options did not get applied
ctron 68e8cfc
style: typos
ctron 7c841a3
docs: uptick version in docs
ctron 9247002
ci: update actions to non-deprecated ones
ctron aa7eb5a
chore: fix up examples after refactoring
ctron e156442
chore: drop patches section, we're good for now
ctron 530cbb8
chore: more docs and cleanups
ctron 28495f0
ci: try fixing compiler issue
ctron 78440f6
ci: explicitly set toolchain
ctron e0f6924
chore: align visibility with login options
ctron 5b9702d
chore: rename feature "router" to "nested-router"
ctron 8d2bc39
refactor: allow retrieving the login state from the session
ctron File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! Client implementations | ||
|
||
mod oauth2; | ||
#[cfg(feature = "openid")] | ||
mod openid; | ||
|
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
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
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
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
Oops, something went wrong.
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.
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.
Just wondering, since the api is changing already anyway - coming at this as a yew beginner, this was a slightly confusing part, because I didn't realize that yew-nested-router and yew-router are mutually incompatible. Wouldn't naming this feature
nested-router
be more descriptive?