-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Move opening help resources to a separate plugin #14837
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
|
Thanks for making a pull request to jupyterlab! |
fcollonval
left a comment
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.
Thanks @jtpio
I spotted a small error. But otherwise it looks good to go.
However I'm not in favor of backporting it to 4.0.x as the new plugin defines a command from the old resources plugin. So if someone disable the resources, it may create a conflict by providing its own implementation of that command or simply adding a command he does not want.
Co-authored-by: Frédéric Collonval <fcollonval@users.noreply.github.com>
Yeah that's always the issue when moving functionalities between plugins. It's not really a breaking change technically, but it can indeed change the behavior of a deployed JupyterLab instance. OK to bump to |
fcollonval
left a comment
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.
Thanks @jtpio
Do you think you could add a note in the CHANGELOG as part of this PR so we don't forget to do it when releasing?
|
Maybe we can add the note under the |
|
|
||
| # JupyterLab Changelog | ||
|
|
||
| ## v4.1 |
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.
Let's see if CI still passes with this new section.
|
Thanks @jtpio
|
References
This should help with jupyter/notebook#6963 and jupyter/notebook#6968
Code changes
Move the command that opens help resources in the
mainarea in IFrames or new browser tabs to a new plugin.That way, downstream applications like Notebook 7 can choose to not include this plugin and provide their own instead.
User-facing changes
None
Backwards-incompatible changes
None