-
Notifications
You must be signed in to change notification settings - Fork 90
dependencies: Update all the things #660
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
Open
EbonJaeger
wants to merge
4
commits into
master
Choose a base branch
from
update-dependencies
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
**Notable Changes** - React 18 -> 19 - Docusaurus 3.8.1 -> 3.9.0 - Material UI v5 -> v7 - Search plugin swapped out again because no one seems to be maintaining these things and it didn't work with newer React. We might want to consider using the official [Algolia](https://docusaurus.io/docs/3.0.1/search#using-algolia-docsearch) search. I would love to keep using a local search instead of farming it out to some other service, but.... :/ Signed-off-by: Evan Maddock <[email protected]>
Might as well combine this with the old PR... |
Signed-off-by: Evan Maddock <[email protected]>
EbonJaeger
added a commit
that referenced
this pull request
Sep 25, 2025
Right now, the data for our website is a bit spread out. People and teams live in `src/data`, but others like our editions and top-level categories live in the component and page files. Let's make everything easier to find. This moves the edition definitions to a file under `src/data`, making the component responsible only for the actual UI of the site. ~~I did this all jumbled up with #641, so it might be a good idea to merge this PR *after* that one, just in case I missed something when trying to separate all of my changes.~~ Depends on #660 Signed-off-by: Evan Maddock <[email protected]>
EbonJaeger
added a commit
that referenced
this pull request
Sep 25, 2025
Right now, the data for our website is a bit spread out. People and teams live in `src/data`, but others like our editions and top-level categories live in the component and page files. Let's make everything easier to find. This moves the edition definitions to a file under `src/data`, making the component responsible only for the actual UI of the site. ~~I did this all jumbled up with #641, so it might be a good idea to merge this PR *after* that one, just in case I missed something when trying to separate all of my changes.~~ Depends on #660 Signed-off-by: Evan Maddock <[email protected]>
This is what Docusaurus is still using, and using a different version causes lint failures. Ref #640 Signed-off-by: Evan Maddock <[email protected]>
EbonJaeger
added a commit
that referenced
this pull request
Sep 25, 2025
Right now, the data for our website is a bit spread out. People and teams live in `src/data`, but others like our editions and top-level categories live in the component and page files. Let's make everything easier to find. This moves the edition definitions to a file under `src/data`, making the component responsible only for the actual UI of the site. ~~I did this all jumbled up with #641, so it might be a good idea to merge this PR *after* that one, just in case I missed something when trying to separate all of my changes.~~ Depends on #660 Signed-off-by: Evan Maddock <[email protected]>
Signed-off-by: Evan Maddock <[email protected]>
EbonJaeger
added a commit
that referenced
this pull request
Sep 25, 2025
Right now, the data for our website is a bit spread out. People and teams live in `src/data`, but others like our editions and top-level categories live in the component and page files. Let's make everything easier to find. This moves the edition definitions to a file under `src/data`, making the component responsible only for the actual UI of the site. ~~I did this all jumbled up with #641, so it might be a good idea to merge this PR *after* that one, just in case I missed something when trying to separate all of my changes.~~ Depends on #660 Signed-off-by: Evan Maddock <[email protected]>
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.
Description
Notable Changes
This might at least partially fix #439