From 5ce9884226bd222d638cf6f0c00f4c6ef8ff1b60 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Thu, 5 May 2022 11:17:39 -0700 Subject: [PATCH] Release prep (#19071) * Update version number * Update Jedi language server * Update change logs * Update TPN * Update Vs Code engine --- CHANGELOG.md | 93 ++++ ThirdPartyNotices-Distribution.txt | 465 ++++++++++-------- news/1 Enhancements/17242.md | 1 - news/1 Enhancements/18509.md | 1 - news/2 Fixes/18510.md | 1 - news/2 Fixes/18829.md | 1 - news/2 Fixes/18915.md | 1 - news/2 Fixes/18945.md | 1 - news/2 Fixes/18974.md | 1 - news/2 Fixes/19012.md | 1 - news/2 Fixes/19036.md | 1 - news/2 Fixes/19042.md | 1 - news/3 Code Health/18324.md | 1 - news/3 Code Health/18511.md | 1 - news/3 Code Health/18809.md | 1 - news/3 Code Health/19060.md | 1 - package-lock.json | 4 +- package.json | 4 +- .../jedilsp_requirements/requirements.txt | 18 +- 19 files changed, 371 insertions(+), 227 deletions(-) delete mode 100644 news/1 Enhancements/17242.md delete mode 100644 news/1 Enhancements/18509.md delete mode 100644 news/2 Fixes/18510.md delete mode 100644 news/2 Fixes/18829.md delete mode 100644 news/2 Fixes/18915.md delete mode 100644 news/2 Fixes/18945.md delete mode 100644 news/2 Fixes/18974.md delete mode 100644 news/2 Fixes/19012.md delete mode 100644 news/2 Fixes/19036.md delete mode 100644 news/2 Fixes/19042.md delete mode 100644 news/3 Code Health/18324.md delete mode 100644 news/3 Code Health/18511.md delete mode 100644 news/3 Code Health/18809.md delete mode 100644 news/3 Code Health/19060.md diff --git a/CHANGELOG.md b/CHANGELOG.md index e3137b495a84..aa5b2ccef0f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,98 @@ # Changelog +## 2022.6.0 (5 May 2022) + +### Enhancements + +1. Rewrite support for unittest test discovery. + ([#17242](https://github.com/Microsoft/vscode-python/issues/17242)) +1. Do not require a reload when swapping between language servers. + ([#18509](https://github.com/Microsoft/vscode-python/issues/18509)) + +### Fixes + +1. Do not show inherit env prompt for conda envs when running "remotely". + ([#18510](https://github.com/Microsoft/vscode-python/issues/18510)) +1. Fixes invalid regular expression logging error occurs when file paths contain special characters. + (Thanks [sunyinqi0508](https://github.com/sunyinqi0508)) + ([#18829](https://github.com/Microsoft/vscode-python/issues/18829)) +1. Do not prompt to select new virtual envrionment if it has already been selected. + ([#18915](https://github.com/Microsoft/vscode-python/issues/18915)) +1. Disable isort when using isort extension. + ([#18945](https://github.com/Microsoft/vscode-python/issues/18945)) +1. Remove `process` check from browser specific entry point for the extension. + ([#18974](https://github.com/Microsoft/vscode-python/issues/18974)) +1. Use built-in test refresh button. + ([#19012](https://github.com/Microsoft/vscode-python/issues/19012)) +1. Update vscode-telemetry-extractor to @vscode/telemetry-extractor@1.9.7. + (Thanks [Quan Zhuo](https://github.com/quanzhuo)) + ([#19036](https://github.com/Microsoft/vscode-python/issues/19036)) +1. Ensure 64-bit interpreters are preferred over 32-bit when auto-selecting. + ([#19042](https://github.com/Microsoft/vscode-python/issues/19042)) + +### Code Health + +1. Update Jedi minimum to python 3.7. + ([#18324](https://github.com/Microsoft/vscode-python/issues/18324)) +1. Stop using `--live-stream` when using `conda run` (see https://github.com/conda/conda/issues/11209 for details). + ([#18511](https://github.com/Microsoft/vscode-python/issues/18511)) +1. Remove prompt to recommend users in old insiders program to switch to pre-release. + ([#18809](https://github.com/Microsoft/vscode-python/issues/18809)) +1. Update requirements to remove python 2.7 version restrictions. + ([#19060](https://github.com/Microsoft/vscode-python/issues/19060)) + +### Thanks + +Thanks to the following projects which we fully rely on to provide some of +our features: + +- [debugpy](https://pypi.org/project/debugpy/) +- [isort](https://pypi.org/project/isort/) +- [jedi](https://pypi.org/project/jedi/) + and [parso](https://pypi.org/project/parso/) +- [jedi-language-server](https://pypi.org/project/jedi-language-server/) +- [Pylance](https://github.com/microsoft/pylance-release) + +Also thanks to the various projects we provide integrations with which help +make this extension useful: + +- Debugging support: + [Django](https://pypi.org/project/Django/), + [Flask](https://pypi.org/project/Flask/), + [gevent](https://pypi.org/project/gevent/), + [Jinja](https://pypi.org/project/Jinja/), + [Pyramid](https://pypi.org/project/pyramid/), + [PySpark](https://pypi.org/project/pyspark/), + [Scrapy](https://pypi.org/project/Scrapy/), + [Watson](https://pypi.org/project/Watson/) +- Formatting: + [autopep8](https://pypi.org/project/autopep8/), + [black](https://pypi.org/project/black/), + [yapf](https://pypi.org/project/yapf/) +- Interpreter support: + [conda](https://conda.io/), + [direnv](https://direnv.net/), + [pipenv](https://pypi.org/project/pipenv/), + [poetry](https://pypi.org/project/poetry/), + [pyenv](https://github.com/pyenv/pyenv), + [venv](https://docs.python.org/3/library/venv.html#module-venv), + [virtualenv](https://pypi.org/project/virtualenv/) +- Linting: + [bandit](https://pypi.org/project/bandit/), + [flake8](https://pypi.org/project/flake8/), + [mypy](https://pypi.org/project/mypy/), + [prospector](https://pypi.org/project/prospector/), + [pylint](https://pypi.org/project/pylint/), + [pydocstyle](https://pypi.org/project/pydocstyle/), + [pylama](https://pypi.org/project/pylama/) +- Testing: + [pytest](https://pypi.org/project/pytest/), + [unittest](https://docs.python.org/3/library/unittest.html#module-unittest) + +And finally thanks to the [Python](https://www.python.org/) development team and +community for creating a fantastic programming language and community to be a +part of! + ## 2022.4.1 (7 April 2022) ### Fixes diff --git a/ThirdPartyNotices-Distribution.txt b/ThirdPartyNotices-Distribution.txt index d4761a1911d0..7c5a74e89585 100644 --- a/ThirdPartyNotices-Distribution.txt +++ b/ThirdPartyNotices-Distribution.txt @@ -20,7 +20,7 @@ required to debug changes to any libraries licensed under the GNU Lesser General json-schema 0.4.0 - AFL-2.1 OR BSD-3-Clause OR (AFL-2.1 AND BSD-3-Clause) https://github.com/kriszyp/json-schema#readme -Copyright (c) 2003-2004 Lawrence E. Rosen. +Copyright (c) 2003-2004 Lawrence E. Rosen Copyright (c) 2005-2015, The Dojo Foundation Dojo is available under *either* the terms of the BSD 3-Clause "New" License *or* the @@ -432,7 +432,7 @@ limitations under the License. --------------------------------------------------------- -diff-match-patch 1.0.4 - Apache-2.0 +diff-match-patch 1.0.5 - Apache-2.0 https://github.com/JackuB/diff-match-patch#readme Copyright 2018 @@ -1271,7 +1271,7 @@ END OF TERMS AND CONDITIONS --------------------------------------------------------- -request 2.88.0 - Apache-2.0 +request 2.88.2 - Apache-2.0 https://github.com/request/request#readme Copyright 2010-2012 Mikeal Rogers @@ -1336,7 +1336,7 @@ END OF TERMS AND CONDITIONS --------------------------------------------------------- -rxjs 6.5.4 - Apache-2.0 +rxjs 6.6.7 - Apache-2.0 https://github.com/ReactiveX/RxJS Copyright Google Inc. @@ -2163,12 +2163,12 @@ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contrib --------------------------------------------------------- -rxjs-compat 6.5.4 - Apache-2.0 +rxjs-compat 6.6.7 - Apache-2.0 (c) this.destination.next (c) this.destination.error -Copyright (c) Microsoft Corporation. +Copyright (c) Microsoft Corporation Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors Apache License @@ -3286,7 +3286,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND --------------------------------------------------------- -md5 2.2.1 - BSD-3-Clause +md5 2.3.0 - BSD-3-Clause https://github.com/pvorb/node-md5#readme Copyright (c) 2009, Jeff Mott. @@ -3365,7 +3365,7 @@ The complete list of contributors can be found at: https://github.com/hapijs/qs/ --------------------------------------------------------- -tough-cookie 2.4.3 - BSD-3-Clause +tough-cookie 2.5.0 - BSD-3-Clause https://github.com/salesforce/tough-cookie Copyright (c) 2015, Salesforce.com, Inc. @@ -3389,29 +3389,76 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND --------------------------------------------------------- -docstring-to-markdown 0.10 - GPL-3.0-or-later AND LGPL-2.1 AND LGPL-2.1-only +sha.js 2.4.11 - BSD-3-Clause AND MIT +https://github.com/crypto-browserify/sha.js +Copyright (c) 2013-2018 sha.js contributors +Copyright (c) 1998 - 2009, Paul Johnston & Contributors +Copyright Paul Johnston 2000 - 2002. Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet +Copyright Angel Marin, Paul Johnston 2000 - 2009. Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet -copyrighted by the Free Software Foundation -Copyright (c) 1991, 1999 Free Software Foundation, Inc. +Copyright (c) 2013-2018 sha.js contributors -GPL-3.0-or-later AND LGPL-2.1 AND LGPL-2.1-only +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. -at-least-node 1.0.0 - ISC -https://github.com/RyanZim/at-least-node#readme +Copyright (c) 1998 - 2009, Paul Johnston & Contributors +All rights reserved. -The ISC License -Copyright (c) 2020 Ryan Zimmerman +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -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. +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. -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. +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 author 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 OWNER 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. + + + +--------------------------------------------------------- + +--------------------------------------------------------- + +docstring-to-markdown 0.10 - GPL-3.0-or-later AND LGPL-2.1 AND LGPL-2.1-only + + +copyrighted by the Free Software Foundation +Copyright (c) 1991, 1999 Free Software Foundation, Inc. + +GPL-3.0-or-later AND LGPL-2.1 AND LGPL-2.1-only --------------------------------------------------------- @@ -3421,7 +3468,7 @@ fs.realpath 1.0.0 - ISC https://github.com/isaacs/fs.realpath#readme Copyright (c) Isaac Z. Schlueter and Contributors -Copyright Joyent, Inc. and other Node contributors. +Copyright Joyent, Inc. and other Node contributors The ISC License @@ -3472,7 +3519,7 @@ the licensed code: --------------------------------------------------------- -glob 7.1.4 - ISC +glob 7.2.0 - ISC https://github.com/isaacs/node-glob#readme Copyright (c) Isaac Z. Schlueter and Contributors @@ -3504,7 +3551,7 @@ https://creativecommons.org/licenses/by-sa/4.0/ --------------------------------------------------------- -graceful-fs 4.2.0 - ISC +graceful-fs 4.2.9 - ISC https://github.com/isaacs/node-graceful-fs#readme Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors @@ -3683,7 +3730,7 @@ PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------- -minimatch 3.0.4 - ISC +minimatch 3.1.2 - ISC https://github.com/isaacs/minimatch#readme Copyright (c) Isaac Z. Schlueter and Contributors @@ -3705,6 +3752,32 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +--------------------------------------------------------- + +--------------------------------------------------------- + +minimatch 5.0.1 - ISC +https://github.com/isaacs/minimatch#readme + +Copyright (c) 2011-2022 Isaac Z. Schlueter and Contributors + +The ISC License + +Copyright (c) 2011-2022 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. + + --------------------------------------------------------- --------------------------------------------------------- @@ -3788,7 +3861,7 @@ License, as follows: --------------------------------------------------------- -semver 5.7.0 - ISC +semver 5.7.1 - ISC https://github.com/npm/node-semver#readme Copyright Isaac Z. @@ -3816,7 +3889,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------- -semver 7.3.4 - ISC +semver 7.3.7 - ISC https://github.com/npm/node-semver#readme Copyright Isaac Z. Schlueter @@ -4087,11 +4160,11 @@ That's all there is to it! --------------------------------------------------------- -@vscode/jupyter-lsp-middleware 0.2.35 - MIT +@vscode/jupyter-lsp-middleware 0.2.42 - MIT -Copyright (c) TypeFox and others. -Copyright (c) Microsoft Corporation. +Copyright (c) Microsoft Corporation +Copyright (c) TypeFox, Microsoft and others MIT License @@ -4120,14 +4193,9 @@ Copyright (c) Microsoft Corporation. --------------------------------------------------------- -@vscode/lsp-notebook-concat 0.1.5 - MIT +@vscode/lsp-notebook-concat 0.1.10 - MIT -Copyright (c) TypeFox and others. -Copyright (c) Microsoft Corporation. -Copyright Joyent, Inc. and other Node contributors. -Copyright Paul Johnston 2000 - 2002. Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet -Copyright Angel Marin, Paul Johnston 2000 - 2009. Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet MIT License @@ -4191,7 +4259,7 @@ SOFTWARE. --------------------------------------------------------- -arch 2.1.1 - MIT +arch 2.2.0 - MIT https://github.com/feross/arch Copyright (c) Feross Aboukhadijeh @@ -4259,7 +4327,7 @@ https://github.com/mcavage/node-assert-plus#readme Copyright 2015 Joyent, Inc. Copyright (c) 2012 Mark Cavage -Copyright (c) 2012, Mark Cavage. +Copyright (c) 2012, Mark Cavage MIT License @@ -4426,6 +4494,38 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +--------------------------------------------------------- + +--------------------------------------------------------- + +brace-expansion 2.0.1 - MIT +https://github.com/juliangruber/brace-expansion + +Copyright (c) 2013 Julian Gruber + +MIT License + +Copyright (c) 2013 Julian Gruber + +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. + + --------------------------------------------------------- --------------------------------------------------------- @@ -4491,7 +4591,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. core-util-is 1.0.2 - MIT https://github.com/isaacs/core-util-is#readme -Copyright Joyent, Inc. and other Node contributors. +Copyright Joyent, Inc. and other Node contributors Copyright Node.js contributors. All rights reserved. @@ -4819,7 +4919,7 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors --------------------------------------------------------- -fs-extra 9.1.0 - MIT +fs-extra 10.0.1 - MIT https://github.com/jprichardson/node-fs-extra Copyright (c) 2011-2017 JP Richardson @@ -4906,6 +5006,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- --------------------------------------------------------- + har-validator 5.1.3 - MIT https://github.com/ahmadnassri/node-har-validator @@ -4929,7 +5030,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI hash.js 1.1.7 - MIT https://github.com/indutny/hash.js -Copyright Fedor Indutny, 2014. +Copyright Fedor Indutny, 2014 MIT License @@ -4977,10 +5078,10 @@ IN THE SOFTWARE. --------------------------------------------------------- -iconv-lite 0.4.24 - MIT +iconv-lite 0.6.3 - MIT https://github.com/ashtuchkin/iconv-lite -Copyright (c) Microsoft Corporation. +Copyright (c) Microsoft Corporation Copyright (c) 2011 Alexander Shtuchkin Copyright (c) 2011 Alexander Shtuchkin @@ -5048,7 +5149,7 @@ is-buffer 1.1.6 - MIT https://github.com/feross/is-buffer#readme Copyright (c) Feross Aboukhadijeh -Copyright (c) Feross Aboukhadijeh (http://feross.org). +Copyright (c) Feross Aboukhadijeh (http://feross.org) The MIT License (MIT) @@ -5285,12 +5386,12 @@ Address all questions regarding this license to: --------------------------------------------------------- -jsonc-parser 2.1.0 - MIT -https://github.com/Microsoft/node-jsonc-parser#readme +jsonc-parser 3.0.0 - MIT +https://github.com/microsoft/node-jsonc-parser#readme Copyright (c) Microsoft Copyright 2018, Microsoft -Copyright (c) Microsoft Corporation. +Copyright (c) Microsoft Corporation The MIT License (MIT) @@ -5468,41 +5569,44 @@ terms above. --------------------------------------------------------- -mime-db 1.40.0 - MIT +mime-db 1.52.0 - MIT https://github.com/jshttp/mime-db#readme Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014 Jonathan Ong me@jongleberry.com - +Copyright (c) 2015-2022 Douglas Christopher Wilson +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson -The MIT License (MIT) +(The MIT License) -Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson -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. --------------------------------------------------------- --------------------------------------------------------- -mime-types 2.1.24 - MIT +mime-types 2.1.35 - MIT https://github.com/jshttp/mime-types#readme Copyright (c) 2014 Jonathan Ong @@ -5539,7 +5643,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -minimist 1.2.5 - MIT +minimist 1.2.6 - MIT https://github.com/substack/minimist @@ -5630,15 +5734,13 @@ THE SOFTWARE. --------------------------------------------------------- -node-stream-zip 1.8.2 - MIT +node-stream-zip 1.15.0 - MIT https://github.com/antelle/node-stream-zip -Copyright (c) 2015 Antelle https://github.com/antelle -(c) 2015 Antelle https://github.com/antelle/node-stream-zip/blob/master/LICENSE Copyright (c) 2012 Another-D-Mention Software and other contributors, http://www.another-d-mention.ro Portions copyright https://github.com/cthackers/adm-zip https://raw.githubusercontent.com/cthackers/adm-zip/master/LICENSE -Copyright (c) 2015 Antelle https://github.com/antelle +Copyright (c) 2021 Antelle https://github.com/antelle Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -5683,6 +5785,39 @@ 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. +--------------------------------------------------------- + +--------------------------------------------------------- + +object-hash 3.0.0 - MIT +https://github.com/puleos/object-hash + +Copyright (c) 2014 object-hash contributors + +The MIT License (MIT) + +Copyright (c) 2014 object-hash 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. + + + --------------------------------------------------------- --------------------------------------------------------- @@ -5831,7 +5966,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -psl 1.2.0 - MIT +psl 1.8.0 - MIT https://github.com/lupomontero/psl#readme Copyright (c) 2017 Lupo Montero lupomontero@gmail.com @@ -5848,37 +5983,6 @@ The above copyright notice and this permission notice shall be included in all c 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. ---------------------------------------------------------- - ---------------------------------------------------------- - -punycode 1.4.1 - MIT -https://mths.be/punycode - -Copyright Mathias Bynens - -Copyright Mathias Bynens - -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. - - --------------------------------------------------------- --------------------------------------------------------- @@ -6078,7 +6182,7 @@ IN THE SOFTWARE. --------------------------------------------------------- -sudo-prompt 8.2.5 - MIT +sudo-prompt 9.2.1 - MIT https://github.com/jorangreef/sudo-prompt#readme Copyright (c) 2015 Joran Dirk Greef @@ -6129,11 +6233,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -tmp 0.0.29 - MIT +tmp 0.0.33 - MIT http://github.com/raszi/node-tmp Copyright (c) 2014 KARASZI Istvan -Copyright (c) 2011-2015 KARASZI Istvan +Copyright (c) 2011-2017 KARASZI Istvan The MIT License (MIT) @@ -6202,7 +6306,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -uint64be 1.0.1 - MIT +uint64be 3.0.0 - MIT https://github.com/mafintosh/uint64be Copyright (c) 2015 Mathias Buus @@ -6234,8 +6338,8 @@ THE SOFTWARE. --------------------------------------------------------- -unicode 10.0.0 - MIT -http://github.com/eversport/node-unicodetable +unicode 14.0.0 - MIT +http://github.com/tdanecker/node-unicodetable Copyright (c) 2014 @@ -6283,41 +6387,29 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------- -untildify 3.0.3 - MIT +untildify 4.0.0 - MIT https://github.com/sindresorhus/untildify#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: +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. --------------------------------------------------------- --------------------------------------------------------- -uuid 3.3.2 - MIT -https://github.com/kelektiv/node-uuid#readme +uuid 3.4.0 - MIT +https://github.com/uuidjs/uuid#readme Copyright 2011, Sebastian Tschan https://blueimp.net Copyright (c) 2010-2016 Robert Kieffer and other contributors @@ -6346,6 +6438,28 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +--------------------------------------------------------- + +--------------------------------------------------------- + +uuid 8.3.2 - MIT +https://github.com/uuidjs/uuid#readme + +Copyright 2011, Sebastian Tschan https://blueimp.net +Copyright (c) 2010-2020 Robert Kieffer and other contributors +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. + + --------------------------------------------------------- --------------------------------------------------------- @@ -6458,10 +6572,9 @@ SOFTWARE. --------------------------------------------------------- -vscode-jsonrpc 6.0.0 - MIT +vscode-jsonrpc 8.0.0-next.8 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme -Copyright (c) Microsoft Corporation. Copyright (c) Microsoft Corporation @@ -6480,11 +6593,13 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -vscode-languageclient 7.0.0 - MIT +vscode-languageclient 8.0.0-next.18 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme -Copyright (c) Microsoft Corporation. +Copyright (c) TypeFox and others +Copyright (c) Microsoft Corporation Copyright (c) Isaac Z. Schlueter and Contributors +Copyright (c) 2013 Julian Gruber Copyright (c) Microsoft Corporation @@ -6503,10 +6618,11 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -vscode-languageserver 7.0.0 - MIT +vscode-languageserver 8.0.0-next.14 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme -Copyright (c) Microsoft Corporation. +Copyright (c) TypeFox and others +Copyright (c) Microsoft Corporation Copyright (c) Microsoft Corporation @@ -6525,11 +6641,11 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -vscode-languageserver-protocol 3.16.0 - MIT +vscode-languageserver-protocol 3.17.0-next.20 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme -Copyright (c) TypeFox and others. -Copyright (c) Microsoft Corporation. +Copyright (c) Microsoft Corporation +Copyright (c) TypeFox, Microsoft and others Copyright (c) Microsoft Corporation @@ -6548,10 +6664,9 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -vscode-languageserver-types 3.16.0 - MIT +vscode-languageserver-types 3.17.0-next.12 - MIT https://github.com/Microsoft/vscode-languageserver-node#readme -Copyright (c) Microsoft Corporation. Copyright (c) Microsoft Corporation @@ -6672,7 +6787,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -zipp 3.6.0 - MIT +zipp 3.7.0 - MIT Copyright Jason R. Coombs @@ -6691,74 +6806,24 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -sha.js 2.4.11 - MIT AND BSD-3-Clause -https://github.com/crypto-browserify/sha.js - -Copyright (c) 2013-2018 sha.js contributors -Copyright (c) 1998 - 2009, Paul Johnston & Contributors -Copyright Paul Johnston 2000 - 2002. Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet -Copyright Angel Marin, Paul Johnston 2000 - 2009. Other contributors Greg Holt, Andrew Kepert, Ydnar, Lostinet - -Copyright (c) 2013-2018 sha.js 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. - - -Copyright (c) 1998 - 2009, Paul Johnston & Contributors -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 the author nor the names of its contributors may be used to -endorse or promote products derived from this software without specific prior -written permission. +typing-extensions 3.7.4.3 -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 OWNER 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. +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam +Copyright (c) 1995-2001 Corporation for National Research Initiatives +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Python Software Foundation +OTHER --------------------------------------------------------- --------------------------------------------------------- -typing-extensions 3.7.4.3 +typing-extensions 4.1.1 -Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam Copyright (c) 1995-2001 Corporation for National Research Initiatives +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Python Software Foundation OTHER @@ -6767,11 +6832,11 @@ OTHER --------------------------------------------------------- -typing-extensions 4.0.1 +typing-extensions 4.2.0 -Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam Copyright (c) 1995-2001 Corporation for National Research Initiatives +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Python Software Foundation OTHER diff --git a/news/1 Enhancements/17242.md b/news/1 Enhancements/17242.md deleted file mode 100644 index 204de1ba5158..000000000000 --- a/news/1 Enhancements/17242.md +++ /dev/null @@ -1 +0,0 @@ -Rewrite support for unittest test discovery. diff --git a/news/1 Enhancements/18509.md b/news/1 Enhancements/18509.md deleted file mode 100644 index 82e7ce4b4389..000000000000 --- a/news/1 Enhancements/18509.md +++ /dev/null @@ -1 +0,0 @@ -Do not require a reload when swapping between language servers. diff --git a/news/2 Fixes/18510.md b/news/2 Fixes/18510.md deleted file mode 100644 index 9060834af7f1..000000000000 --- a/news/2 Fixes/18510.md +++ /dev/null @@ -1 +0,0 @@ -Do not show inherit env prompt for conda envs when running "remotely". diff --git a/news/2 Fixes/18829.md b/news/2 Fixes/18829.md deleted file mode 100644 index 814e013a67cf..000000000000 --- a/news/2 Fixes/18829.md +++ /dev/null @@ -1 +0,0 @@ - Fixes invalid regular expression logging error occurs when file paths contain special characters (Thanks [sunyinqi0508](https://github.com/sunyinqi0508)) diff --git a/news/2 Fixes/18915.md b/news/2 Fixes/18915.md deleted file mode 100644 index b513a39f7dfc..000000000000 --- a/news/2 Fixes/18915.md +++ /dev/null @@ -1 +0,0 @@ -Do not prompt to select new virtual envrionment if it has already been selected. diff --git a/news/2 Fixes/18945.md b/news/2 Fixes/18945.md deleted file mode 100644 index 03580b3de014..000000000000 --- a/news/2 Fixes/18945.md +++ /dev/null @@ -1 +0,0 @@ -Disable isort when using isort extension. diff --git a/news/2 Fixes/18974.md b/news/2 Fixes/18974.md deleted file mode 100644 index dd8a05d18ad2..000000000000 --- a/news/2 Fixes/18974.md +++ /dev/null @@ -1 +0,0 @@ -Remove `process` check from browser specific entry point for the extension. diff --git a/news/2 Fixes/19012.md b/news/2 Fixes/19012.md deleted file mode 100644 index 4b23d3f32d37..000000000000 --- a/news/2 Fixes/19012.md +++ /dev/null @@ -1 +0,0 @@ -Use built-in test refresh button. diff --git a/news/2 Fixes/19036.md b/news/2 Fixes/19036.md deleted file mode 100644 index 0f6865cb8054..000000000000 --- a/news/2 Fixes/19036.md +++ /dev/null @@ -1 +0,0 @@ -Update vscode-telemetry-extractor to @vscode/telemetry-extractor@1.9.7. (Thanks [Quan Zhuo](https://github.com/quanzhuo)) diff --git a/news/2 Fixes/19042.md b/news/2 Fixes/19042.md deleted file mode 100644 index f9ba74064762..000000000000 --- a/news/2 Fixes/19042.md +++ /dev/null @@ -1 +0,0 @@ -Ensure 64-bit interpreters are preferred over 32-bit when auto-selecting. diff --git a/news/3 Code Health/18324.md b/news/3 Code Health/18324.md deleted file mode 100644 index 707810b7f514..000000000000 --- a/news/3 Code Health/18324.md +++ /dev/null @@ -1 +0,0 @@ -Update Jedi minimum to python 3.7. diff --git a/news/3 Code Health/18511.md b/news/3 Code Health/18511.md deleted file mode 100644 index 38b94bfdd0c9..000000000000 --- a/news/3 Code Health/18511.md +++ /dev/null @@ -1 +0,0 @@ -Stop using `--live-stream` when using `conda run` (see https://github.com/conda/conda/issues/11209 for details). diff --git a/news/3 Code Health/18809.md b/news/3 Code Health/18809.md deleted file mode 100644 index 75dfcb8a864d..000000000000 --- a/news/3 Code Health/18809.md +++ /dev/null @@ -1 +0,0 @@ -Remove prompt to recommend users in old insiders program to switch to pre-release. diff --git a/news/3 Code Health/19060.md b/news/3 Code Health/19060.md deleted file mode 100644 index aa58fb207972..000000000000 --- a/news/3 Code Health/19060.md +++ /dev/null @@ -1 +0,0 @@ -Update requirements to remove python 2.7 version restrictions. diff --git a/package-lock.json b/package-lock.json index 11edfd6f8002..cc1b2ce8078a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "python", - "version": "2022.5.0-dev", + "version": "2022.6.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "python", - "version": "2022.5.0-dev", + "version": "2022.6.0", "license": "MIT", "dependencies": { "@vscode/jupyter-lsp-middleware": "^0.2.42", diff --git a/package.json b/package.json index 582bae0903b2..72d5240666a6 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "python", "displayName": "Python", "description": "IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.", - "version": "2022.5.0-dev", + "version": "2022.6.0", "featureFlags": { "usingNewInterpreterStorage": true }, @@ -42,7 +42,7 @@ "theme": "dark" }, "engines": { - "vscode": "^1.67.0-insider" + "vscode": "^1.67.0" }, "keywords": [ "python", diff --git a/pythonFiles/jedilsp_requirements/requirements.txt b/pythonFiles/jedilsp_requirements/requirements.txt index abfc8cdadf03..44a77c8e824c 100644 --- a/pythonFiles/jedilsp_requirements/requirements.txt +++ b/pythonFiles/jedilsp_requirements/requirements.txt @@ -16,9 +16,9 @@ jedi==0.18.1 \ --hash=sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d \ --hash=sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab # via jedi-language-server -jedi-language-server==0.35.1 \ - --hash=sha256:532c16a9199d902bdc88ca991da176fe177f0b3019b826b50bf568a0b0081167 \ - --hash=sha256:e31185e79e1abdcc5a077305cb24cd3a44798a2db525045b40f6b647dc5bdf08 +jedi-language-server==0.36.0 \ + --hash=sha256:30f69eab674ed6b7e35316ea558d2bdd150f1b05ce7a9f65dd67388ef1fa0e35 \ + --hash=sha256:d60ce0927ad4e9c81f4545804b36a5dcd028070160a7225a04acb2ddd4f3d06c # via -r pythonFiles\jedilsp_requirements\requirements.in parso==0.8.3 \ --hash=sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0 \ @@ -60,13 +60,13 @@ typeguard==2.13.3 \ --hash=sha256:00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4 \ --hash=sha256:5e3e3be01e887e7eafae5af63d1f36c849aaa94e3a0112097312aabfa16284f1 # via pygls -typing-extensions==4.1.1 \ - --hash=sha256:1a9462dcc3347a79b1f1c0271fbe79e844580bb598bafa1ed208b94da3cdcd42 \ - --hash=sha256:21c85e0fe4b9a155d0799430b0ad741cdce7e359660ccbd8b530613e8df88ce2 +typing-extensions==4.2.0 \ + --hash=sha256:6657594ee297170d19f67d55c05852a874e7eb634f4f753dbd667855e07c1708 \ + --hash=sha256:f1c24655a0da0d1b67f07e17a5e6b2a105894e6824b92096378bb3668ef02376 # via # importlib-metadata # pydantic -zipp==3.7.0 \ - --hash=sha256:9f50f446828eb9d45b267433fd3e9da8d801f614129124863f9c51ebceafb87d \ - --hash=sha256:b47250dd24f92b7dd6a0a8fc5244da14608f3ca90a5efcd37a3b1642fac9a375 +zipp==3.8.0 \ + --hash=sha256:56bf8aadb83c24db6c4b577e13de374ccfb67da2078beba1d037c17980bf43ad \ + --hash=sha256:c4f6e5bbf48e74f7a38e7cc5b0480ff42b0ae5178957d564d18932525d5cf099 # via importlib-metadata