Skip to content

Releases: jupyter/notebook

5.0.0

31 Mar 18:41
Compare
Choose a tag to compare
  • Files in the dashboard may now be sorted by last modified date or name (#943)
  • There is a new cell toolbar for adding cell tags (#2048).
  • The default styling for tables in the notebook has been updated (#1776).
  • You can now edit keyboard shortcuts for Command Mode within the UI
    (#1347).
  • You can copy and paste cells between notebooks, using :kbd:Ctrl-C and
    :kbd:Ctrl-V (:kbd:Cmd-C and :kbd:Cmd-V on Mac) (#1286).
  • It's easier to configure a password for the notebook with the new
    jupyter notebook password command (#2007).
  • The file list can now be ordered by last modified or by name
    (#943).
  • Markdown cells now support attachments. Simply drag and drop an image from
    your desktop to a markdown cell to add it. Unlike relative links that you
    enter manually, attachments are embedded in the notebook itself. An
    unreferenced attachment will be automatically scrubbed from the notebook on
    save (#621).
  • Undoing cell deletion now supports undeleting multiple cells. Cells may not be
    in the same order as before their deletion, depending on the actions you did
    on the meantime, but this should should help reduce the impact of
    accidentally deleting code (#969).
  • The file browser now has Edit and View buttons (#1905).
  • The file browser now supports moving multiple files at once
    (#1088).
  • The Notebook will refuse to run as root unless the --allow-root flag is
    given (#1115).
  • Keyboard shortcuts are now declarative (#1234).
  • Toggling line numbers can now affect all cells (#1312).
  • Add more visible Trusted and Untrusted notifications (#1658).
  • The favicon (browser shortcut icon) now changes to indicate when the kernel is busy
    (#1837).
  • Header and toolbar visibility is now persisted in nbconfig and across sessions
    (#1769).
  • Load server extensions with ConfigManager so that merge happens recursively,
    unlike normal config values, to make it load more consistently with frontend
    extensions(#2108).
  • The notebook server now supports the bundler API <http://jupyter-notebook.readthedocs.io/en/latest/extending/bundler_extensions.html>__
    from the jupyter_cms incubator project <https://github.com/jupyter-incubator/contentmanagement>__ (#1579).
  • The notebook server now provides information about kernel activity in
    its kernel resource API (#1827).

See the 5.0 milestone on GitHub for a complete list of issues and pull requests involved in this release.

4.4.0

09 Feb 04:23
Compare
Choose a tag to compare
  • Allow override of output callbacks to redirect output messages. This is used to implement the ipywidgets Output widget, for example.
  • Fix an async bug in message handling by allowing comm message handlers to return a promise which halts message processing until the promise resolves.

See the 4.4 milestone on GitHub for a complete list of issues and pull requests involved in this release.

4.3.2

01 Feb 01:34
Compare
Choose a tag to compare

4.3.2 is a patch release with a bug fix for CodeMirror and improved handling of the "editable" cell metadata field.

  • Monkey-patch for CodeMirror that resolves #2037 without breaking #1967
  • Read-only ("editable": false) cells can be executed but cannot be split, merged, or deleted

See the 4.3.2 milestone on GitHub for a complete list of issues and pull requests involved in this release.

4.3.1

21 Dec 21:27
Compare
Choose a tag to compare

4.3.1 is a patch release with a security patch, a couple bug fixes, and improvements to the newly-released token authentication.

Bug fixes:

  • Fix carriage return handling
  • Make the font size more robust against fickle brow
  • Ignore resize events that bubbled up and didn't come from window

Other improvements:

  • Better docs for token-based authentication
  • Further highlight token info in log output when autogenerated
  • Add Authorization to allowed CORS headers

See the 4.3.1 milestone on GitHub for a complete list of issues
and pull requests involved in this release.

4.3

08 Dec 22:03
Compare
Choose a tag to compare
4.3

4.3 is a minor release with many bug fixes and improvements.

Highlights:

  • API for creating mime-type based renderer extensions using OutputArea.register_mime_type and Notebook.render_cell_output methods. See mimerender-cookiecutter for reference implementations and cookiecutter.
  • Enable token authentication by default
  • Update security docs to reflect new signature system
  • Switched from term.js to xterm.js

Bug fixes:

  • Ensure variable is set if exc_info is falsey
  • Catch and log handler exceptions in events.trigger
  • Add debug log for static file paths
  • Don’t check origin on token-authenticated requests
  • Remove leftover print statement
  • Fix highlighting of Python code blocks
  • json_errors should be outermost decorator on API handlers
  • Fix remove old nbserver info files
  • Fix notebook mime type on download links
  • Fix carriage symbol bahvior
  • Fix terminal styles
  • Update dead links in docs
  • If kernel is broken, start a new session
  • Include cross-origin check when allowing login URL redirects

Other improvements:

  • Allow JSON output data with mime type “application/*+json”
  • Allow kernelspecs to have spaces in them for backward compat
  • Allow websocket connections from scripts
  • Allow None for post_save_hook
  • Upgrade CodeMirror to 5.21
  • Upgrade xterm to 2.1.0
  • Docs for using comms
  • Set dirty flag when output arrives
  • Set ws-url data attribute when accessing a notebook terminal
  • Add base aliases for nbextensions
  • Include @ operator in CodeMirror IPython mode
  • Extend mathjax_url docstring
  • Load nbextension in predictable order
  • Improve the error messages for nbextensions
  • Include cross-origin check when allowing login URL redirects

See the 4.3 milestone on GitHub for a complete list of issues and pull requests involved in this release.