All Versions
127
Latest Version
4.0
Avg Release Cycle
-
Latest Release
-

Changelog History
Page 11

  • v2.1.0 Changes

    April 2020

    ๐Ÿ‘€ See the JupyterLab 2.1 milestone on GitHub for the full list of pull requests and issues closed.

    ๐Ÿ‘‰ User-facing changes

    • 0๏ธโƒฃ Display the extension manager in the left sidebar by default. Users will need to acknowledge the disclaimer in the extension manager before using it. (#8050, #8145)
    • โž• Added blacklist and whitelist support <extension_listings> for the extension manager (#7989)
    • Automatically link URLs in notebook output text (#8075, #7393)
    • โž• Added a \"Restart Kernel and Run All Cells...\" button to the notebook toolbar (#8024)
    • โž• Added a context menu item for opening a Markdown editor from the Markdown preview (#7942)

    • ๐Ÿ‘Œ Support Node.js 10+ (#8112, #8083)

    • โž• Added a command to replace the selection in an editor with text (inserting if there is no selection). This can be assigned a keyboard shortcut, as shown below. We also added a command to go through a series of commands and run the first enabled command. (#7908) Here is a keyboard shortcut to insert text in a currently-active notebook editor:

      {
        command: "notebook:replace-selection",
        selector: ".jp-Notebook",
        keys: ["Ctrl L"],
        args: {text: "lambda x: x"}
      }
    

    Here is a keyboard shortcut to insert text into an editor of the currently active console, file editor, or notebook:

      {
        command: "apputils:run-first-enabled",
        selector: "body",
        keys: ["Ctrl L"],
        args: {
          commands: [
            "console:replace-selection",
            "fileeditor:replace-selection",
            "notebook:replace-selection",
          ],
          args: {text: "lambda x: x"}
        }
      }
    

    For developers

    • ๐Ÿ”Œ NotebookWidgetFactory is now a plugin so it can be overridden (#8066, #7996)
    • Many improvements to LabIcon: work with all SVG loaders, improve performance, fix issue with menus from extensions (#8125)
    • ๐Ÿ”„ Change the header application area to a box panel, which means the header area will display if its children set their minimum height (#8059, #7279)
    • JupyterLab\'s custom context menu is now disabled on all descendants of a DOM element with a data-jp-suppress-context-menu attribute (#7877, #7670)

    ๐Ÿ›  Bugfixes

    • ๐Ÿ›  Fix property inspector restoration on reload (#8114)
    • โฑ Increase the timeout for yarn (#8104, #8102)
    • ๐Ÿ›  Fix find and replace with empty strings (#8100, #8098)
    • Select search text when focusing the search overlay (#8073, #7932)
    • ๐Ÿ›  Fix attaching images with spaces in their names to Markdown cells (#8095)
    • ๐Ÿ›  Fix build errors by distributing the .yarnrc configuration with the Python package (#8045)
    • Throttle fetch requests in the setting registry\'s data connector (#7927)
    • Close the gap between lines in notebook output (#7832, #7760)
  • v2.1.x

  • v2.0.2 Changes

    April 2020

    ๐Ÿ‘€ See the JupyterLab 2.0.2 milestone on GitHub for the full list of pull requests and issues closed.

    • ๐Ÿ›  Fix cell execution when recording timing (#8057, #8056)
    • ๐Ÿ›  Fix font settings for the editor (#8004, #7910)
    • Avoid redundant checkpoint calls on loading a notebook (#7926, #7889)
    • For developers: make kernel IFuture.done typings more correct by not including undefined (#8032)
  • v2.0.0 Changes

    February 2020

    ๐Ÿš€ Here are some highlights for this release. See the JupyterLab 2.0 milestone on GitHub for the full list of pull requests and issues closed.

    ๐Ÿ‘‰ User-facing changes

    • ๐Ÿ†• New user interface for notebook cell tags (#7407, #7786)
    • ๐Ÿ’ป File info display when hovering on a file in the file browser (#7485, #7352)
    • ๐Ÿ‘Œ Support for searching outputs in notebooks (#7258)
    • ๐Ÿšš Ctrl Shift . and Ctrl Shift , shortcuts move focus to the next and previous tab bar in the main area, respectively (#7673)

    • Shift Home and Shift End shortcuts in a notebook select all cells from the current cell to the top or bottom of a notebook, respectively (#7177)

    • Explicit \"No Kernel\" button in the kernel selection dialog for new notebooks (#7647)

    • Notebook recordTiming advanced setting to control whether execution timing information is stored in notebook files (#7578)

    • \"Select current running or last run cell\" command added (requires notebook recordTiming advanced setting to be set to true) (#7551)

    • Codemirror lineWiseCopyCut advanced setting to control the behavior of the copy/cut keyboard shortcuts when there is no selection (#7842)

    • Refreshed the command palette and property inspector sidebar icons and user interfaces (#7577, #7038, #7733, #7732, #7718, #7686)

    • ๐Ÿ’ป \"New File\" and \"New Markdown File\" items in file browser context menu (#7483, #4280)

    • \"Download\" item in File menu (#7480)

    • \"Restart Kernel and Run up to Selected Cell\" item in notebook Kernel menu (#7789, #6746)

    • In extension manager, the \"enable\" button is now only shown for installed extensions (#7482)

    • ๐Ÿ”Š Dialogs can now be closed by clicking outside of them (#7885, #3784)

    • documentsearch:startWithReplace command to open the document find overlay with replace. There is not currently a default keyboard shortcut for this, but one can be assigned as a custom keyboard shortcut in Advanced Settings. (#7725)

    • # added to the CSV Viewer delimiter options (#7367, #6324)

    • The JSON viewer now only displays structure hints for arrays and empty objects for a more streamlined feel (#7227)

    • ๐Ÿง Optional platform-aware keyboard shortcut fields linuxKeys, macKeys, and winKeys in keyboard shortcut definitions (#7589)

      {
        command: "application:toggle-mode",
        selector: "body",
        linuxKeys: ["Ctrl Shift M"], // only linux
        macKeys: ["Cmd Shift Z"], // only mac
        winKeys: ["Ctrl Shift B"], // only windows
        keys: ["Accel Shift U"] // default shortcut
      }
    
    • โž• Added options for jupyter lab clean to clean specific parts of the build, such as --extensions, --settings, --static, and --all (#7583, #6734)

    • โœ‚ Removed the vega 4 and vega-lite 2 renderers (vega 5 and vega-lite 4 is included in JupyterLab by default). These legacy renderers may be available via custom extensions (#7650, #7523, #7658)

    • 0๏ธโƒฃ JupyterHub users should use the c.Spawner.default_url = '/lab' setting instead of the deprecated and now removed labhubapp (#7724)

    For developers

    ๐Ÿ‘€ See extension_migration for help in migrating extensions to JupyterLab 2.0.

    Backward incompatible changes

    • Switch from @phosphor to @lumino dependencies. (#7582, #7534, #7763, #7762, #7595)
    • ๐Ÿ“ฆ Factor out the settingsregistry and statedb packages from coreutils (#7681, #7615)
    • Rework services architecture (sessions, kernels, terminals). Among these changes, ClientSession is renamed to SessionContext and the IKernelConnection.connectToComm method is replaced with IKernelConnection.createComm and IKernelConnection.hasComm methods. (#7252, #7674, #7820, #7694, #7690, #7682)
    • โฌ†๏ธ Upgrade to TypeScript 3.7 (#7522)
    • โœ‚ Remove polling from coreutils in favor for @lumino/polling (#7617)
    • ๐Ÿ“ฆ TypeScript strict null checking in core packages (#7657, #7607)
    • โšก๏ธ Update state database list method to query based on namespace match. (#7742, #7257)
    • โž• Address code todo items and deprecations for 2.0 (#7720, #7724)
    • โšก๏ธ Update Console panel tracker widgets (#7705, #7726, #7648, #7645)
    • โšก๏ธ Update contribution guide to require node v12+ (#7479)
    • ๐Ÿ†• New API for the Running sidebar extension (#6895, #6876)
    • Clean up handling of icons under unified LabIcon ( #7192 #7700, #7765, #7767, #7800, #7846, #7859, #7864, #7886)

    Other changes

    • ๐Ÿ†• New property inspector used to display the properties of the currently selected main area widget (#7665, #7664, #7718, #7686)
    • ๐Ÿ‘ Allow metadata for launcher items (#7654, #7652)
    • ๐Ÿ‘ Allow default file browser to restore manually. (#7695, #4009)
    • โฌ†๏ธ Upgrade bundled yarn to 1.21.1 (#7691, #7692)
    • ๐Ÿ”ง Make session dialogs configurable (#7618, #7616)
    • ๐Ÿ‘Œ Support transient editor configs (#7611, #7295)
    • ๐Ÿ’ป Optionally force new browser tab (#7603, #7602)
    • โšก๏ธ Update core dependencies (e.g., codemirror, xterm.js, markdown, fontawesome, etc.) (#7590, #7194, #7326, #6479, #7769)
    • โž• Add storybook to ui-components (#7588, #6799)
    • โž• Add explicit documentation encouraging people to re-use lab components (#7543)
    • Enable TypeScript sourcemaps for debugging locally installed labextensions (#7541)
    • โž• Add UseSignal example to the docs (#7519)
    • โž• Add env prop to kernel options (#7499)
    • โž• Add kernelspec metadata (#7229, #7228)
    • ๐Ÿ‘ Allow different mimetypes for the clipboard data (#7202)
    • โž• Add password dialog to apputils (#7855)
    • ๐Ÿ“ฆ Alias phosphor packages to lumino to allow a deprecation period for phosphor (#7893)
    • ๐Ÿ’ป Match react version in ui-components peerdependencies (#7794)
    • ๐Ÿ›  Fix lint-staged for both win and mac (#7784)
    • โšก๏ธ Update websocket workaround for node environments (#7780, #6934)
    • ๐Ÿ›  Fix handling of linked extensions (#7728, #6738)
    • ๐Ÿ›  Fix extension compatibility checks for prereleases and extensions supporting multiple major versions of JupyterLab (#7723, #7241, #7919)
    • โšก๏ธ Teach update-dependency about more range specifiers and make it adopt the current range for any tag (#7709)
    • โž• Add support for giving a rank to items in the top area (#7278)
    • Apply all options to the initial JupyterLab application instance (#7251)

    ๐Ÿ›  Bugfixes

    • ๐Ÿ’ป \"Copy Shareable Link\" in the file browser context menu now properly works in JupyterHub (#7906)
    • โšก๏ธ Update Mathjax CDN in the cell and console examples (#7680)
    • โช Revert ensure-max-old-space now that Node 12+ has better default memory ceilings (#7677, #7675)
    • 0๏ธโƒฃ Resolve race condition between default file browser and tree urls. (#7676, #4009)
    • ๐Ÿ›  Fix handling of code editor refresh (#7672, #7671)
    • Start new notebooks in edit mode (#7666, #6731)
    • ๐Ÿ‘‰ Use consistent versions of React (#7661, #7655)
    • โž• Add scrollbar styles to nbconvert-css (#7653)
    • Close output views when corresponding notebooks are closed (#7633, #7301)
    • ๐Ÿ›  Fixed incorrect white background for new command palette icon (#7609, #7577)
    • ๐Ÿ”Œ Block fetching the settings for a plugin that is disabled (#7147)
    • ๐Ÿ“‡ When timing metadata changes, ensure signal fires (#7576)
    • Prevent memory leaks in Vega renderer (#7564)
    • ๐Ÿ– Handle cell execution cancellation when cell is disposed (#7555, #7554)
    • ๐Ÿ›  Fix dropdown option style issue on Windows (#7513)
    • ๐Ÿ‘‰ Make sure label is linked to a control when checking for element type (#7458)
    • ๐ŸŒฒ Refine log console message UX (#7448, #7444, #7443)
    • ๐Ÿ›  Fix multicursor backspacing (#7401, #7205)
    • ๐ŸŒฒ Reset log display and count when non-notebook tab gets activated (#7334, #7325)
    • ๐Ÿ›  Fix Safari multiple tabs by working around a Safari bug. (#7316, #6921)
    • Skip custom click behavior on links when the download attribute is set (#7311, #5443)
    • ๐Ÿ›  Fix context menu hit test to deal with SVG nodes. (#7242, #7224)
    • ๐Ÿ›  Fix overwriting of target attribute of anchors rendered by IPython.display (#7215, #6827)
    • ๐Ÿ›  Fix file browser location in tree view (#7155)
    • Stop too many fetch calls in docmanager-extension (#7879, #7874)
    • Ensures that Shift Tab dedent shortcut works correctly in the file editor (#7865)
    • ๐Ÿ›  Fix unexpected jump to last search result when using documentsearch (#7835)
    • ๐Ÿ›  Fixed refresh issue for html viewer (#7824, #7552)
    • ๐Ÿ›  Fix for center-aligned images with IPython.display.image (#7798)
    • ๐Ÿ”„ Changes to setting editor should trigger application dirty state (#7774, #7757)
    • ๐Ÿšš Move vega from \"devdependencies\" to \"dependencies\" (#7699, #7689)
    • โช Restore default file browser manually. (#7695, #4009)
    • Use default app_dir when app_dir is '' (#7268, #7264)
  • v1.2.0 Changes

    October 29, 2019

    ๐Ÿš€ Here are some highlights for this release. See the JupyterLab 1.2.0 milestone on GitHub for the full list of pull requests and issues closed.

    ๐Ÿ‘‰ User-facing changes

    • Select cells from the current cell to the top of the notebook with Shift Home, to the bottom of the notebook with Shift End (#7336, #6783)
    • โž• Add a log console extension to display unhandled messages and other activity (#7318, #7319, #7379, #7399, #7406, #7421)
    • ๐Ÿ‘ Allow the npm max-old-space option to be specified outside of JupyterLab (#7317)
    • Only display node structure in a JSON tree view for arrays and empty objects (#7261)
    • ๐Ÿ— Make much smaller distribution packages by not building JavaScript source maps for releases. (#7150)
    • โž• Add support for pasting cell attachments and dragging attachments from the file browser (#5913, #5744)
    • โž• Add a new registry configuration parameter to override the default yarn repository when building (#7363, #7109, #7249, #7248)

    For developers

    • โšก๏ธ Update the Markdown renderer (marked) to 0.7.0 (#7328)
    • โœ‚ Remove datagrid as a singleton, allowing extensions to use newer versions (#7312)
    • โž• Add metadata to the kernelspec information (#7234)
    • ๐Ÿ‘ Allow different mimetypes for the clipboard data (#7233)
    • โž• Add inline svg icon support to toolbar buttons (#7232)
    • โž• Add PageConfig functions to query if a plugin is deferred or disabled (#7216)
    • ๐Ÿ‘ Allow for renderers for nbformat.ierror to be created (#7203, #7193)
    • ๐Ÿ”จ Refactor fileeditor-extension for modularization (#6904)
    • โž• Add execution timing to cells (#6864, #3320)

    ๐Ÿ›  Bugfixes

    • ๐Ÿ›  Fix the file-browser-path query parameter (#7313)
    • Skip custom click behavior on links when the download attribute is set (#7323)
    • ๐Ÿ›  Fix opening multiple browser tabs in Safari (#7322)
    • ๐Ÿ›  Fix context menus on SVG icons (#7263)
    • ๐Ÿ›  Fix overwriting of target attribute of anchors rendered by IPython.display (#7231)
    • ๐Ÿ›  Fix multi-cursor backspacing (#7205, #7401, #7413)
    • ๐Ÿ›  Fix mult-cursor cell splitting (#7207, #7417, #7419)
  • v1.1.0 Changes

    August 28, 2019

    ๐Ÿš€ Here are some highlights of what is in this release. See the JupyterLab 1.1.0 milestone on GitHub for the full list of pull requests and issues closed.

    ๐Ÿ‘‰ User-facing changes

    • ๐Ÿ— jupyter lab build now has a --minimize=False option to build without minimization to conserve memory and time (#6907)
    • ๐Ÿ›  Fix workspace reset functionality (#7106, #7105)
    • โช Restore behavior of the \"raises-exception\" cell tag (#7020, #7015)
    • โž• Add settings to override theme font sizes (#6926)
    • ๐Ÿ’ป Accept query parameter to optionally change file browser location (#6875)
    • Pressing escape in the console should switch out of edit mode (#6822)
    • ๐Ÿ›  Fix file browser downloads in Google Chrome (#6686)
    • 0๏ธโƒฃ Make it possible to override the default widgets to view a file (#6813, #4048)
    • ๐Ÿ‘Œ Support installing multiple versions of the same extension (#6857)
    • ๐Ÿ‘Œ Support JupyterHub server name for JupyterHub 1.0 (#6931)
    • โž• Add docs to help users diagnose issues before creating them (#6971)
    • ๐Ÿ“ฆ The JupyterLab conda-forge package is now a noarch package. If you are using JupyterLab with notebook version 5.2 or earlier, you may need to manually enable the JupyterLab server extension. See the issue for more details (#7042)

    For developers

    • ๐Ÿ”ฆ Expose install_kernel for tests so that outside projects can better use the testing framework (#7089)
    • Fix comm_info_request content to conform to the Jupyter message specification in a backwards-compatible way (#6949, #6947)
    • โž• Add yarn package resolution to build to constrain core package versions to patch semver ranges (#6938)
    • ๐Ÿ‘‰ Make handling comm messages optional in a kernel connection. (#6929)
    • ๐Ÿ”ฆ Expose icon svg to theme css (#6034, #7027)
    • ๐Ÿ”ฆ Expose convenience functions for open dialogs (#6366, #6365)
    • โž• Add debug messages to possible kernel messages (#6704)
    • โž• Add server side coreconfig object (#6991)

    ๐Ÿ› Bug fixes

    • ๐Ÿ– Handle errors that occur during kernel selection (#7094)
    • ๐Ÿ›  Fix escaping issues for page config and other template variables (#7016, #7024, #7061, #7058, #6858)
    • Require jinja2 2.10+ to fix escaping issues (#7055, #7053)
    • Increase the search debounce from 100ms to 500ms to increase incremental search responsiveness in large documents (#7034)
    • ๐Ÿ›  Fix vega downloads and download urls in general (#7022, #7017, #7098, #7047)
    • ๐Ÿ— Do not complain in the build about duplicate or optional packages (#7013)
    • ๐Ÿ›  Fix contextual help layout for R help (#6933, #6935)
  • v1.0.0 Changes

    June 28, 2019

    ๐Ÿ‘€ See the JupyterLab 1.0.0 milestone on GitHub for the full list of pull requests and issues closed ๐Ÿš€ in 1.0.0, and other 1.0.x milestones for bugs fixed in patch releases.

    Find and Replace

    ๐Ÿ“„

    ๐Ÿ‘ We have added first class support for find and replace across ๐Ÿ‘ JupyterLab. It is currently supported in notebooks and text files and is ๐Ÿ‘ extensible for other widgets who wish to support it. (#6350, #6322, #6301, #6282, #6256, #6241, #6237, #6159, #6081, #6155, #6094, #6024, #5937, #5795, #1074)

    Status Bar

    โšก๏ธ

    We have integrated the JupyterLab Status Bar ๐Ÿ“ฆ package package into the core distribution. Extensions can add their own status to it as well (#5577, #5525 #5990, #5982, #5514, #5508, #5352).

    JupyterHub Integration

    • We now include the JupyterHub extension in core JupyterLab, so you no longer need to install @jupyterlab/hub-extension. (#6451, #6428)
    • JupyterLab now has a File > Logout menu entry when running with JupyterHub (#6087, #5966)

    ๐Ÿ–จ Printing

    ๐Ÿ–จ We now have a printing system that allows extensions to customize how ๐Ÿ–จ documents and activities are printed. (#5850, #1314)

    Other User Facing Changes

    • ๐Ÿ‘ The launcher displays longer kernel names and supports keyboard navigation (#6587)
    • Notebook outputs without any valid MimeType renderers will not be displayed, instead of displaying an error (#6559, #6216)
    • โž• Add tooltip to file browser root breadcrumb icon showing the server root, if it is available (#6552)
    • ๐Ÿ’ป Downloading a file will no longer open a new browser window (#6546)
    • ๐Ÿšš Rename the help \"Inspector\" to \"Contextual Help\" and move it to the \"Help\" menu (#6493, #6488, #6678, #6671)
    • โšก๏ธ Update many of the icons to make them more consistent (#6672, #6618, #6664, #6621)
    • โšก๏ธ Update the settings UI to remove the table view (#6654, #6622, #6653, #6623, #6646, #6642)
    • ๐Ÿ“š Replace FAQ Extension with link to JupyterLab documentation (#6628, #6608, #6625, #6610)
    • ๐Ÿ”„ Change the default keyboard shortcut for closing a tab to be Alt+w instead of Cmd/Ctrl+w to avoid conflicts with operating systems. (#6486, #6357)
    • ๐Ÿ‘‰ Show help text in Inspector window to describe you should select a function (#6476)
    • ๐Ÿ›  Fixes SVG rendering (#6469, #6295)
    • โž• Add support for dropping a tab in the tab bar area. (#6454, #5406)
    • 0๏ธโƒฃ Switch some default shortcuts to use Accel instead of Ctrl so they are more natural for Mac users (#6447, #5023)
    • โž• Add ability to tell between hover and selected command palette items (#6407, #279)
    • ๐Ÿ’ป Hide the \"Last Modified\" column when the file browser is narrow (#6406, #6093)
    • ๐Ÿ‘Œ Support copy/paste in terminal and Mac OS using Ctrl+C and Ctrl+V (#6391, #6385, #1146)
    • ๐Ÿ‘Œ Support scrolling in running kernels panel (#6383, #6371)
    • โž• Adds ability to \"Merge Selected Cells\" in the context menu in the notebook (#6375, #6318)
    • Turn On Accessibility In Xterm.js to make it more compatible for screen readers (#6359)
    • When selecting cells using the keyboard shortcuts, we now skip collapsed cells (#6356, #3233)
    • ๐Ÿ‘Œ Supporting opening .geojson files in JSON viewer (#6349)
    • ๐ŸŽ Performance fixes for text-based progress bars (#6304, #4202)
    • โž• Add support for rendering Vega 5 and Vega Lite 3 while keeping the existing Vega 4 and Vega Lite 2 renderers (#6294, #6133, #6128, #6689, #6685, #6684, #6675, #6591, #6572)
    • Drag and drop console cells into a notebook or text editor (#5585, #4847)
    • Drag and drop notebook cells into a console or text editor (#5571, #3732)
    • The extension manager search now sorts extensions by the score assigned to them by NPM instead of alphabetically (#5649)
    • ๐Ÿ”” Notify the user when a kernel is automatically restarted, for example, if crashes from an out of memory error (#6246, #4273)
    • ๐Ÿ”ฆ Expose the extension manager in a command and menu item (#6200)
    • โž• Add command to render all Markdown cells (#6029, #6017)
    • ๐Ÿ‘Œ Supports using shift to select text in output area (#6015, #4800)
    • โช Output areas that opened in new views are restored properly now on reload (#5981, #5976)
    • โž• Add support for managing notebook metadata under a new \"Advanced Tools\" section in the cell tools area. The cell and notebook metadata now always reflect the current state of the notebook (#5968, #5200)
    • Inherit terminal theme from core theme (#5964)
    • โž• Adds a built-in HTML viewer so that you can view HTML files (#5962, #5855, #2369)
    • ๐Ÿ†• New workspaces are now automatically generated when you create a new window with the same workspace name. (#5950, #5854, #5830, #5214)
    • We now add a hint to the context menu to describe how you can access the native browser menu (#5940, #4023)
    • The tabs on the left panel have changed to make them more understandable (#5920, #5269)
    • Start a new terminal when the page is refreshed and the old terminal has died (#5917)
    • โž• Add a command to open the main menus, which can be assigned to a keyboard shortcut to open and navigate menus without a mouse (#5910, #3074)
    • โšก๏ธ The contextual help now updates based on changes in the cursor from the mouse instead of just from the keyboard (#5906, #5899)
    • โšก๏ธ The launcher now updates when the kernels change on the server (#5904, #5676)
    • Retain cell auto scroll behavior even when a cell output is cleared (#5817, #4028)
    • If you link to a relative path that is not a file in a markdown cell, this will now be preserved instead of changing it to a file URL (#5814)
    • โž• Adds the ability to link to a certain row in a CSV file and have the viewer open to that row (#5727, #5720)
    • ๐ŸŽ We have improved the performance of switching to a large notebook (#5700, #4292, #2639)
    • ๐Ÿ‘ The vdom extension now supports event handling, so that you can have kernel code run in response to user interaction with the UI (#5670)
    • โž• Adds the ability to run \"Run All Code\" and \"Restart Kernel and Run All Code\" in code and markdown files (#5641, #5579)
    • We now remember what line ending a text file has when loading it, so that files with CRLF line endings will properly be saved with the same endings (#5622, #4464, #3901, #3706)
    • ๐Ÿ›  Fixes rendering of SVG elements in HTML MimeType output (#5610, #5610, #5589)
    • ๐Ÿ‘ Allow copying files by holding down Ctrl when dragging them in the file browser (#5584, #3235)
    • ๐Ÿ’ป Switch the hover modified time in the file browser to use the local format (#5567)
    • 0๏ธโƒฃ We have added a default keyboard shortcut of Ctrl Shift Q for closing and cleaning up a file (#5534, #4390)
    • โž• Adds the ability to find and go to a certain line in the CSV viewer (#5523)
    • โž• Add the ability to create new text and markdown files from the launcher and command palette (#5512, #5511)
    • ๐Ÿ’ป A \"New Folder\" option has been added to the file browser context menu (#5447)
    • The ANSI colors are now the same as those in the classic notebook (#5336, #3773)
    • Send complete statements instead of current lines when stepping through code in a cell (#6515, #6063)
    • ๐Ÿ’… Description list styles (dl, dt, dd) are improved to be consistent with the nteract project (#5682, #2399)

    Settings

    • The settings system has been rewritten (#5470, #5298) and now uses json5 as the syntax, which supports comments and other features for better human readability (#6343, #6199).
    • The keyboard shortcut system has been rewritten and now displays a list of system commands in the settings comments (#5812, #5562).

    There are new settings for many following items, including:

    • โž• Adds an option to shut down terminals and notebook kernels when they are closed (#6285, #6275)
    • Scrolling past the end of a notebooks and text editor document (#5542, #5271, #5652, #4429)
    • Text editor code folding, rulers, and active line highlighting (#5761, #4083, #5750, #4179, #5529, #5528)
    • Markdown viewer options (#5901, #3940)
    • โช Terminal scrollback and other settings (#5609, #3985)
    • The autosave interval (#5645, #5619)
    • ๐Ÿ’ป The file browser showing the current active file (#5698, #4258)
    • Custom scrollbar styling for dark themes (#6026, #4867)

    ๐Ÿ’ป Command Line Changes

    • Installing extensions will be quieter and adds a --debug to extension installing (#6567, #6499, #5986)
    • ๐Ÿ‘ We now support running JupyterLab when its application directory is a symlink (#6240, #6166)
    • โž• Add --all flag to labextension uninstall to remove all extensions (#6058, #6006)
    • โž• Adds the ability to override the base URLs from the config (#5518, #5503)
    • โšก๏ธ Updates to workspaces CLI command (#6473, #5977, #6276, #6234, #6210, #5975, #5695, #5694)

    Extension Development Changes

    • We have rewritten how extensions provide keyboard shortcuts and interact with the settings system. If you previously defined keyboard shortcuts or used the settings mechanism, you will need to update your extension (#5470, #5298)
    • ๐Ÿ”Œ We have renamed the plugin type from JupyterLabPlugin to JupyterFrontEndPlugin. The application arg is also renamed from JupyterLab to JupyterFrontEnd and some its functionality has been moved to a separate ILabShell plugin (#5845, #5919)
    • The lab shell addToMainArea, addToLeftArea, addToTopArea, addToRightArea, and addToBottomArea functions have been replaced with a single add() function that takes the area as an argument. Replace addToMainArea(widget, options) with add(widget, 'main', options), etc. (#5845)
    • ๐Ÿ“‡ Rename pageUrl to appUrl in the server connection (#6509, #6508, #6585, #6584)
    • โšก๏ธ MainAreaWidget instances now forward update requests to their content (#6586, #6571)
    • ๐Ÿšš The theme data attributes are renamed and moved to the document body element. If you are relying on these attributes in CSS to conditionally style based on the theme, you should update their names. For example data-theme-light is now data-jp-theme-light. (#6566, #6554)
    • Extensions which require CSS should no longer import their CSS files into their Javascript files. Instead, they should specify a root CSS file in the style attribute in their package.json, and JupyterLab will automatically import that CSS file. (#6533, #6530, #6395, #6390)
    • Dialog.prompt has been replaced by a number of type-specific dialogs such as InputDialog.getString, InputDialog.getBoolean, etc. (#6522, #6378, #6327, #6326)
    • 0๏ธโƒฃ When a RenderMime widget is re-rendered, the default behavior is to remove any existing content in the DOM. This can be overridden if needed. (#6513, #6505, #6497)
    • โšก๏ธ We have updated our internal TypeScript version to 3.5.1 and our compile target to ES2017. Extensions may need to upgrade their TypeScript version and target as well. (#6440, #6224)
    • โšก๏ธ We have updated the typings for some of the Kernel messages so that they better match the spec. (#6433)
    • ๐Ÿšฆ A connectionFailure signal has been added to some of the manager classes, which can be used to detect when a connection to the server is lost (#6399, #6176, #3324)
    • โž• Add rate limiting and polling utilities to coreutils to use for throttling and debouncing of API requests (#6345, #6346, #6401, #6305, #6157, #6192, #6186, #6141, #3929, #6141, #3929, #6186, #6192, #6401 ,#6305, #6157)
    • Require session when instantiating terminal widget (#6339, #5061)
    • ๐Ÿšฆ Provides a signal to see what items are opened in a directory listing (#6270, #6269)
    • Ads the ability to add widget above the main work area to a top header area (#5936)
    • โœ… Renames contextMenuFirst to contextMenuHitTest in the JupyterFrontEnd (#5932)
    • โœ‚ Removes the initialCommand arg from the terminal creation command. (#5916)
    • โž• Adds --jp-code-cursor-width0, --jp-code-cursor-width1, and --jp-code-cursor-width2 variables to the themes to support changing the cursor width if you change the font size (#5898)
    • โž• Adds the ability to insert a new item to the toolbar before or after another item (#5896, #5894)
    • โž• Adds the ability for extensions to register new CodeMirror modes (#5829)
    • We have removed the JUPYTERLAB_xxx_LOADER Webpack loaders, instead you should use the loader directly in the URL as Webpack supports it (#5709, #4406)
    • โž• Adds the ability to handle fragments for document widgets (#5630, #5599)
    • ๐Ÿ“ฆ We have added a @jupyterlab/ui-components package that contains reusable React components to be used internally and in extensions. Feel free to use this to create extension UIs with consistent styles (#5538)
    • The showErrorMessage function now lets you customize the buttons it uses (#5513)
    • We now provide helpers for using React components within JupyterLab. If you were previously using ReactElementWidget you should switch to using ReactWidget. (#5479, #5766, #6595, #6595)
    • ๐Ÿšš The share link command has been moved to its own extension so that it can be overridden (#5460, #5388)
    • Creating a new services session now requires passing a kernel model instead of a kernel instance (#6503, #6142)
    • โฌ†๏ธ We upgraded the Webpack raw file loader. The new version of the raw loader exports ES2015 modules, so this may require changes in extensions that import files using the raw loader. For example, if you did require('myfile.md') to get the content of myfile.md as a string, you now should import it using ES2015 import syntax, or use require(\'myfile.md\').default.
    • ๐Ÿ‘ Widget factories now can support custom cloning behavior from an optional source widget (#6060, #6044)
    • We have renamed the type InstanceTracker to WidgetTracker (#6569).
    • In order to add widgets to the main area (e.g. as in the old XKCD extension tutorial), the correct syntax is now app.shell.add(widget) or app.shell.add(widget, 'main'), see here.
  • v0.35.0 Changes

    October 3, 2018

    ๐Ÿ‘€ See the JupyterLab 0.35.0 milestone on GitHub for the full list of pull requests and issues closed.

    ๐Ÿ”‹ Features

    • A notebook cell can now be readonly, reflecting its enabled metadata. (#5401, #1312)
    • โž• Add \"Go To Line\" in the Edit menu for text editors. (#5377)
    • Sidebar panels can now be switched between left and right sidebars. Right-click on a sidebar tab to move it to the other sidebar. (#5347, #5054, #3707)
    • ๐Ÿ‘‰ Make the sidebar a bit narrower, and make the minimum width adjustable from a theme. (#5245)
    • Populate the File, Export Notebook As... submenu from the server nbconvert capabilities. (#5217)
    • Server contents managers can now tell JupyterLab to open files as notebooks. For example, several custom contents managers save and open notebooks as Markdown files. (#5247, #4924)
    • โž• Add a command-line interface for managing workspaces. (#5166)
    • ๐Ÿ‘ Allow safe inline CSS styles in Markdown. (#5012, #1812)
    • โž• Add Quit to File menu when appropriate. (#5226, #5252, #5246, #5280)
    • Rework extension manager user experience. (#5147, #5042)

    Dark theme

    • ๐Ÿ‘‰ Show a dark splash screen when using a dark theme. (#5339, #5338, #5403)
    • ๐Ÿ›  Fix code completion menu for a dark theme. (#5364, #5349)
    • ๐Ÿ’… Style CSV viewer for a dark theme. (#5304, #3456)
    • ๐Ÿ‘‰ Make Matplotlib figures legible in a dark theme. (#5232)
    • ๐Ÿ›  Fix notebook cell dropdown legibility in a dark theme. (#5168)

    ๐Ÿ› Bug fixes

    • Various save options in the file menu and toolbar are now disabled when a file is not writable. (#5376, #5391)
    • Kernel selector dialog no longer cuts off kernel names. (#5260, #5181)
    • ๐Ÿ›  Fix focus issues with the toolbar. (#5344, #5324, #2995, #5328)
    • ๐Ÿ›  Fix toolbar button enabled/disabled status. (#5278)
    • Table alignment is now respected in Markdown. (#5301, #3180)
    • ๐Ÿ›  Fix syntax highlighting for Markdown lists. (#5297, #2741)
    • 0๏ธโƒฃ Use the current filebrowser instead of the default one for various commands. (#5390)
    • ๐Ÿ›  Fix escaping in link handling to conform to Markdown syntax. This means that spaces in link references now need to be encoded as %20. (#5383, #5340, #5153)

    ๐Ÿ‘ท Build system

    • ๐Ÿ‘‰ Use Typescript 3.1. (#5360)
    • ๐Ÿ‘‰ Use Lerna 3.2.1. (#5262)
    • Node >=6.11.5 is now required. (#5227)
    • ๐Ÿ“Œ Pin vega-embed version to 3.18.2. (#5342)
    • โœ… Use Jest for services tests. (#5251, #5282)
    • โœ… Make it easier for third party extensions to use the JupyterLab test app and testing utilities. (#5415)
    • ๐Ÿ›  Fix jupyter lab clean on Windows. (#5400, #5397)
    • ๐Ÿ›  Fix jupyter lab build on NFS. (#5237, #5233)
    • ๐Ÿ— Build wheels for Python 3 only. (#5287)
    • Migrate to using jupyterlab_server instead of jupyterlab_launcher and fix the app example. (#5316)
    • ๐Ÿ“ฆ Move Mathjax 2 typesetter to a library package. (#5259, #5257)

    For Developers

    • 0๏ธโƒฃ Default toolbar buttons can be overridden, and mime renderers can now specify toolbar buttons. (#5398, #5370, #5363)
    • A JupyterLab application instance can now be given a document registry, service manager, and command linker. (#5291)
  • v0.34.0 Changes

    August 18, 2018

    ๐Ÿ‘€ See the JupyterLab 0.34.0 milestone on GitHub for the full list of pull requests and issues closed.

    Key Features

    • Notebooks, consoles, and text files now have access to completions for local tokens.
    • Python 3.5+ is now required to use JupyterLab. Python 2 kernels can still be run within JupyterLab.
    • โž• Added the pipe (|) character as a CSV delimiter option.
    • โž• Added \"Open From Path...\"\" to top level File menu.
    • โž• Added \"Copy Download Link\" to context menu for files.

    ๐Ÿ”„ Changes for Developers

    • Notebooks, consoles, and text files now have access to completions for local tokens. If a text file has a running kernel associated with its path (as happens with an attached console), it also gets completions and tooltips from that kernel. (#5049)

    • ๐Ÿ’ป The FileBrowser widget has a new constructor option refreshInterval, allowing the creator to customize how often the widget polls the storage backend. This can be useful to prevent rate-limiting in certain contexts. (#5048)

    • The application shell now gets a pair of CSS data attributes indicating the current theme, and whether it is light or dark. Extension authors can write CSS rules targeting these to have their extension UI elements respond to the application theme. For instance, to write a rule targeting whether the theme is overall light or dark, you can use

      [data-theme-light='true'] your-ui-class {
        background-color: white;
      }
      [data-theme-light='false'] your-ui-class {
        background-color: black;
      }
    

    The theme name can also be targeted by writing CSS rules for data-theme-name. (#5078)

    • ๐Ÿšฆ The IThemeManager interface now exposes a signal for themeChanged, allowing extension authors to react to changes in the theme. Theme extensions must also provide a new boolean property isLight, declaring whether they are broadly light colored. This data allows third-party extensions to react better to the active application theme. (#5078)

    • โž• Added a patch to update the uploads for each FileBrowserModel instantly whenever a file upload errors. Previously, the upload that erred was only being removed from uploads upon an update. This would allow the status bar component and other extensions that use the FileBrowserModel to be more precise. (#5077)

    • Cell IDs are now passed in the shell message as part of the cell metadata when a cell is executed. This helps in developing reactive kernels. (#5033)

    • The IDs of all deleted cells since the last run cell are now passed as part of the cell metadata on execution. The IDs of deleted cells since the last run cell are stored as deletedCells in NotebookModel. This helps in developing reactive kernels. (#5037)

    • ๐Ÿ”จ The ToolbarButton in apputils has been refactored with an API change and now uses a React component ToolbarButtonComponent to render its children. It is now a div with a single button child, which in turn as two span elements for an icon and text label. Extensions that were using the className options should rename it as iconClassName. The className options still exists, but it used as the CSS class on the button element itself. The API changes were done to accommodate styling changes to the button. (#5117)

    • The Toolbar.createFromCommand function has been replaced by a dedicated ToolbarButton subclass called CommandToolbarButton, that wraps a similarly named React component. (#5117)

    • The design and styling of the right and left sidebars tabs has been improved to address #5054. We are now using icons to render tabs for the extensions we ship with JupyterLab and extension authors are encouraged to do the same (text labels still work). Icon based tabs can be used by removing widget.caption and adding widget.iconClass = '<youriconclass> jp-SideBar-tabIcon';. (#5117)

    • ๐Ÿ’… The style of buttons in JupyterLab has been updated to a borderless design. (#5117)

    • A new series of helper CSS classes for stying SVG-based icons at different sizes has been added: jp-Icon, jp-Icon-16, jp-Icon-18, jp-Icon-20.

    • โšก๏ธ The rank of the default sidebar widget has been updated. The main change is giving the extension manager a rank of 1000 so that it appears at the end of the default items.

    • Python 3.5+ is now required to use JupyterLab. Python 2 kernels can still be run within JupyterLab. (#5119)

    • JupyterLab now uses yarn 1.9.4 (aliased as jlpm), which now allows uses to use Node 10+. (#5121)

    • Clean up handling of baseUrl and wsURL for PageConfig and ServerConnection. (#5111)

    Other Changes

    • โž• Added the pipe (|) character as a CSV delimiter option. (#5112)
    • โž• Added Open From Path... to top level File menu. (#5108)
    • โž• Added a saveState signal to the document context object. (#5096)
    • โž• Added \"Copy Download Link\" to context menu for files. (#5089)
    • ๐Ÿ—„ Extensions marked as deprecated are no longer shown in the extension manager. (#5058)
    • โœ‚ Remove In and Out text from cell prompts. Shrunk the prompt width from 90px to 64px. In the light theme, set the prompt colors of executed console cells to active prompt colors and reduced their opacity to 0.5. In the dark theme, set the prompt colors of executed console cells to active prompt colors and set their opacity to 1. (#5097 and #5130)

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fixed a bug in the rendering of the \"New Notebook\" item of the command palette. (#5079)
    • We only create the extension manager widget if it is enabled. This prevents unnecessary network requests to npmjs.com. (#5075)
    • The running panel now shows the running sessions at startup. (#5118)
    • ๐Ÿ’ป Double clicking a file in the file browser always opens it rather than sometimes selecting it for a rename. (#5101)
  • v0.33.0 Changes

    July 26, 2018

    ๐Ÿ‘€ See the JupyterLab 0.33.0 milestone on GitHub for the full list of pull requests and issues closed.

    Key Features:

    No longer in beta

    ๐Ÿšฆ In JupyterLab 0.33, we removed the "Beta" label to better signal that JupyterLab is ready for users to use on a daily basis. The extension ๐Ÿš€ developer API is still being stabilized. See the release blog post for details. (#4898, #4920)

    Workspaces

    ๐Ÿ‘ We added new workspace support, which enables you to have multiple saved ๐Ÿ layouts, including in different browser windows. See the ๐Ÿ“š workspace documentation for more details. (#4502, #4708, #4088, #4041 #3673, #4780)

    Menu items

    • "Activate Previously Used Tab" added to the Tab menu (Ctrl/Cmd Shift ') to toggle between the previously active tabs in the main area. (#4296)
    • "Reload From Disk" added to the File menu to reload an open file from the state saved on disk. (#4615)
    • "Save Notebook with View State" added to the File menu to persist the notebook collapsed and scrolled cell state. We now read the collapsed, scrolled, jupyter.source_hidden and jupyter.outputs_hidden notebook cell metadata when opening. collapsed and jupyter.outputs_hidden are redundant and the initial collapsed state is the union of both of them. When the state is persisted, if an output is collapsed, both will be written with the value true, and if it is not, both will not be written. (#3981)
    • "Increase/Decrease Font Size" added to the text editor settings menu. (#4811)
    • ๐Ÿ’ป "Show in File Browser" added to a document tab's context menu. (#4500)
    • ๐Ÿ’ป "Open in New Browser Tab" added to the file browser context menu. (#4315)
    • ๐Ÿ’ป "Copy Path" added to file browser context menu to copy the document's path to the clipboard. (#4582)
    • "Show Left Area" has been renamed to "Show Left Sidebar" for consistency (same for right sidebar). (#3818)

    Keyboard shortcuts

    • "Save As..." given the keyboard shortcut Ctrl/Cmd Shift S. (#4560)
    • "Run All Cells" given the keyboard shortcut Ctrl/Cmd Shift Enter. (#4558)
    • "notebook:change-to-cell-heading-X" keyboard shortcuts (and commands) renamed to "notebook:change-cell-to-heading-X" for X=1...6. This fixes the notebook command-mode keyboard shortcuts for changing headings. (#4430)
    • The console execute shortcut can now be set to either Enter or Shift Enter as a Console setting. (#4054)

    Command palette items

    • "Notebook" added to the command palette to open a new notebook. (#4812)

    • "Run Selected Text or Current Line in Console" added to the command palette to run the selected text or current line from a notebook in a console. A default keyboard shortcut for this command is not yet provided, but can be added by users with the notebook:run-in-console command. To add a keyboard shortcut Ctrl G for this command, use the "Settings" | "Advanced Settings Editor" menu item to open the "Keyboard Shortcuts" advanced settings, and add the following JSON in the shortcut JSON object in the User Overrides pane (adjust the actual keyboard shortcut if you wish). (#3453, #4206, #4330)

      {
        "command": "notebook:run-in-console",
        "keys": ["Ctrl G"],
        "selector": ".jp-Notebook.jp-mod-editMode"
      }
    
    • The command palette now renders labels, toggled state, and keyboard shortcuts in a more consistent and correct way. (#4533, #4510)

    Settings

    • "fontFamily", "fontSize", and "lineHeight" settings added to the text editor advanced settings. (#4673)
    • Solarized dark and light text editor themes from CodeMirror. (#4445)

    Larger file uploads

    • ๐Ÿ‘Œ Support for larger file uploads (>15MB) when using Jupyter notebook server version >= 5.1. (#4224)

    Extension management and installation

    • ๐Ÿ†• New extension manager for installing JupyterLab extensions from npm within the JupyterLab UI. You can enable this from the Advanced Settings interface. (#4682, #4925)
    • Please note that to install extensions in JupyterLab, you must use NodeJS version 9 or earlier (i.e., not NodeJS version 10). We will upgrade yarn, with NodeJS version 10 support, when a bug in yarn is fixed. (#4804)

    Interface changes

    • Wider tabs in the main working area to show longer filenames. (#4801)
    • ๐ŸŽ‰ Initial kernel selection for a notebook or console can no longer be canceled: the user must select a kernel. (#4596)
    • 0๏ธโƒฃ Consoles now do not display output from other clients by default. A new "Show All Kernel Activity" console context menu item has been added to show all activity from a kernel in the console. (#4503)
    • The favicon now shows the busy status of the kernels in JupyterLab. (#4361, #3957, #4966)

    Renderers

    • โฌ†๏ธ JupyterLab now ships with a Vega4 renderer by default (upgraded from Vega3). (#4806)
    • The HTML sanitizer now allows some extra tags in rendered HTML, including kbd, sup, and sub. (#4618)
    • JupyterLab now recognizes the .tsv file extension as tab-separated files. (#4684)
    • Javascript execution in notebook cells has been re-enabled. (#4515)

    ๐Ÿ”„ Changes for developers

    • ๐Ÿšฆ A new signal for observing application dirty status state changes. (#4840)
    • ๐Ÿšฆ A new signal for observing notebook cell execution. (#4740, #4744)
    • ๐Ÿšฆ A new anyMessage signal for observing any message a kernel sends or receives. (#4437)
    • A generic way for different widgets to register a "Save with extras" command that appears in the File menu under save. (#3981)
    • A new API for removing groups from a JupyterLab menu. addGroup now returns an IDisposable which can be used to remove the group. removeGroup has been removed. (#4890)
    • The Launcher now uses commands from the application CommandRegistry to launch new activities. Extension authors that add items to the launcher will need to update them to use commands. (#4757)
    • There is now a top-level addToBottomArea function in the application, allowing extension authors to add bottom panel items like status bars. (#4752)
    • 0๏ธโƒฃ Rendermime extensions can now indicate that they are the default rendered widget factory for a file-type. For instance, the default widget for a markdown file is a text editor, but the default rendered widget is the markdown viewer. (#4692)
    • โž• Add new workspace REST endpoints to jupyterlab_server and make them available in @jupyterlab/services. (#4841)
    • Documents created with a mimerenderer extension can now be accessed using an IInstanceTracker which tracks them. Include the token IMimeDocumentTracker in your plugin to access this. The IInstanceTracker interface has also gained convenience functions find and filter to simplify iterating over instances. (#4762)
    • RenderMime render errors are now displayed to the user. (#4465)
    • getNotebookVersion is added to the PageConfig object. (#4224)
    • ๐Ÿšฆ The session kernelChanged signal now contains both the old kernel and the new kernel to make it easy to unregister things from the old kernel. (#4834)
    • The connectTo functions for connecting to kernels and sessions are now synchronous (returning a connection immediately rather than a promise). The DefaultSession clone and update methods are also synchronous now. (#4725)
    • Kernel message processing is now asynchronous, which guarantees the order of processing even if a handler is asynchronous. If a kernel message handler returns a promise, kernel message processing is paused until the promise resolves. The kernel's anyMessage signal is emitted synchronously when a message is received before asynchronous message handling, and the iopubMessage and unhandledMessage signals are emitted during asynchronous message handling. These changes mean that the comm onMsg and onClose handlers and the kernel future onReply, onIOPub, and onStdin handlers, as well as the comm target and message hook handlers, may be asynchronous and return promises. (#4697)
    • Kernel comm targets and message hooks now are unregistered with removeCommTarget and removeMessageHook, instead of using disposables. The corresponding registerCommTarget and registerMessageHook functions now return nothing. (#4697)
    • ๐Ÿ”€ The kernel connectToComm function is synchronous, and now returns the comm rather than a promise to the comm. (#4697)
    • The KernelFutureHandler class expectShell constructor argument is renamed to expectReply. (#4697)
    • The kernel future done returned promise now resolves to undefined if there is no reply message. (#4697)
    • โšก๏ธ The IDisplayDataMsg is updated to have the optional transient key, and a new IUpdateDisplayDataMsg type was added for update display messages. (#4697)
    • ๐Ÿšš The uuid function from @jupyterlab/coreutils is removed. Instead import UUID from @phosphor/coreutils and use UUID.uuid4() . (#4604)
    • Main area widgets like the launcher and console inherit from a common MainAreaWidget class which provides a content area (.content) and a toolbar (.toolbar), consistent focus handling and activation behavior, and a spinner displayed until the given reveal promise is resolved. Document widgets, like the notebook and text editor and other documents opened from the document manager, implement the IDocumentWidget interface (instead of DocumentRegistry.IReadyWidget), which builds on MainAreaWidget and adds a .context attribute for the document context and makes dirty handling consistent. Extension authors may consider inheriting from the MainAreaWidget or DocumentWidget class for consistency. Several effects from these changes are noted below. (#3499, #4453)
      • The notebook panel .notebook attribute is renamed to .content.
      • The text editor is now the .content of a DocumentWidget, so the top-level editor widget has a toolbar and the editor itself is widget.content.editor rather than just widget.editor.
      • Mime documents use a MimeContent widget embedded inside of a DocumentWidget now.
      • Main area widgets and document widgets now have a revealed promise which resolves when the widget has been revealed (i.e., the spinner has been removed). This should be used instead of the ready promise.

    ๐Ÿ”„ Changes in the JupyterLab code infrastructure include:

    • The JupyterLab TypeScript codebase is now compiled to ES2015 (ES6) using TypeScript 2.9. We also turned on the TypeScript esModuleInterop flag to enable more natural imports from non-es2015 JavaScript modules. With the update to ES2015 output, code generated from async/await syntax became much more manageable, so we have started to use async/await liberally throughout the codebase, especially in tests. Because we use Typedoc for API documentation, we still use syntax compatible with TypeScript 2.7 where Typedoc is used. Extension authors may have some minor compatibility updates to make. If you are writing an extension in TypeScript, we recommend updating to TypeScript 2.9 and targeting ES2015 output as well. (#4462, #4675, #4714, #4797)
    • The JupyterLab codebase is now formatted using Prettier. By default the development environment installs a pre-commit hook that formats your staged changes. (#4090)
    • โšก๏ธ Updated build infrastructure using webpack 4 and better typing. (#4702, #4698)
    • โฌ†๏ธ Upgraded yarn to version 1.6. Please note that you must use NodeJS version 9 or earlier with JupyterLab (i.e., not NodeJS version 10). We will upgrade yarn, with NodeJS version 10 support, when a bug in yarn is fixed. (#4804)
    • ๐Ÿšš Various process utilities were moved to jupyterlab_server. (#4696)

    ๐Ÿ›  Other fixes

    • ๐Ÿ›  Fixed a rendering bug with the Launcher in single-document mode. (#4805)
    • ๐Ÿ›  Fixed a bug where the native context menu could not be triggered in a notebook cell in Chrome. (#4720)
    • ๐Ÿ›  Fixed a bug where the cursor would not show up in the dark theme. (#4699)
    • ๐Ÿ›  Fixed a bug preventing relative links from working correctly in alternate IDrives. (#4613)
    • ๐Ÿ›  Fixed a bug breaking the image viewer upon saving the image. (#4602)
    • ๐Ÿ›  Fixed the font size for code blocks in notebook Markdown headers. (#4617)
    • Prevented a memory leak when repeatedly rendering a Vega chart. (#4904)
    • ๐Ÿ‘Œ Support dropped terminal connection re-connecting. (#4763, #4802)
    • ๐Ÿ‘‰ Use require.ensure in vega4-extension to lazily load vega-embed and its dependencies on first render. (#4706)
    • Relative links to documents that include anchor tags will now correctly scroll the document to the right place. (#4692)
    • ๐Ÿ›  Fix default settings JSON in setting editor. (#4591, #4595)
    • ๐Ÿ›  Fix setting editor pane layout's stretch factor. (#2971, #4772)
    • Programmatically set settings are now output with nicer formatting. (#4870)
    • ๐Ÿ›  Fixed a bug in displaying one-line CSV files. (#4795, #4796)
    • ๐Ÿ›  Fixed a bug where JSON arrays in rich outputs were collapsed into strings. (#4480)