diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 1d04b4f85a5..69038a2137e 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -70,11 +70,11 @@ jobs: echo "vsix_name=ms-toolsai-jupyter-insiders.vsix" >> $GITHUB_ENV echo "test_matrix_os=[\"ubuntu-latest\", \"windows-latest\"]" >> $GITHUB_ENV - - name: insiders channel - # Scheduled builds will publish Insider builds. - if: github.event_name == 'schedule' && github.ref == 'refs/heads/main' - run: | - echo "release_channel=insider" >> $GITHUB_ENV + # - name: insiders channel + # # Scheduled builds will publish Insider builds. + # if: github.event_name == 'schedule' && github.ref == 'refs/heads/main' + # run: | + # echo "release_channel=insider" >> $GITHUB_ENV - name: release if: github.event_name == 'push' && contains(github.ref, 'refs/heads/release') diff --git a/CHANGELOG.md b/CHANGELOG.md index f98b74b8973..ed1c5f33f69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,103 @@ # Changelog +## 2021.6.99 (8 June 2021) + +### Enhancements + +1. Data Viewer Filter Rows must use explicit wildcards to search for substrings in string filters. For example, filtering by "stable" will not show the value "unstable" anymore, but filtering by "*stable" will show "stable" and "unstable". + ([#1142](https://github.com/Microsoft/vscode-jupyter/issues/1142)) +1. Sort variables by name and type in variable explorer. + ([#4585](https://github.com/Microsoft/vscode-jupyter/issues/4585)) +1. Limit languages dispalyed in the Cell language picker to languages supported by the kernel. + ([#5580](https://github.com/Microsoft/vscode-jupyter/issues/5580)) +1. Move native notebooks cell toolbar to the left by default. + ([#5605](https://github.com/Microsoft/vscode-jupyter/issues/5605)) +1. Display modal dialog box (so users don't miss this) when IPyKernel (or Jupyter) is missing (required to run Python in Interactive Window or Notebooks). + ([#5798](https://github.com/Microsoft/vscode-jupyter/issues/5798)) +1. Add support for [Virtual Workspaces](https://github.com/microsoft/vscode/wiki/Virtual-Workspaces). + ([#5803](https://github.com/Microsoft/vscode-jupyter/issues/5803)) +1. Losslessly compressed PNG images to save ~20KB. + ([#5869](https://github.com/Microsoft/vscode-jupyter/issues/5869)) +1. Adopt `notebook/toolbar` contribution point for native notebooks. + ([#5954](https://github.com/Microsoft/vscode-jupyter/issues/5954)) +1. Tweak variable view fit and finish to match VS Code. + ([#5955](https://github.com/Microsoft/vscode-jupyter/issues/5955)) +1. Replace 'Run cells above' and 'Run cell and below' commands and cell toolbar buttons with VS Code's built-in 'Execute Above Cells' and 'Execute Cell And Below' commands and unified run button. + ([#6025](https://github.com/microsoft/vscode-jupyter/issues/6025)) + +### Fixes + +1. Update/reinstall if module such as `IPyKernel` was installed once before or already exists. + ([#4758](https://github.com/Microsoft/vscode-jupyter/issues/4758)) +1. Stop listing default kernelspecs in kernel picker. + ([#5445](https://github.com/Microsoft/vscode-jupyter/issues/5445)) +1. Store interpreter information in notebook metadata instead of the generated kernelspec name. + ([#5612](https://github.com/Microsoft/vscode-jupyter/issues/5612)) +1. Restore the `Run Above/Below` cells command in `Command Palette`. + ([#5746](https://github.com/Microsoft/vscode-jupyter/issues/5746)) +1. Migrate 'workbench.editorAssociations' setting to new format. + ([#5806](https://github.com/Microsoft/vscode-jupyter/issues/5806)) +1. Add ABCMeta and type to variable explorer exclude list. + ([#5865](https://github.com/Microsoft/vscode-jupyter/issues/5865)) +1. Blank Python notebooks do not use active interpreter. + ([#5874](https://github.com/Microsoft/vscode-jupyter/issues/5874)) +1. Change language of cell to reflect langauges supported by the selected Kernel. + ([#5924](https://github.com/Microsoft/vscode-jupyter/issues/5924)) +1. Resolve issue related to `Interrupt` button vanishing when tabbing across notebooks while a cell is being executed. + ([#5925](https://github.com/Microsoft/vscode-jupyter/issues/5925)) +1. Delete encrypted storage in a try catch to avoid errors. + ([#5934](https://github.com/Microsoft/vscode-jupyter/issues/5934)) +1. Support new renderer API in Jupyter. + ([#5952](https://github.com/Microsoft/vscode-jupyter/issues/5952)) +1. Hide kernels belonging to deleted Python environments from kernel picker. + ([#6164](https://github.com/Microsoft/vscode-jupyter/issues/6164)) + +### Code Health + +1. Error category for unsupported kernelspec file args. + ([#5492](https://github.com/Microsoft/vscode-jupyter/issues/5492)) +1. Fix basic execution issues with nonConda 'remote' and nonConda 'local' test suites. + ([#5660](https://github.com/Microsoft/vscode-jupyter/issues/5660)) +1. Update to new message API for native notebook preloads. + ([#5753](https://github.com/Microsoft/vscode-jupyter/issues/5753)) +1. Rename of onDidChangeCellExecutionState. + ([#5809](https://github.com/Microsoft/vscode-jupyter/issues/5809)) +1. Fix functional ipywidget tests. + ([#5842](https://github.com/Microsoft/vscode-jupyter/issues/5842)) +1. When using remote Jupyter connections pre-fetch kernels only when opening a notebook. + ([#5846](https://github.com/Microsoft/vscode-jupyter/issues/5846)) +1. Removed execution isolation script. + ([#5931](https://github.com/Microsoft/vscode-jupyter/issues/5931)) +1. VSCode API naming changes for NotebookCellExecution, NotebookRendererScript. + ([#6014](https://github.com/Microsoft/vscode-jupyter/issues/6014)) +1. API Changes viewType => notebookType and notebook namespace to notebooks. + ([#6046](https://github.com/microsoft/vscode-jupyter/issues/6046)) +1. Update test init code to use window and not notebook for editor properties. + ([#6098](https://github.com/Microsoft/vscode-jupyter/issues/6098)) +1. Support the new renderer API in jupyter extension. + ([#6118](https://github.com/Microsoft/vscode-jupyter/issues/6118)) +1. Update to new notebookcontroller selection function name. + ([#6121](https://github.com/Microsoft/vscode-jupyter/issues/6121)) +1. Inline execution handler change to notebook API. + ([#6137](https://github.com/Microsoft/vscode-jupyter/issues/6137)) + +### Thanks + +Thanks to the following projects which we fully rely on to provide some of +our features: + +- [Python Extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python) +- [debugpy](https://pypi.org/project/debugpy/) + +Also thanks to the various projects we provide integrations with which help +make this extension useful: + +- [Jupyter](https://jupyter.org/): + [Notebooks](https://jupyter-notebook.readthedocs.io/en/latest/?badge=latest), + [JupyterHub](https://jupyterhub.readthedocs.io/en/stable/), + [ipywidgets](https://ipywidgets.readthedocs.io/en/latest/), + [nbconvert](https://nbconvert.readthedocs.io/en/latest/) + ## 2021.6.0 (05 May 2021) ### Enhancements diff --git a/ThirdPartyNotices-Distribution.txt b/ThirdPartyNotices-Distribution.txt index f204c6fd11d..28087e0f95d 100644 --- a/ThirdPartyNotices-Distribution.txt +++ b/ThirdPartyNotices-Distribution.txt @@ -1566,7 +1566,7 @@ Copyright (c) 2017, Susie Lu (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and @@ -1691,7 +1691,7 @@ Apache License Version 2.0, January 2004 -http://www.apache.org/licenses/ +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -2020,7 +2020,7 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - + Apache License @@ -2224,7 +2224,7 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - + Apache License @@ -2428,7 +2428,7 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - + Apache License @@ -2632,7 +2632,7 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - + --------------------------------------------------------- @@ -2848,7 +2848,7 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - + Apache License @@ -3052,7 +3052,7 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - + Apache License @@ -3256,7 +3256,7 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - + Apache License @@ -3460,7 +3460,7 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - + --------------------------------------------------------- @@ -3541,7 +3541,7 @@ limitations under the License. --------------------------------------------------------- -tslib 1.10.0 - Apache-2.0 +tslib 1.9.3 - Apache-2.0 http://typescriptlang.org/ Copyright (c) Microsoft Corporation. @@ -3550,7 +3550,7 @@ Apache License Version 2.0, January 2004 -http://www.apache.org/licenses/ +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -3607,7 +3607,7 @@ END OF TERMS AND CONDITIONS --------------------------------------------------------- -tslib 1.9.3 - Apache-2.0 +tslib 1.10.0 - Apache-2.0 http://typescriptlang.org/ Copyright (c) Microsoft Corporation. @@ -3616,7 +3616,7 @@ Apache License Version 2.0, January 2004 -http://www.apache.org/licenses/ +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -3852,7 +3852,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -domelementtype 2.0.1 - BSD-2-Clause +domelementtype 1.3.1 - BSD-2-Clause https://github.com/fb55/domelementtype#readme Copyright (c) Felix Bohm @@ -3874,7 +3874,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -domelementtype 1.3.1 - BSD-2-Clause +domelementtype 2.0.1 - BSD-2-Clause https://github.com/fb55/domelementtype#readme Copyright (c) Felix Bohm @@ -4047,18 +4047,18 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -escodegen 1.9.1 - BSD-2-Clause -http://github.com/estools/escodegen +escodegen 1.2.0 - BSD-2-Clause +http://github.com/Constellation/escodegen -Copyright (c) 2014 Ivan Nikulin Copyright (c) 2012 Kris Kowal Copyright (c) 2012 John Freeman -Copyright (c) 2015 Ingvar Stepanyan Copyright (c) 2012 Yusuke Suzuki Copyright (c) 2012-2013 Mathias Bynens +Copyright (c) 2014 Yusuke Suzuki Copyright (c) 2013 Irakli Gozalishvili +Copyright (c) 2009-2011, Mozilla Foundation and contributors Copyright (c) 2012 Arpad Borsos -Copyright (c) 2012-2014 Yusuke Suzuki +Copyright (c) 2012-2013 Yusuke Suzuki Copyright (c) 2011-2012 Ariya Hidayat Copyright (c) 2012 Yusuke Suzuki (http://github.com/Constellation) Copyright (c) 2012 Joost-Wim Boekesteijn @@ -4090,18 +4090,18 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -escodegen 1.2.0 - BSD-2-Clause -http://github.com/Constellation/escodegen +escodegen 1.9.1 - BSD-2-Clause +http://github.com/estools/escodegen +Copyright (c) 2014 Ivan Nikulin Copyright (c) 2012 Kris Kowal Copyright (c) 2012 John Freeman +Copyright (c) 2015 Ingvar Stepanyan Copyright (c) 2012 Yusuke Suzuki Copyright (c) 2012-2013 Mathias Bynens -Copyright (c) 2014 Yusuke Suzuki Copyright (c) 2013 Irakli Gozalishvili -Copyright (c) 2009-2011, Mozilla Foundation and contributors Copyright (c) 2012 Arpad Borsos -Copyright (c) 2012-2013 Yusuke Suzuki +Copyright (c) 2012-2014 Yusuke Suzuki Copyright (c) 2011-2012 Ariya Hidayat Copyright (c) 2012 Yusuke Suzuki (http://github.com/Constellation) Copyright (c) 2012 Joost-Wim Boekesteijn @@ -4225,12 +4225,13 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND --------------------------------------------------------- -estraverse 1.5.1 - BSD-2-Clause -https://github.com/Constellation/estraverse +estraverse 4.3.0 - BSD-2-Clause +https://github.com/estools/estraverse +Copyright (c) 2014 Yusuke Suzuki Copyright (c) 2012 Ariya Hidayat Copyright (c) 2012-2013 Yusuke Suzuki -Copyright (c) 2012-2013 Yusuke Suzuki (http://github.com/Constellation) +Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -4257,13 +4258,12 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -estraverse 4.3.0 - BSD-2-Clause -https://github.com/estools/estraverse +estraverse 1.5.1 - BSD-2-Clause +https://github.com/Constellation/estraverse -Copyright (c) 2014 Yusuke Suzuki Copyright (c) 2012 Ariya Hidayat Copyright (c) 2012-2013 Yusuke Suzuki -Copyright (c) 2012-2016 Yusuke Suzuki (http://github.com/Constellation) +Copyright (c) 2012-2013 Yusuke Suzuki (http://github.com/Constellation) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -4286,6 +4286,26 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------- + +--------------------------------------------------------- + +esutils 1.0.0 - BSD-2-Clause +https://github.com/Constellation/esutils + +Copyright (c) 2013 Yusuke Suzuki +Copyright (c) 2013 Yusuke Suzuki (http://github.com/Constellation) + +Copyright (c) . All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + --------------------------------------------------------- --------------------------------------------------------- @@ -4323,22 +4343,22 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -esutils 1.0.0 - BSD-2-Clause -https://github.com/Constellation/esutils +http-cache-semantics 4.1.0 - BSD-2-Clause +https://github.com/kornelski/http-cache-semantics#readme -Copyright (c) 2013 Yusuke Suzuki -Copyright (c) 2013 Yusuke Suzuki (http://github.com/Constellation) +Copyright 2016-2018 Kornel Lesinski -Copyright (c) . All rights reserved. +Copyright 2016-2018 Kornel Lesiński Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + --------------------------------------------------------- --------------------------------------------------------- @@ -4357,26 +4377,6 @@ Redistribution and use in source and binary forms, with or without modification, THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ---------------------------------------------------------- - ---------------------------------------------------------- - -http-cache-semantics 4.1.0 - BSD-2-Clause -https://github.com/kornelski/http-cache-semantics#readme - -Copyright 2016-2018 Kornel Lesinski - -Copyright 2016-2018 Kornel Lesiński - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------- --------------------------------------------------------- @@ -4788,7 +4788,7 @@ which is licensed under the "MIT" license. See the semver.py file for details. --------------------------------------------------------- -@jupyterlab/coreutils 3.2.0 - BSD-3-Clause +@jupyterlab/coreutils 3.1.0 - BSD-3-Clause https://github.com/jupyterlab/jupyterlab Copyright (c) Jupyter Development Team. @@ -4834,7 +4834,7 @@ which is licensed under the "MIT" license. See the semver.py file for details. --------------------------------------------------------- -@jupyterlab/coreutils 3.1.0 - BSD-3-Clause +@jupyterlab/coreutils 3.2.0 - BSD-3-Clause https://github.com/jupyterlab/jupyterlab Copyright (c) Jupyter Development Team. @@ -5895,7 +5895,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -@nteract/presentational-components 3.4.9 - BSD-3-Clause +@nteract/presentational-components 3.4.10 - BSD-3-Clause @@ -8092,18 +8092,18 @@ Copyright (c) 2013, Deoxxa Development ====================================== All rights reserved. -------------------- - + Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. + notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. + documentation and/or other materials provided with the distribution. 3. Neither the name of Deoxxa Development nor the names of its contributors may be used to endorse or promote products derived from this software - without specific prior written permission. - + without specific prior written permission. + THIS SOFTWARE IS PROVIDED BY DEOXXA DEVELOPMENT ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE @@ -8129,18 +8129,18 @@ Copyright (c) 2013, Deoxxa Development ====================================== All rights reserved. -------------------- - + Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. + notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. + documentation and/or other materials provided with the distribution. 3. Neither the name of Deoxxa Development nor the names of its contributors may be used to endorse or promote products derived from this software - without specific prior written permission. - + without specific prior written permission. + THIS SOFTWARE IS PROVIDED BY DEOXXA DEVELOPMENT ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE @@ -8157,17 +8157,19 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -highlight.js 9.15.10 - BSD-3-Clause +highlight.js 10.7.2 - BSD-3-Clause https://highlightjs.org/ Copyright 2015 (c) Visoft, Inc. copyright copysource cor +(c) Carl Baxter (c) Mike Bostock -(c) John Smith -Copyright (c) 2006, Ivan Sagalaev +Copyright (c) 2018 Sarah Drasner (c) Zaripov Yura +Copyright (c) 2006, Ivan Sagalaev. (c) Jeremy Hull +(c) Samia Ali (c) Aahan Krish (c) Dmitriy Tarasov (c) Gustavo Costa @@ -8182,39 +8184,43 @@ Copyright (c) 2017-present Sven Greb (c) Ahmad Awais link GitHub Repo (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox) Copyright (c) 2017-present Arctic Ice Studio -(c) Ahmad Awais link GitHub Repo https://github.com/ahmadawais/Shades-of-Purple-HighlightJS -Copyright (c) 2006, Ivan Sagalaev +BSD 3-Clause License + +Copyright (c) 2006, Ivan Sagalaev. All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of highlight.js nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- --------------------------------------------------------- -hoist-non-react-statics 3.3.0 - BSD-3-Clause +hoist-non-react-statics 3.3.1 - BSD-3-Clause https://github.com/mridgway/hoist-non-react-statics#readme Copyright 2015, Yahoo! Inc. @@ -8255,7 +8261,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -hoist-non-react-statics 3.3.1 - BSD-3-Clause +hoist-non-react-statics 3.3.0 - BSD-3-Clause https://github.com/mridgway/hoist-non-react-statics#readme Copyright 2015, Yahoo! Inc. @@ -8442,7 +8448,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -source-map 0.6.1 - BSD-3-Clause +source-map 0.5.7 - BSD-3-Clause https://github.com/mozilla/source-map Copyright 2011 The Closure Compiler @@ -8572,7 +8578,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------- -source-map 0.5.7 - BSD-3-Clause +source-map 0.6.1 - BSD-3-Clause https://github.com/mozilla/source-map Copyright 2011 The Closure Compiler @@ -9265,6 +9271,32 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +--------------------------------------------------------- + +--------------------------------------------------------- + +lru-cache 6.0.0 - ISC +https://github.com/isaacs/node-lru-cache#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + --------------------------------------------------------- --------------------------------------------------------- @@ -9449,7 +9481,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------- -semver 6.3.0 - ISC +semver 5.7.0 - ISC https://github.com/npm/node-semver#readme Copyright Isaac Z. @@ -9477,7 +9509,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------- -semver 5.7.0 - ISC +semver 6.3.0 - ISC https://github.com/npm/node-semver#readme Copyright Isaac Z. @@ -9501,6 +9533,33 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +--------------------------------------------------------- + +--------------------------------------------------------- + +semver 7.3.5 - ISC +https://github.com/npm/node-semver#readme + +Copyright Isaac Z. Schlueter +Copyright (c) Isaac Z. Schlueter and Contributors + +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + --------------------------------------------------------- --------------------------------------------------------- @@ -9633,6 +9692,32 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +--------------------------------------------------------- + +--------------------------------------------------------- + +yallist 4.0.0 - ISC +https://github.com/isaacs/yallist#readme + +Copyright (c) Isaac Z. Schlueter and Contributors + +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + --------------------------------------------------------- --------------------------------------------------------- @@ -10002,8 +10087,8 @@ THE SOFTWARE. --------------------------------------------------------- -@babel/runtime 7.6.3 - MIT - +@babel/runtime 7.8.3 - MIT +https://babeljs.io/docs/en/next/babel-runtime Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -10035,8 +10120,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -@babel/runtime 7.8.3 - MIT -https://babeljs.io/docs/en/next/babel-runtime +@babel/runtime 7.6.3 - MIT + Copyright (c) 2014-present Sebastian McKenzie and other contributors @@ -11286,7 +11371,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -@sindresorhus/is 0.14.0 - MIT +@sindresorhus/is 0.7.0 - MIT https://github.com/sindresorhus/is#readme Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -11306,7 +11391,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -@sindresorhus/is 0.7.0 - MIT +@sindresorhus/is 0.14.0 - MIT https://github.com/sindresorhus/is#readme Copyright (c) Sindre Sorhus (sindresorhus.com) @@ -11380,6 +11465,25 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI @types/dom4 2.0.1 - MIT +Copyright (c) Microsoft Corporation. + +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/hast 2.3.1 - MIT + + Copyright (c) Microsoft Corporation. MIT License @@ -11494,6 +11598,25 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI @types/underscore 1.9.4 - MIT +Copyright (c) Microsoft Corporation. + +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--------------------------------------------------------- + +--------------------------------------------------------- + +@types/unist 2.0.3 - MIT + + Copyright (c) Microsoft Corporation. MIT License @@ -11729,7 +11852,7 @@ Note: Usage of the fonts and icons referenced in Fluent UI React is subject to t --------------------------------------------------------- -acorn 7.1.1 - MIT +acorn 6.4.1 - MIT https://github.com/acornjs/acorn Copyright (c) 2012-2018 by various contributors @@ -11759,7 +11882,7 @@ THE SOFTWARE. --------------------------------------------------------- -acorn 6.4.1 - MIT +acorn 7.1.1 - MIT https://github.com/acornjs/acorn Copyright (c) 2012-2018 by various contributors @@ -12015,7 +12138,7 @@ https://github.com/Microsoft/ApplicationInsights-node.js#readme Copyright (c) Microsoft Corporation. -The MIT License (MIT) +The MIT License (MIT) Copyright © Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -12763,14 +12886,14 @@ SOFTWARE. --------------------------------------------------------- -base64-js 1.5.1 - MIT +base64-js 0.0.8 - MIT https://github.com/beatgammit/base64-js -Copyright (c) 2014 Jameson Little +Copyright (c) 2014 The MIT License (MIT) -Copyright (c) 2014 Jameson Little +Copyright (c) 2014 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -12795,14 +12918,14 @@ THE SOFTWARE. --------------------------------------------------------- -base64-js 0.0.8 - MIT +base64-js 1.5.1 - MIT https://github.com/beatgammit/base64-js -Copyright (c) 2014 +Copyright (c) 2014 Jameson Little The MIT License (MIT) -Copyright (c) 2014 +Copyright (c) 2014 Jameson Little Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -13002,7 +13125,7 @@ SOFTWARE. --------------------------------------------------------- -brfs 2.0.2 - MIT +brfs 1.6.1 - MIT https://github.com/substack/brfs @@ -13030,7 +13153,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -brfs 1.6.1 - MIT +brfs 2.0.2 - MIT https://github.com/substack/brfs @@ -13205,18 +13328,18 @@ The MIT License Copyright (c) 2013 Brian J. Brennan -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the -Software, and to permit persons to whom the Software is furnished to do so, +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the +Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -14200,25 +14323,25 @@ The MIT License Copyright (c) 2013 Max Ogden -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, +Permission is hereby granted, free of charge, +to any person obtaining a copy of this software and +associated documentation files (the "Software"), to +deal in the Software without restriction, including +without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom +the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR +ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- @@ -14263,7 +14386,7 @@ https://github.com/thlorenz/convert-source-map Copyright 2013 Thorsten Lorenz. -Copyright 2013 Thorsten Lorenz. +Copyright 2013 Thorsten Lorenz. All rights reserved. Permission is hereby granted, free of charge, to any person @@ -14491,7 +14614,7 @@ Copyright (c) 2013-2016 Evan Vosberg [The MIT License (MIT)](http://opensource.org/licenses/MIT) -Copyright (c) 2009-2013 Jeff Mott +Copyright (c) 2009-2013 Jeff Mott Copyright (c) 2013-2016 Evan Vosberg Permission is hereby granted, free of charge, to any person obtaining a copy @@ -14753,19 +14876,19 @@ Copyright (c) 2014-2017 TJ Holowaychuk Copyright (c) 2014 TJ Holowaychuk -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the 'Software'), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the 'Software'), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -14784,19 +14907,19 @@ Copyright (c) 2014-2017 TJ Holowaychuk Copyright (c) 2014 TJ Holowaychuk -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the 'Software'), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the 'Software'), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -14815,19 +14938,19 @@ Copyright (c) 2014-2017 TJ Holowaychuk Copyright (c) 2014 TJ Holowaychuk -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the 'Software'), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the 'Software'), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -14846,19 +14969,19 @@ Copyright (c) 2014-2016 TJ Holowaychuk Copyright (c) 2014 TJ Holowaychuk -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the 'Software'), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the 'Software'), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -16104,7 +16227,7 @@ THE SOFTWARE. --------------------------------------------------------- -es-to-primitive 1.2.0 - MIT +es-to-primitive 1.2.1 - MIT https://github.com/ljharb/es-to-primitive#readme Copyright (c) 2015 Jordan Harband @@ -16137,7 +16260,7 @@ SOFTWARE. --------------------------------------------------------- -es-to-primitive 1.2.1 - MIT +es-to-primitive 1.2.0 - MIT https://github.com/ljharb/es-to-primitive#readme Copyright (c) 2015 Jordan Harband @@ -16487,7 +16610,7 @@ The MIT License (MIT) Copyright (c) 2016 David Mark Clements Copyright (c) 2017 David Mark Clements & Matteo Collina -Copyright (c) 2018 David Mark Clements, Matteo Collina & Ruben Bridgewater +Copyright (c) 2018 David Mark Clements, Matteo Collina & Ruben Bridgewater Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -16700,7 +16823,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -file-type 5.2.0 - MIT +file-type 4.4.0 - MIT https://github.com/sindresorhus/file-type#readme (c) Sindre Sorhus (https://sindresorhus.com) @@ -16733,7 +16856,7 @@ THE SOFTWARE. --------------------------------------------------------- -file-type 4.4.0 - MIT +file-type 3.9.0 - MIT https://github.com/sindresorhus/file-type#readme (c) Sindre Sorhus (https://sindresorhus.com) @@ -16766,7 +16889,7 @@ THE SOFTWARE. --------------------------------------------------------- -file-type 3.9.0 - MIT +file-type 5.2.0 - MIT https://github.com/sindresorhus/file-type#readme (c) Sindre Sorhus (https://sindresorhus.com) @@ -17262,7 +17385,28 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -get-stream 3.0.0 - MIT +get-stream 5.1.0 - MIT +https://github.com/sindresorhus/get-stream#readme + +(c) Sindre Sorhus (https://sindresorhus.com) +Copyright (c) Sindre Sorhus (sindresorhus.com) + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +--------------------------------------------------------- + +--------------------------------------------------------- + +get-stream 2.3.1 - MIT https://github.com/sindresorhus/get-stream#readme (c) Sindre Sorhus (https://sindresorhus.com) @@ -17316,7 +17460,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -get-stream 2.3.1 - MIT +get-stream 3.0.0 - MIT https://github.com/sindresorhus/get-stream#readme (c) Sindre Sorhus (https://sindresorhus.com) @@ -17345,27 +17489,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ---------------------------------------------------------- - ---------------------------------------------------------- - -get-stream 5.1.0 - MIT -https://github.com/sindresorhus/get-stream#readme - -(c) Sindre Sorhus (https://sindresorhus.com) -Copyright (c) Sindre Sorhus (sindresorhus.com) - -MIT License - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------- --------------------------------------------------------- @@ -17591,7 +17714,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -has-symbols 1.0.0 - MIT +has-symbols 1.0.1 - MIT https://github.com/ljharb/has-symbols#readme Copyright (c) 2016 Jordan Harband @@ -17623,7 +17746,7 @@ SOFTWARE. --------------------------------------------------------- -has-symbols 1.0.1 - MIT +has-symbols 1.0.0 - MIT https://github.com/ljharb/has-symbols#readme Copyright (c) 2016 Jordan Harband @@ -17721,7 +17844,7 @@ THE SOFTWARE. --------------------------------------------------------- -hastscript 5.1.2 - MIT +hastscript 6.0.0 - MIT https://github.com/syntax-tree/hastscript#readme (c) Titus Wormer @@ -17789,7 +17912,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -htmlparser2 4.1.0 - MIT +htmlparser2 3.10.1 - MIT https://github.com/fb55/htmlparser2#readme Copyright 2010, 2011, Chris Winberry @@ -17801,10 +17924,10 @@ deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -17817,7 +17940,7 @@ IN THE SOFTWARE. --------------------------------------------------------- -htmlparser2 3.10.1 - MIT +htmlparser2 4.1.0 - MIT https://github.com/fb55/htmlparser2#readme Copyright 2010, 2011, Chris Winberry @@ -17829,10 +17952,10 @@ deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -18135,54 +18258,54 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -ip-regex 4.1.0 - MIT +ip-regex 2.1.0 - MIT https://github.com/sindresorhus/ip-regex#readme (c) Sindre Sorhus (https://sindresorhus.com) Copyright (c) Sindre Sorhus (sindresorhus.com) -MIT License +The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. --------------------------------------------------------- --------------------------------------------------------- -ip-regex 2.1.0 - MIT +ip-regex 4.1.0 - MIT https://github.com/sindresorhus/ip-regex#readme (c) Sindre Sorhus (https://sindresorhus.com) Copyright (c) Sindre Sorhus (sindresorhus.com) -The MIT License (MIT) +MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- @@ -19566,9 +19689,9 @@ This software is covered under the following copyright: * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, - * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY - * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. * * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER @@ -19726,25 +19849,25 @@ Copyright (c) 2013 Dominic Tarr Copyright (c) 2013 Dominic Tarr -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, +Permission is hereby granted, free of charge, +to any person obtaining a copy of this software and +associated documentation files (the "Software"), to +deal in the Software without restriction, including +without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom +the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR +ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -19813,8 +19936,8 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE --------------------------------------------------------- -jsonparse 1.2.0 - MIT -https://github.com/creationix/jsonparse +jsonparse 1.3.1 - MIT +https://github.com/creationix/jsonparse#readme Copyright (c) 2012 Tim Caswell Copyright (c) 2011-2012 Tim Caswell @@ -19823,25 +19946,25 @@ The MIT License Copyright (c) 2012 Tim Caswell -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, +Permission is hereby granted, free of charge, +to any person obtaining a copy of this software and +associated documentation files (the "Software"), to +deal in the Software without restriction, including +without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom +the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR +ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -19849,8 +19972,8 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -jsonparse 1.3.1 - MIT -https://github.com/creationix/jsonparse#readme +jsonparse 1.2.0 - MIT +https://github.com/creationix/jsonparse Copyright (c) 2012 Tim Caswell Copyright (c) 2011-2012 Tim Caswell @@ -19859,25 +19982,25 @@ The MIT License Copyright (c) 2012 Tim Caswell -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, +Permission is hereby granted, free of charge, +to any person obtaining a copy of this software and +associated documentation files (the "Software"), to +deal in the Software without restriction, including +without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom +the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR +ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -20164,7 +20287,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -lodash 4.17.19 - MIT +lodash 4.17.21 - MIT https://lodash.com/ Copyright OpenJS Foundation and other contributors @@ -20936,7 +21059,7 @@ THE SOFTWARE. --------------------------------------------------------- -lowlight 1.12.1 - MIT +lowlight 1.20.0 - MIT https://github.com/wooorm/lowlight#readme (c) Titus Wormer @@ -21106,8 +21229,8 @@ THE SOFTWARE. ## Markdown -Copyright © 2004, John Gruber -http://daringfireball.net/ +Copyright © 2004, John Gruber +http://daringfireball.net/ All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21451,7 +21574,7 @@ OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -ms 2.1.2 - MIT +ms 2.0.0 - MIT https://github.com/zeit/ms#readme Copyright (c) 2016 Zeit, Inc. @@ -21483,7 +21606,7 @@ SOFTWARE. --------------------------------------------------------- -ms 2.0.0 - MIT +ms 2.1.2 - MIT https://github.com/zeit/ms#readme Copyright (c) 2016 Zeit, Inc. @@ -21553,7 +21676,7 @@ Copyright (c) 2012-2016 Mariusz Nowak The MIT License -Copyright (C) 2012-2016 Mariusz Nowak +Copyright (C) 2012-2016 Mariusz Nowak Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -21707,7 +21830,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. == dependency license: adm-zip == -Copyright (c) 2012 Another-D-Mention Software and other contributors, +Copyright (c) 2012 Another-D-Mention Software and other contributors, http://www.another-d-mention.ro/ Permission is hereby granted, free of charge, to any person obtaining @@ -22336,6 +22459,40 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +--------------------------------------------------------- + +--------------------------------------------------------- + +parse-entities 2.0.0 - MIT +https://github.com/wooorm/parse-entities#readme + +(c) Titus Wormer +Copyright (c) 2015 Titus Wormer + +(The MIT License) + +Copyright (c) 2015 Titus Wormer + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + --------------------------------------------------------- --------------------------------------------------------- @@ -22427,7 +22584,7 @@ SOFTWARE. --------------------------------------------------------- -p-cancelable 0.4.1 - MIT +p-cancelable 1.1.0 - MIT https://github.com/sindresorhus/p-cancelable#readme (c) Sindre Sorhus (https://sindresorhus.com) @@ -22469,7 +22626,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -p-cancelable 1.1.0 - MIT +p-cancelable 0.4.1 - MIT https://github.com/sindresorhus/p-cancelable#readme (c) Sindre Sorhus (https://sindresorhus.com) @@ -22645,28 +22802,40 @@ THE SOFTWARE. --------------------------------------------------------- -pify 3.0.0 - MIT -https://github.com/sindresorhus/pify#readme +pify 2.3.0 - MIT +https://github.com/sindresorhus/pify -(c) Sindre Sorhus (https://sindresorhus.com) +(c) Sindre Sorhus (http://sindresorhus.com) Copyright (c) Sindre Sorhus (sindresorhus.com) -MIT License +The MIT License (MIT) Copyright (c) Sindre Sorhus (sindresorhus.com) -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. --------------------------------------------------------- --------------------------------------------------------- -pify 4.0.1 - MIT +pify 3.0.0 - MIT https://github.com/sindresorhus/pify#readme (c) Sindre Sorhus (https://sindresorhus.com) @@ -22687,33 +22856,21 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -pify 2.3.0 - MIT -https://github.com/sindresorhus/pify +pify 4.0.1 - MIT +https://github.com/sindresorhus/pify#readme -(c) Sindre Sorhus (http://sindresorhus.com) +(c) Sindre Sorhus (https://sindresorhus.com) Copyright (c) Sindre Sorhus (sindresorhus.com) -The MIT License (MIT) +MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- @@ -23204,7 +23361,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -process-nextick-args 1.0.7 - MIT +process-nextick-args 2.0.1 - MIT https://github.com/calvinmetcalf/process-nextick-args Copyright (c) 2015 Calvin Metcalf @@ -23234,7 +23391,7 @@ SOFTWARE.** --------------------------------------------------------- -process-nextick-args 2.0.1 - MIT +process-nextick-args 1.0.7 - MIT https://github.com/calvinmetcalf/process-nextick-args Copyright (c) 2015 Calvin Metcalf @@ -23264,7 +23421,7 @@ SOFTWARE.** --------------------------------------------------------- -promise 8.0.1 - MIT +promise 7.3.1 - MIT https://github.com/then/promise#readme Copyright (c) 2014 Forbes Lindesay @@ -23294,7 +23451,7 @@ THE SOFTWARE. --------------------------------------------------------- -promise 7.3.1 - MIT +promise 8.0.1 - MIT https://github.com/then/promise#readme Copyright (c) 2014 Forbes Lindesay @@ -23563,7 +23720,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -pump 2.0.1 - MIT +pump 3.0.0 - MIT https://github.com/mafintosh/pump#readme Copyright (c) 2014 Mathias Buus @@ -23594,7 +23751,7 @@ THE SOFTWARE. --------------------------------------------------------- -pump 3.0.0 - MIT +pump 2.0.1 - MIT https://github.com/mafintosh/pump#readme Copyright (c) 2014 Mathias Buus @@ -23625,7 +23782,7 @@ THE SOFTWARE. --------------------------------------------------------- -punycode 2.1.1 - MIT +punycode 1.4.1 - MIT https://mths.be/punycode Copyright Mathias Bynens @@ -23656,7 +23813,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -punycode 1.4.1 - MIT +punycode 2.1.1 - MIT https://mths.be/punycode Copyright Mathias Bynens @@ -24087,7 +24244,7 @@ Copyright (c) 2014 Prometheus Research The MIT License (MIT) Original work Copyright (c) 2014 Prometheus Research -Modified work Copyright 2015 Adazzle +Modified work Copyright 2015 Adazzle For the original source code please see https://github.com/prometheusresearch/react-grid @@ -24157,23 +24314,23 @@ Copyright (c) 2013-present, Facebook, Inc. (MIT License) Copyright (c) 2014-2016 Matt Zabriskie. All rights reserved. - + Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -24593,7 +24750,7 @@ Copyright 2013-2016 by Paul Miller (http://paulmillr.com) MIT License -Copyright (c) 2016 https://github.com/chrvadala +Copyright (c) 2016 https://github.com/chrvadala Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -24618,8 +24775,8 @@ SOFTWARE. --------------------------------------------------------- -react-syntax-highlighter 12.2.1 - MIT -https://github.com/conorhastings/react-syntax-highlighter#readme +react-syntax-highlighter 13.5.3 - MIT +https://github.com/react-syntax-highlighter/react-syntax-highlighter#readme Copyright (c) 2019 Conor Hastings @@ -24841,7 +24998,7 @@ IN THE SOFTWARE. --------------------------------------------------------- -readable-stream 3.4.0 - MIT +readable-stream 2.3.6 - MIT https://github.com/nodejs/readable-stream#readme Copyright Joyent, Inc. and other Node contributors. @@ -24899,7 +25056,7 @@ IN THE SOFTWARE. --------------------------------------------------------- -readable-stream 2.3.6 - MIT +readable-stream 3.4.0 - MIT https://github.com/nodejs/readable-stream#readme Copyright Joyent, Inc. and other Node contributors. @@ -25019,7 +25176,7 @@ THE SOFTWARE. --------------------------------------------------------- -refractor 2.10.1 - MIT +refractor 3.3.1 - MIT https://github.com/wooorm/refractor#readme (c) Titus Wormer @@ -25392,8 +25549,8 @@ SOFTWARE. --------------------------------------------------------- -resolve 1.11.1 - MIT -https://github.com/browserify/resolve#readme +resolve 1.1.7 - MIT +https://github.com/substack/node-resolve#readme This software is released under the MIT license: @@ -25420,8 +25577,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -resolve 1.1.7 - MIT -https://github.com/substack/node-resolve#readme +resolve 1.11.1 - MIT +https://github.com/browserify/resolve#readme This software is released under the MIT license: @@ -25537,18 +25694,18 @@ Copyright 2019 David Mark Clements Copyright 2019 "David Mark Clements " -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED -TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF -CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF +CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -25595,7 +25752,7 @@ Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -25734,6 +25891,15 @@ SOFTWARE. seek-bzip 1.0.6 - MIT https://github.com/cscott/seek-bzip#readme +copyright 2011 +Copyright (c) 2011 Kevin Kwok +Copyright (c) 2012 Eli Skeggs +Copyright (c) 2011 Matthew Francis +Copyright (c) 2012-2015 Eli Skeggs +copyright 2012 Eli Skeggs. Adapted +Copyright (c) 2013 C. Scott Ananian +Copyright (c) 2013-2015 C. Scott Ananian +copyright 2011 Kevin Kwok (antimatter15@gmail.com). The MIT License (MIT) @@ -26265,7 +26431,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -static-module 2.2.5 - MIT +static-module 3.0.3 - MIT https://github.com/substack/static-module @@ -26293,7 +26459,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -static-module 3.0.3 - MIT +static-module 2.2.5 - MIT https://github.com/substack/static-module @@ -26451,7 +26617,7 @@ SOFTWARE. --------------------------------------------------------- -string_decoder 1.2.0 - MIT +string_decoder 1.1.1 - MIT https://github.com/nodejs/string_decoder Copyright Joyent, Inc. and other Node contributors. @@ -26510,7 +26676,7 @@ IN THE SOFTWARE. --------------------------------------------------------- -string_decoder 1.1.1 - MIT +string_decoder 1.2.0 - MIT https://github.com/nodejs/string_decoder Copyright Joyent, Inc. and other Node contributors. @@ -27111,25 +27277,25 @@ The MIT License Copyright (c) 2011 Dominic Tarr -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, +Permission is hereby granted, free of charge, +to any person obtaining a copy of this software and +associated documentation files (the "Software"), to +deal in the Software without restriction, including +without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom +the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR +ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -27350,6 +27516,28 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +--------------------------------------------------------- + +--------------------------------------------------------- + +to-fast-properties 2.0.0 - MIT +https://github.com/sindresorhus/to-fast-properties#readme + +(c) Petka Antonov, John-David Dalton, Sindre Sorhus +Copyright (c) 2014 Petka Antonov 2015 Sindre Sorhus + +MIT License + +Copyright (c) 2014 Petka Antonov + 2015 Sindre Sorhus + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + --------------------------------------------------------- --------------------------------------------------------- @@ -27384,28 +27572,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ---------------------------------------------------------- - ---------------------------------------------------------- - -to-fast-properties 2.0.0 - MIT -https://github.com/sindresorhus/to-fast-properties#readme - -(c) Petka Antonov, John-David Dalton, Sindre Sorhus -Copyright (c) 2014 Petka Antonov 2015 Sindre Sorhus - -MIT License - -Copyright (c) 2014 Petka Antonov - 2015 Sindre Sorhus - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------- --------------------------------------------------------- @@ -27463,8 +27629,8 @@ SOFTWARE. --------------------------------------------------------- -trim 0.0.1 - MIT - +trim 0.0.3 - MIT +https://github.com/component/trim#readme Copyright (c) 2012 TJ Holowaychuk @@ -28495,8 +28661,8 @@ OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -uuid 7.0.3 - MIT -https://github.com/uuidjs/uuid#readme +uuid 3.3.2 - MIT +https://github.com/kelektiv/node-uuid#readme Copyright 2011, Sebastian Tschan https://blueimp.net Copyright (c) 2010-2016 Robert Kieffer and other contributors @@ -28529,8 +28695,8 @@ SOFTWARE. --------------------------------------------------------- -uuid 3.3.2 - MIT -https://github.com/kelektiv/node-uuid#readme +uuid 7.0.3 - MIT +https://github.com/uuidjs/uuid#readme Copyright 2011, Sebastian Tschan https://blueimp.net Copyright (c) 2010-2016 Robert Kieffer and other contributors @@ -28559,27 +28725,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ---------------------------------------------------------- - ---------------------------------------------------------- - -uuid 8.2.0 - MIT -https://github.com/uuidjs/uuid#readme - -Copyright 2011, Sebastian Tschan https://blueimp.net -Copyright (c) Paul Johnston 1999 - 2009 Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet - -The MIT License (MIT) - -Copyright (c) 2010-2020 Robert Kieffer and other contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------- --------------------------------------------------------- @@ -28740,7 +28885,7 @@ Copyright (c) Microsoft Corporation. Copyright (c) Microsoft Corporation -All rights reserved. +All rights reserved. MIT License @@ -28788,7 +28933,7 @@ SOFTWARE. --------------------------------------------------------- -vscode-jsonrpc 6.0.0-next.5 - MIT +vscode-jsonrpc 6.0.0 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme Copyright (c) Microsoft Corporation. @@ -28810,7 +28955,7 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -vscode-languageclient 7.0.0-next.9 - MIT +vscode-languageclient 7.0.0 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme Copyright (c) Microsoft Corporation. @@ -28833,7 +28978,7 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -vscode-languageserver 7.0.0-next.7 - MIT +vscode-languageserver 7.0.0 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme Copyright (c) Microsoft Corporation. @@ -28855,7 +29000,7 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -vscode-languageserver-protocol 3.16.0-next.7 - MIT +vscode-languageserver-protocol 3.16.0 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme Copyright (c) TypeFox and others. @@ -28878,7 +29023,7 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -vscode-languageserver-types 3.16.0-next.3 - MIT +vscode-languageserver-types 3.16.0 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme Copyright (c) Microsoft Corporation. @@ -29077,7 +29222,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -ws 6.2.1 - MIT +ws 7.2.0 - MIT https://github.com/websockets/ws Copyright (c) 2011 Einar Otto Stangvik @@ -29109,7 +29254,7 @@ SOFTWARE. --------------------------------------------------------- -ws 7.2.0 - MIT +ws 6.2.1 - MIT https://github.com/websockets/ws Copyright (c) 2011 Einar Otto Stangvik diff --git a/news/1 Enhancements/1142.md b/news/1 Enhancements/1142.md deleted file mode 100644 index fed0dd35d20..00000000000 --- a/news/1 Enhancements/1142.md +++ /dev/null @@ -1 +0,0 @@ -Data Viewer Filter Rows must use explicit wildcards to search for substrings in string filters. For example, filtering by "stable" will not show the value "unstable" anymore, but filtering by "*stable" will show "stable" and "unstable". diff --git a/news/1 Enhancements/4585.md b/news/1 Enhancements/4585.md deleted file mode 100644 index 9809c1ee535..00000000000 --- a/news/1 Enhancements/4585.md +++ /dev/null @@ -1 +0,0 @@ -Sort variables by name and type in variable explorer. diff --git a/news/1 Enhancements/5580.md b/news/1 Enhancements/5580.md deleted file mode 100644 index a6dd85d2b63..00000000000 --- a/news/1 Enhancements/5580.md +++ /dev/null @@ -1 +0,0 @@ -Limit languages dispalyed in the Cell language picker to languages supported by the kernel. diff --git a/news/1 Enhancements/5605.md b/news/1 Enhancements/5605.md deleted file mode 100644 index 10daf6254ed..00000000000 --- a/news/1 Enhancements/5605.md +++ /dev/null @@ -1 +0,0 @@ -Move native notebooks cell toolbar to the left by default. \ No newline at end of file diff --git a/news/1 Enhancements/5798.md b/news/1 Enhancements/5798.md deleted file mode 100644 index 7bdcd2d097e..00000000000 --- a/news/1 Enhancements/5798.md +++ /dev/null @@ -1 +0,0 @@ -Display modal dialog box (so users don't miss this) when IPyKernel (or Jupyter) is missing (required to run Python in Interactive Window or Notebooks). diff --git a/news/1 Enhancements/5803.md b/news/1 Enhancements/5803.md deleted file mode 100644 index 908d9e10c72..00000000000 --- a/news/1 Enhancements/5803.md +++ /dev/null @@ -1 +0,0 @@ -Add support for [Virtual Workspaces](https://github.com/microsoft/vscode/wiki/Virtual-Workspaces) diff --git a/news/1 Enhancements/5869.md b/news/1 Enhancements/5869.md deleted file mode 100644 index 2f13e3f0329..00000000000 --- a/news/1 Enhancements/5869.md +++ /dev/null @@ -1 +0,0 @@ -Losslessly compressed PNG images to save ~20KB. \ No newline at end of file diff --git a/news/1 Enhancements/5954.md b/news/1 Enhancements/5954.md deleted file mode 100644 index b28b8c49d36..00000000000 --- a/news/1 Enhancements/5954.md +++ /dev/null @@ -1 +0,0 @@ -Adopt `notebook/toolbar` contribution point for native notebooks. \ No newline at end of file diff --git a/news/1 Enhancements/5955.md b/news/1 Enhancements/5955.md deleted file mode 100644 index 56f6973c49d..00000000000 --- a/news/1 Enhancements/5955.md +++ /dev/null @@ -1 +0,0 @@ -Tweak variable view fit and finish to match VS Code. \ No newline at end of file diff --git a/news/1 Enhancements/6025.md b/news/1 Enhancements/6025.md deleted file mode 100644 index 1cf462a390b..00000000000 --- a/news/1 Enhancements/6025.md +++ /dev/null @@ -1 +0,0 @@ -Replace 'Run cells above' and 'Run cell and below' commands and cell toolbar buttons with VS Code's built-in 'Execute Above Cells' and 'Execute Cell And Below' commands and unified run button. \ No newline at end of file diff --git a/news/2 Fixes/4758.md b/news/2 Fixes/4758.md deleted file mode 100644 index 618718eb777..00000000000 --- a/news/2 Fixes/4758.md +++ /dev/null @@ -1 +0,0 @@ -Update/reinstall if module such as `IPyKernel` was installed once before or already exists. diff --git a/news/2 Fixes/5445.md b/news/2 Fixes/5445.md deleted file mode 100644 index ecd7472c344..00000000000 --- a/news/2 Fixes/5445.md +++ /dev/null @@ -1 +0,0 @@ -Stop listing default kernelspecs in kernel picker. diff --git a/news/2 Fixes/5612.md b/news/2 Fixes/5612.md deleted file mode 100644 index dfffc91742b..00000000000 --- a/news/2 Fixes/5612.md +++ /dev/null @@ -1 +0,0 @@ -Store interpreter information in notebook metadata instead of the generated kernelspec name. diff --git a/news/2 Fixes/5746.md b/news/2 Fixes/5746.md deleted file mode 100644 index 71969962c87..00000000000 --- a/news/2 Fixes/5746.md +++ /dev/null @@ -1 +0,0 @@ -Restore the `Run Above/Below` cells command in `Command Palette`. diff --git a/news/2 Fixes/5806.md b/news/2 Fixes/5806.md deleted file mode 100644 index 207aed217c2..00000000000 --- a/news/2 Fixes/5806.md +++ /dev/null @@ -1 +0,0 @@ -Migrate 'workbench.editorAssociations' setting to new format. \ No newline at end of file diff --git a/news/2 Fixes/5865.md b/news/2 Fixes/5865.md deleted file mode 100644 index 4c95d0c40f3..00000000000 --- a/news/2 Fixes/5865.md +++ /dev/null @@ -1 +0,0 @@ -Add ABCMeta and type to variable explorer exclude list. \ No newline at end of file diff --git a/news/2 Fixes/5874.md b/news/2 Fixes/5874.md deleted file mode 100644 index 9908c643d94..00000000000 --- a/news/2 Fixes/5874.md +++ /dev/null @@ -1 +0,0 @@ -Blank Python notebooks do not use active interpreter. diff --git a/news/2 Fixes/5924.md b/news/2 Fixes/5924.md deleted file mode 100644 index 62002f1eb31..00000000000 --- a/news/2 Fixes/5924.md +++ /dev/null @@ -1 +0,0 @@ -Change language of cell to reflect langauges supported by the selected Kernel. diff --git a/news/2 Fixes/5925.md b/news/2 Fixes/5925.md deleted file mode 100644 index 9daf7eeed22..00000000000 --- a/news/2 Fixes/5925.md +++ /dev/null @@ -1 +0,0 @@ -Resolve issue related to `Interrupt` button vanishing when tabbing across notebooks while a cell is being executed. diff --git a/news/2 Fixes/5934.md b/news/2 Fixes/5934.md deleted file mode 100644 index 8527a853f71..00000000000 --- a/news/2 Fixes/5934.md +++ /dev/null @@ -1 +0,0 @@ -Delete encrypted storage in a try catch to avoid errors. diff --git a/news/2 Fixes/5952.md b/news/2 Fixes/5952.md deleted file mode 100644 index 95e9302302f..00000000000 --- a/news/2 Fixes/5952.md +++ /dev/null @@ -1 +0,0 @@ -Support new renderer API in Jupyter. \ No newline at end of file diff --git a/news/2 Fixes/6118.md b/news/2 Fixes/6118.md deleted file mode 100644 index 0b7f92525fd..00000000000 --- a/news/2 Fixes/6118.md +++ /dev/null @@ -1 +0,0 @@ -Support the new renderer API in jupyter extension. \ No newline at end of file diff --git a/news/2 Fixes/6121.md b/news/2 Fixes/6121.md deleted file mode 100644 index d69876353eb..00000000000 --- a/news/2 Fixes/6121.md +++ /dev/null @@ -1 +0,0 @@ -Update to new notebookcontroller selection function name. \ No newline at end of file diff --git a/news/2 Fixes/6137.md b/news/2 Fixes/6137.md deleted file mode 100644 index 5129b040dfd..00000000000 --- a/news/2 Fixes/6137.md +++ /dev/null @@ -1 +0,0 @@ -Inline execution handler change to notebook API. \ No newline at end of file diff --git a/news/2 Fixes/6164.md b/news/2 Fixes/6164.md deleted file mode 100644 index 92f7d85e7d6..00000000000 --- a/news/2 Fixes/6164.md +++ /dev/null @@ -1 +0,0 @@ -Hide kernels belonging to deleted Python environments from kernel picker. diff --git a/news/3 Code Health/5492.md b/news/3 Code Health/5492.md deleted file mode 100644 index c61d4e4c723..00000000000 --- a/news/3 Code Health/5492.md +++ /dev/null @@ -1 +0,0 @@ -Error category for unsupported kernelspec file args. diff --git a/news/3 Code Health/5660.md b/news/3 Code Health/5660.md deleted file mode 100644 index dac47a162c9..00000000000 --- a/news/3 Code Health/5660.md +++ /dev/null @@ -1 +0,0 @@ -Fix basic execution issues with nonConda 'remote' and nonConda 'local' test suites. \ No newline at end of file diff --git a/news/3 Code Health/5753.md b/news/3 Code Health/5753.md deleted file mode 100644 index 6be4768a204..00000000000 --- a/news/3 Code Health/5753.md +++ /dev/null @@ -1 +0,0 @@ -Update to new message API for native notebook preloads. \ No newline at end of file diff --git a/news/3 Code Health/5809.md b/news/3 Code Health/5809.md deleted file mode 100644 index 61e0a252a7e..00000000000 --- a/news/3 Code Health/5809.md +++ /dev/null @@ -1 +0,0 @@ -Rename of onDidChangeCellExecutionState. \ No newline at end of file diff --git a/news/3 Code Health/5842.md b/news/3 Code Health/5842.md deleted file mode 100644 index 65b31bde364..00000000000 --- a/news/3 Code Health/5842.md +++ /dev/null @@ -1 +0,0 @@ -Fix functional ipywidget tests. \ No newline at end of file diff --git a/news/3 Code Health/5846.md b/news/3 Code Health/5846.md deleted file mode 100644 index af45ad5a62c..00000000000 --- a/news/3 Code Health/5846.md +++ /dev/null @@ -1 +0,0 @@ -When using remote Jupyter connections pre-fetch kernels only when opening a notebook. diff --git a/news/3 Code Health/5931.md b/news/3 Code Health/5931.md deleted file mode 100644 index 618c0b03868..00000000000 --- a/news/3 Code Health/5931.md +++ /dev/null @@ -1 +0,0 @@ -Removed execution isolation script. diff --git a/news/3 Code Health/6014.md b/news/3 Code Health/6014.md deleted file mode 100644 index 9b04c5fa851..00000000000 --- a/news/3 Code Health/6014.md +++ /dev/null @@ -1 +0,0 @@ -VSCode API naming changes for NotebookCellExecution, NotebookRendererScript \ No newline at end of file diff --git a/news/3 Code Health/6046.md b/news/3 Code Health/6046.md deleted file mode 100644 index 290772c7b52..00000000000 --- a/news/3 Code Health/6046.md +++ /dev/null @@ -1 +0,0 @@ -API Changes viewType => notebookType and notebook namespace to notebooks. \ No newline at end of file diff --git a/news/3 Code Health/6098.md b/news/3 Code Health/6098.md deleted file mode 100644 index 2c6a27b9ba4..00000000000 --- a/news/3 Code Health/6098.md +++ /dev/null @@ -1 +0,0 @@ -Update test init code to use window and not notebook for editor properties. \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index e80b6cb5381..1aa5105541f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "jupyter", - "version": "2021.6.0", + "version": "2021.7.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "jupyter", - "version": "2021.6.0", + "version": "2021.7.0", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -285,7 +285,7 @@ "yargs-parser": "^13.1.2" }, "engines": { - "vscode": "1.57.0-insider" + "vscode": "1.58.0-insider" }, "optionalDependencies": { "canvas": "^2.7.0", diff --git a/package.json b/package.json index 1ec73428ed6..e6ae6134d05 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jupyter", "displayName": "Jupyter", - "version": "2021.6.0", + "version": "2021.7.0", "description": "Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.", "publisher": "ms-toolsai", "enableProposedApi": true,