From a0710fec071c98485e088ddfb23fcbc01d6c0a5e 2014-03-05 19:19:32 From: Brian E. Granger Date: 2014-03-05 19:19:32 Subject: [PATCH] Merge pull request #5278 from takluyver/pr-whatsnew-4 Update whatsnew doc from pr files --- diff --git a/docs/source/whatsnew/development.rst b/docs/source/whatsnew/development.rst index a2f4e3e..c7db774 100644 --- a/docs/source/whatsnew/development.rst +++ b/docs/source/whatsnew/development.rst @@ -185,6 +185,12 @@ we have added a signature to the notebook, stored in metadata. For more information, see :ref:`signing_notebooks`. +Dashboard "Running" Tab +----------------------- + +The dashboard now has a "Running" tab which shows all of the running +notebooks. + Other changes ------------- @@ -237,6 +243,16 @@ Other changes transformation machinery in IPython will handle displaying the exception to the user and resetting state. +* Calling ``container.show()`` on javascript display is deprecated and will + trigger errors on future IPython notebook versions. ``container`` now show + itself as soon as non-empty + +* Added ``InlineBackend.print_figure_kwargs`` to allow passing keyword arguments + to matplotlib's ``Canvas.print_figure``. This can be used to change the value of + ``bbox_inches``, which is 'tight' by default, or set the quality of JPEG figures. + +* A new callback system has been introduced. For details, see :doc:`/config/callbacks`. + .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. Backwards incompatible changes @@ -280,4 +296,13 @@ Backwards incompatible changes raw = isp.source_raw transformed = isp.source_reset() +* The Azure notebook manager was removed as it was no longer compatible with the notebook storage scheme + .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. + +Simplifying configurable URLs +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- base_kernel_url configurable is removed +- websocket_url configurable is removed +- base_project_url is renamed to base_url (base_project_url is kept as a deprecated alias, for now) diff --git a/docs/source/whatsnew/pr/callbacks.rst b/docs/source/whatsnew/pr/callbacks.rst deleted file mode 100644 index 405d251..0000000 --- a/docs/source/whatsnew/pr/callbacks.rst +++ /dev/null @@ -1 +0,0 @@ -* A new callback system has been introduced. For details, see :doc:`/config/callbacks`. diff --git a/docs/source/whatsnew/pr/deprecation-js-container.rst b/docs/source/whatsnew/pr/deprecation-js-container.rst deleted file mode 100644 index 12d46db..0000000 --- a/docs/source/whatsnew/pr/deprecation-js-container.rst +++ /dev/null @@ -1,3 +0,0 @@ -* calling `container.show()` on javascript display is deprecated and will - trigger errors on future IPython notebook versions. `container` now show - itself as soon as non-empty diff --git a/docs/source/whatsnew/pr/incompat-azure.rst b/docs/source/whatsnew/pr/incompat-azure.rst deleted file mode 100644 index 2b35a76..0000000 --- a/docs/source/whatsnew/pr/incompat-azure.rst +++ /dev/null @@ -1 +0,0 @@ -* The Azure notebook manager was removed as it was no longer compatible with the notebook storage scheme diff --git a/docs/source/whatsnew/pr/incompat-base-url.rst b/docs/source/whatsnew/pr/incompat-base-url.rst deleted file mode 100644 index 82488fb..0000000 --- a/docs/source/whatsnew/pr/incompat-base-url.rst +++ /dev/null @@ -1,6 +0,0 @@ -Simplifying configurable URLs ------------------------------ - -- base_kernel_url configurable is removed -- websocket_url configurable is removed -- base_project_url is renamed to base_url (base_project_url is kept as a deprecates alias, for now) diff --git a/docs/source/whatsnew/pr/print-figure-kwargs.rst b/docs/source/whatsnew/pr/print-figure-kwargs.rst deleted file mode 100644 index 53557a3..0000000 --- a/docs/source/whatsnew/pr/print-figure-kwargs.rst +++ /dev/null @@ -1,3 +0,0 @@ -* added ``InlineBackend.print_figure_kwargs`` to allow passing keyword arguments - to matplotlib's ``Canvas.print_figure``. This can be used to change the value of - ``bbox_inches``, which is 'tight' by default, or set the quality of JPEG figures. diff --git a/docs/source/whatsnew/pr/running-tab.rst b/docs/source/whatsnew/pr/running-tab.rst deleted file mode 100644 index 58df8ff..0000000 --- a/docs/source/whatsnew/pr/running-tab.rst +++ /dev/null @@ -1,5 +0,0 @@ -Dashboard "Running" Tab ------------------------ - -The dashboard now has a "Running" tab which shows all of the running -notebooks.