Skip to content

Commit

Permalink
Release JupyterLab v1.2.11
Browse files Browse the repository at this point in the history
SHASUMS:
157f1cc1627c1f0b9a88c518fd7d7fce3ce3699c8fda1f905defaea2c4a31e3c  jupyterlab-1.2.11-py2.py3-none-any.whl
dab59542e89f16632eec2c607d9cd75063b56334dee93cc5242445c24e75b0a2  jupyterlab-1.2.11.tar.gz
  • Loading branch information
Steven Silvester committed Apr 15, 2020
1 parent 1d1d895 commit 989c599
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 29 deletions.
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ appropriate branch, and installs JupyterLab with `pip install -e .`.

`source scripts/release_prep.sh <branch_name>`

## Add a changelog entry

Ensure there is a changelog entry for the release in `docs/docs/source/getting_started/changelog.rst`.

## Bump version

The next step is to bump the appropriate version numbers. We use
Expand Down
4 changes: 2 additions & 2 deletions dev_mode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@
"@jupyterlab/markdownviewer-extension": "~1.2.4",
"@jupyterlab/mathjax2": "~1.2.0",
"@jupyterlab/mathjax2-extension": "~1.2.4",
"@jupyterlab/metapackage": "~1.2.7",
"@jupyterlab/nbconvert-css": "~0.3.7",
"@jupyterlab/metapackage": "~1.2.8",
"@jupyterlab/nbconvert-css": "~0.3.8",
"@jupyterlab/notebook": "~1.2.5",
"@jupyterlab/notebook-extension": "~1.2.5",
"@jupyterlab/observables": "~2.4.0",
Expand Down
22 changes: 20 additions & 2 deletions docs/source/getting_started/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,39 @@ JupyterLab Changelog
`v1.2.x <https://github.com/jupyterlab/jupyterlab/milestone/54>`__
---------------------------------------------------------------------------

* Fix cwd for kernels `#8212 <https://github.com/jupyterlab/jupyterlab/pull/8212>`__)
v1.2.11
~~~~~~~
* Expose global app instance with command-line option: (`#8218 <https://github.com/jupyterlab/jupyterlab/pull/8218>`__)

v1.2.10
~~~~~~~
* Fix cwd for kernels (`#8212 <https://github.com/jupyterlab/jupyterlab/pull/8212>`__)

v1.2.9
~~~~~~~
* Better handling of slow kernel startup (`#8189 <https://github.com/jupyterlab/jupyterlab/pull/8189>`__)
* Clean up kernel startup error messages (`#8186 <https://github.com/jupyterlab/jupyterlab/pull/8186>`__)

v1.2.8
~~~~~~~
* Fix Widget Tracker behavior (`#8118 <https://github.com/jupyterlab/jupyterlab/pull/8118>`__)
* Increase timeout for yarn (`#8108 <https://github.com/jupyterlab/jupyterlab/pull/8108>`__)
* Add .yarnrc explicitly in Python setup (`#8107 <https://github.com/jupyterlab/jupyterlab/pull/8107>`__)

v1.2.7
~~~~~~~
* Better handling of fallback versions for an extension (`#7981 <https://github.com/jupyterlab/jupyterlab/pull/7981>`__)

v1.2.6
~~~~~~~
* Fix browser check (`#7817 <https://github.com/jupyterlab/jupyterlab/pull/7817>`__)


`v1.2.0 <https://github.com/jupyterlab/jupyterlab/releases/tag/v1.2.0>`__
---------------------------------------------------------------------------

October 29, 2019
^^^^^^^^^^^^^^^^
~~~~~~~~~~~~~~~~

Here are some highlights for this release. See the `JupyterLab
1.2.0 <https://github.com/jupyterlab/jupyterlab/milestone/38?closed=1>`__
Expand Down
9 changes: 6 additions & 3 deletions jupyterlab/staging/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,12 @@ function main() {
register.forEach(function(item) { lab.registerPluginModule(item); });
lab.start({ ignorePlugins: ignorePlugins });

// Expose global lab instance when in dev mode.
if ((PageConfig.getOption('devMode') || '').toLowerCase() === 'true') {
window.lab = lab;
// Expose global app instance when in dev mode or when toggled explicitly.
var exposeAppInBrowser = (PageConfig.getOption('exposeAppInBrowser') || '').toLowerCase() === 'true';
var devMode = (PageConfig.getOption('devMode') || '').toLowerCase() === 'true';

if (exposeAppInBrowser || devMode) {
window.jupyterlab = lab;
}

// Handle a browser test.
Expand Down
8 changes: 4 additions & 4 deletions jupyterlab/staging/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab/application-top",
"version": "1.2.9",
"version": "1.2.10",
"private": true,
"scripts": {
"build": "webpack",
Expand Down Expand Up @@ -134,8 +134,8 @@
"@jupyterlab/markdownviewer-extension": "~1.2.4",
"@jupyterlab/mathjax2": "~1.2.0",
"@jupyterlab/mathjax2-extension": "~1.2.4",
"@jupyterlab/metapackage": "~1.2.7",
"@jupyterlab/nbconvert-css": "~0.3.7",
"@jupyterlab/metapackage": "~1.2.8",
"@jupyterlab/nbconvert-css": "~0.3.8",
"@jupyterlab/notebook": "~1.2.5",
"@jupyterlab/notebook-extension": "~1.2.5",
"@jupyterlab/observables": "~2.4.0",
Expand Down Expand Up @@ -185,7 +185,7 @@
},
"jupyterlab": {
"name": "JupyterLab",
"version": "1.2.10",
"version": "1.2.11",
"extensions": {
"@jupyterlab/application-extension": "",
"@jupyterlab/apputils-extension": "",
Expand Down
39 changes: 21 additions & 18 deletions jupyterlab/staging/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -784,10 +784,10 @@
"@jupyterlab/rendermime-interfaces" "^1.5.0"
"@phosphor/coreutils" "^1.3.1"

"@jupyterlab/metapackage@~1.2.7":
version "1.2.7"
resolved "https://registry.yarnpkg.com/@jupyterlab/metapackage/-/metapackage-1.2.7.tgz#005430bf239e31a7283508e6462a70a1af60a29e"
integrity sha512-/kpAmJtKt44wlKuwROV6cCUrM+oEiQ3OLjjmjcyUWexqeG1M8W6eFh4wKOk2lW3FnwEypLyk9zdSXkRZt3u8Zg==
"@jupyterlab/metapackage@~1.2.8":
version "1.2.8"
resolved "https://registry.yarnpkg.com/@jupyterlab/metapackage/-/metapackage-1.2.8.tgz#5f981ac48beccf6942bf31c9691bec1b10c83ce8"
integrity sha512-IxJ4UWMedDE0I/H1s/AxcZ1T3VWWfEGHfI+bqu0KmmJ4BuIiJecaHSiPahZATFgXtCMWfTisTbPHIgGU6yV1BQ==
dependencies:
"@jupyterlab/application" "^1.2.4"
"@jupyterlab/application-extension" "^1.2.4"
Expand Down Expand Up @@ -836,7 +836,7 @@
"@jupyterlab/markdownviewer-extension" "^1.2.4"
"@jupyterlab/mathjax2" "^1.2.0"
"@jupyterlab/mathjax2-extension" "^1.2.4"
"@jupyterlab/nbconvert-css" "^0.3.7"
"@jupyterlab/nbconvert-css" "^0.3.8"
"@jupyterlab/notebook" "^1.2.5"
"@jupyterlab/notebook-extension" "^1.2.5"
"@jupyterlab/observables" "^2.4.0"
Expand Down Expand Up @@ -867,10 +867,10 @@
"@jupyterlab/vega4-extension" "^1.2.0"
"@jupyterlab/vega5-extension" "^1.2.0"

"@jupyterlab/nbconvert-css@^0.3.7", "@jupyterlab/nbconvert-css@~0.3.7":
version "0.3.7"
resolved "https://registry.yarnpkg.com/@jupyterlab/nbconvert-css/-/nbconvert-css-0.3.7.tgz#9206bb80bf9b6f39b8c938dfd898af1ba1658929"
integrity sha512-r0CcR2q8659EHEE8VI0YWMCUPX48IeA33GJ3lKFFlc+9t3BnIL9BlmytduHk4b0kbbreNgpAHtsqBjEV3fzF/g==
"@jupyterlab/nbconvert-css@^0.3.8", "@jupyterlab/nbconvert-css@~0.3.8":
version "0.3.8"
resolved "https://registry.yarnpkg.com/@jupyterlab/nbconvert-css/-/nbconvert-css-0.3.8.tgz#3ee39af40c8436c629576a54ebcb665f1bfe986b"
integrity sha512-T+YmkdwuLHeuMYu7O6brBqM4qsBnFa10/Apzh9UFuAngUrZAaJ0uahs1ElSqRlSSGlpTwoQQ5rrUB+5hL87q/g==
dependencies:
"@jupyterlab/apputils" "^1.2.4"
"@jupyterlab/cells" "^1.2.5"
Expand Down Expand Up @@ -2144,9 +2144,9 @@ cli-cursor@^2.1.0:
restore-cursor "^2.0.0"

cli-width@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
version "2.2.1"
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==

cliui@^5.0.0:
version "5.0.0"
Expand Down Expand Up @@ -4366,9 +4366,12 @@ object-inspect@^1.7.0:
integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==

object-is@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.2.tgz#6b80eb84fe451498f65007982f035a5b445edec4"
integrity sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ==
version "1.1.2"
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.2.tgz#c5d2e87ff9e119f78b7a088441519e2eec1573b6"
integrity sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ==
dependencies:
define-properties "^1.1.3"
es-abstract "^1.17.5"

object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
version "1.1.1"
Expand Down Expand Up @@ -6013,9 +6016,9 @@ watchpack@^1.6.0:
neo-async "^2.5.0"

webpack-bundle-analyzer@^3.4.1:
version "3.6.1"
resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.6.1.tgz#bdb637c2304424f2fbff9a950c7be42a839ae73b"
integrity sha512-Nfd8HDwfSx1xBwC+P8QMGvHAOITxNBSvu/J/mCJvOwv+G4VWkU7zir9SSenTtyCi0LnVtmsc7G5SZo1uV+bxRw==
version "3.7.0"
resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.7.0.tgz#84da434e89442899b884d9ad38e466d0db02a56f"
integrity sha512-mETdjZ30a3Yf+NTB/wqTgACK7rAYQl5uxKK0WVTNmF0sM3Uv8s3R58YZMW7Rhu0Lk2Rmuhdj5dcH5Q76zCDVdA==
dependencies:
acorn "^7.1.1"
acorn-walk "^7.1.1"
Expand Down

0 comments on commit 989c599

Please sign in to comment.