-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Add 5.1.0 to changelog #2723
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
Add 5.1.0 to changelog #2723
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,36 @@ We strongly recommend that you upgrade to version 9+ of pip before upgrading ``n | |
``pip --version``. | ||
|
||
|
||
.. _release-5.1.0: | ||
|
||
5.1.0 | ||
----- | ||
|
||
- Preliminary i18n implementation (:ghpull:`2140`). | ||
- Expose URL with auth token in notebook UI (:ghpull:`2666`). | ||
- Fix search background style (:ghpull:`2387`). | ||
- List running notebooks with ``--allow-root`` (:ghpull:`2421`). | ||
- Allow session of type other than notebook (:ghpull:`2559`). | ||
- Fix search background style (:ghpull:`2387`). | ||
- Fix some Markdown styling issues (:ghpull:`2571`), (:ghpull:`2691`) and (:ghpull:`2534`). | ||
- Remove keymaps that conflict with non-English keyboards (:ghpull:`2535`). | ||
- Add session-specific favicons (notebook, terminal, file) (:ghpull:`2452`). | ||
- Add /api/shutdown handler (:ghpull:`2507`). | ||
- Include metadata when copying a cell (:ghpull:`2349`). | ||
- Stop notebooks from command line (:ghpull:`2388`). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's clearer to say 'notebook servers'. |
||
- Improve "View" and "Edit" file handling in dashboard (:ghpull:`2449`) and (:ghpull:`2402`). | ||
- Load custom.js before ``app_initialized.NotebookApp`` is triggered (:ghpull:`2710`). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is misleading. We haven't changed the order of loading things - instead we added a promise as a new mechanism to run code after the application is initialized. |
||
- Fix disabled collapse/expand output button (:ghpull:`2681`). | ||
- Cull idle kernels using ``--MappingKernelManager.cull_idle_timeout`` (:ghpull:`2215`). | ||
|
||
See the 5.1 milestone on GitHub for a complete list of | ||
`issues <https://github.com/jupyter/notebook/issues?utf8=%E2%9C%93&q=is%3Aissue%20milestone%3A5.1>`__ | ||
and `pull requests <https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.1>`__ involved in this release. | ||
|
||
.. _release-5.0.0: | ||
|
||
Notebook version 5.0 | ||
-------------------- | ||
5.0.0 | ||
----- | ||
|
||
This is the first major release of the Jupyter Notebook since version 4.0 was | ||
created by the "Big Split" of IPython and Jupyter. | ||
|
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.
I think the point of this PR is that you can list running notebook servers without needing
--allow-root
, whereas previously it was doing that check when it wasn't necessary.