diff --git a/CHANGELOG.md b/CHANGELOG.md index 041a92163fde..93279f888468 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,203 @@ # Changelog +## 2020.3.0-rc (9 March 2020) + +### Enhancements + +1. Make interactive window wrap like the notebook editor does. + ([#4466](https://github.com/Microsoft/vscode-python/issues/4466)) +1. Support scrolling beyond the last line in the notebook editor and the interactive window. Uses the `editor.scrollBeyondLastLine` setting. + ([#7892](https://github.com/Microsoft/vscode-python/issues/7892)) +1. Allow user to override the arguments passed to Jupyter on startup. To change the arguments, run the 'Python: Specify Jupyter command line arguments" command. + ([#8698](https://github.com/Microsoft/vscode-python/issues/8698)) +1. When entering remote Jupyter Server, default the input value to uri in clipboard. + ([#9163](https://github.com/Microsoft/vscode-python/issues/9163)) +1. Added a command to allow users to select a kernel for a `Notebook`. + ([#9228](https://github.com/Microsoft/vscode-python/issues/9228)) +1. When saving new `notebooks`, default to the current workspace folder. + ([#9331](https://github.com/Microsoft/vscode-python/issues/9331)) +1. When the output of a cell gets trimmed for the first time, the user will be informed of it and which setting changes it. + ([#9401](https://github.com/Microsoft/vscode-python/issues/9401)) +1. Change the parameters for when a Data Science survey prompt comes up. After opening 5 notebooks (ever) or running 100 cells (ever). + ([#10186](https://github.com/Microsoft/vscode-python/issues/10186)) +1. Show quickfixes for launch.json. + ([#10245](https://github.com/Microsoft/vscode-python/issues/10245)) + +### Fixes + +1. Remove extra lines at the end of the file when formatting with Black. + ([#1877](https://github.com/Microsoft/vscode-python/issues/1877)) +1. Capitalize `Activate.ps1` in code for PowerShell Core on Linux. + ([#2607](https://github.com/Microsoft/vscode-python/issues/2607)) +1. Change interactive window to use the python interpreter associated with the file being run. + ([#3123](https://github.com/Microsoft/vscode-python/issues/3123)) +1. Make line numbers in errors for the Interactive window match the original file and make them clickable for jumping back to an error location. + ([#6370](https://github.com/Microsoft/vscode-python/issues/6370)) +1. Fix magic commands that return 'paged' output. + ([#6900](https://github.com/Microsoft/vscode-python/issues/6900)) +1. Ensure model is updated with user changes after user types into the editor. + ([#8589](https://github.com/Microsoft/vscode-python/issues/8589)) +1. Fix latex output from a code cell to render correctly. + ([#8742](https://github.com/Microsoft/vscode-python/issues/8742)) +1. Toggling cell type from `code` to `markdown` will not set focus to the editor in cells of a `Notebook`. + ([#9102](https://github.com/Microsoft/vscode-python/issues/9102)) +1. Remove whitespace from code before pushing to the interactive window. + ([#9116](https://github.com/Microsoft/vscode-python/issues/9116)) +1. Have sys info show that we have connected to an existing server. + ([#9132](https://github.com/Microsoft/vscode-python/issues/9132)) +1. Fix IPython.clear_output to behave like Jupyter. + ([#9174](https://github.com/Microsoft/vscode-python/issues/9174)) +1. Jupyter output tab was not showing anything when connecting to a remote server. + ([#9177](https://github.com/Microsoft/vscode-python/issues/9177)) +1. Fixed our css generation from custom color themes which caused the Data Viewer to not load. + ([#9242](https://github.com/Microsoft/vscode-python/issues/9242)) +1. Allow a user to skip switching to a kernel if the kernel dies during startup. + ([#9250](https://github.com/Microsoft/vscode-python/issues/9250)) +1. Clean up interative window styling and set focus to input box if clicking in the interactive window. + ([#9282](https://github.com/Microsoft/vscode-python/issues/9282)) +1. Change icon spacing to match vscode icon spacing in native editor toolbars and interactive window toolbar. + ([#9283](https://github.com/Microsoft/vscode-python/issues/9283)) +1. Display diff viewer for `ipynb` files without opening `Notebooks`. + ([#9395](https://github.com/Microsoft/vscode-python/issues/9395)) +1. Python environments will not be activated in terminals hidden from the user. + ([#9503](https://github.com/Microsoft/vscode-python/issues/9503)) +1. Disable `Restart Kernel` and `Interrupt Kernel` buttons when a `kernel` has not yet started. + ([#9731](https://github.com/Microsoft/vscode-python/issues/9731)) +1. Fixed an issue with multiple latex formulas in the same '\$\$' block. + ([#9766](https://github.com/Microsoft/vscode-python/issues/9766)) +1. Make notebook editor and interactive window honor undocumented editor.scrollbar.verticalScrollbarSize option + increase default to match vscode. + ([#9803](https://github.com/Microsoft/vscode-python/issues/9803)) +1. Ensure that invalid kernels don't hang notebook startup or running. + ([#9845](https://github.com/Microsoft/vscode-python/issues/9845)) +1. Switching kernels should disable the run/interrupt/restart buttons. + ([#9935](https://github.com/Microsoft/vscode-python/issues/9935)) +1. Prompt to install `pandas` if not found when opening the `Data Viewer`. + ([#9944](https://github.com/Microsoft/vscode-python/issues/9944)) +1. Prompt to reload VS Code when changing the Jupyter Server connection. + ([#9945](https://github.com/Microsoft/vscode-python/issues/9945)) +1. Support opening spark dataframes in the data viewer. + ([#9959](https://github.com/Microsoft/vscode-python/issues/9959)) +1. Make sure metadata in a cell survives execution. + ([#9997](https://github.com/Microsoft/vscode-python/issues/9997)) +1. Fix run all cells to force each cell to finish before running the next one. + ([#10016](https://github.com/Microsoft/vscode-python/issues/10016)) +1. Fix interrupts from always thinking a restart occurred. + ([#10050](https://github.com/Microsoft/vscode-python/issues/10050)) +1. Do not delay activation of extension by waiting for terminal to get activated. + ([#10094](https://github.com/Microsoft/vscode-python/issues/10094)) +1. LiveShare can prevent the jupyter server from starting if it crashes. + ([#10097](https://github.com/Microsoft/vscode-python/issues/10097)) +1. Mark `poetry.lock` file as toml syntax. + (thanks to [remcohaszing](https://github.com/remcohaszing/)) + ([#10111](https://github.com/Microsoft/vscode-python/issues/10111)) +1. Hide input in `Interactive Window` based on the setting `allowInput`. + ([#10124](https://github.com/Microsoft/vscode-python/issues/10124)) +1. Fix scrolling for output to consistently scroll even during execution. + ([#10137](https://github.com/Microsoft/vscode-python/issues/10137)) +1. Correct image backgrounds for notebook editor. + ([#10154](https://github.com/Microsoft/vscode-python/issues/10154)) +1. Fix empty variables to show an empty string in the Notebook/Interactive Window variable explorer. + ([#10204](https://github.com/Microsoft/vscode-python/issues/10204)) +1. In addition to updating current working directory also add on our notebook file path to sys.path to match Jupyter. + ([#10227](https://github.com/Microsoft/vscode-python/issues/10227)) +1. Ensure message (about trimmed output) displayed in an output cell looks like a link. + ([#10231](https://github.com/Microsoft/vscode-python/issues/10231)) +1. Users can opt into or opt out of experiments in remote scenarios. + ([#10232](https://github.com/Microsoft/vscode-python/issues/10232)) +1. Ensure to correctly return env variables of the activated interpreter, when dealing with non-workspace interpreters. + ([#10250](https://github.com/Microsoft/vscode-python/issues/10250)) +1. Update kernel environments before each run to use the latest environment. Only do this for kernel specs created by the python extension. + ([#10255](https://github.com/Microsoft/vscode-python/issues/10255)) +1. Don't start up and shutdown an extra Jupyter notebook on server startup. + ([#10311](https://github.com/Microsoft/vscode-python/issues/10311)) +1. When you install missing dependencies for Jupyter successfully in an active interpreter also set that interpreter as the Jupyter selected interpreter. + ([#10359](https://github.com/Microsoft/vscode-python/issues/10359)) + +### Code Health + +1. Use the new VS Code filesystem API as much as possible. + ([#6911](https://github.com/Microsoft/vscode-python/issues/6911)) +1. Functional tests using real jupyter can take 30-90 seconds each. Most of this time is searching for interpreters. Cache the interpreter search. + ([#7997](https://github.com/Microsoft/vscode-python/issues/7997)) +1. Use Python 3.8 in tests run on Azure DevOps. + ([#8298](https://github.com/Microsoft/vscode-python/issues/8298)) +1. Display `Commands` related to `Interactive Window` and `Notebooks` only when necessary. + ([#8869](https://github.com/Microsoft/vscode-python/issues/8869)) +1. Change cursor styles of buttons `pointer` in `Interactive Window` and `Native Editor`. + ([#9341](https://github.com/Microsoft/vscode-python/issues/9341)) +1. Update Jedi to 0.16.0. + ([#9765](https://github.com/Microsoft/vscode-python/issues/9765)) +1. Update version of `VSCode` in `package.json` to `1.42`. + ([#10046](https://github.com/Microsoft/vscode-python/issues/10046)) +1. Capture `mimetypes` of cell outputs. + ([#10182](https://github.com/Microsoft/vscode-python/issues/10182)) +1. Use debugpy in the core extension instead of ptvsd. + ([#10184](https://github.com/Microsoft/vscode-python/issues/10184)) +1. Remove UI Tests. + ([#10192](https://github.com/Microsoft/vscode-python/issues/10192)) +1. Add telemetry for imports in notebooks. + ([#10209](https://github.com/Microsoft/vscode-python/issues/10209)) +1. Update data science component to use `debugpy`. + ([#10211](https://github.com/Microsoft/vscode-python/issues/10211)) +1. Use new MacOS VM in Pipelines. + ([#10288](https://github.com/Microsoft/vscode-python/issues/10288)) +1. Split the windows PR tests into two sections so they do not time out. + ([#10293](https://github.com/Microsoft/vscode-python/issues/10293)) + +### 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/) +- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server) +- [ptvsd](https://pypi.org/project/ptvsd/) +- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed) +- [rope](https://pypi.org/project/rope/) (user-installed) + +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/), + [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: + [nose](https://pypi.org/project/nose/), + [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! + ## 2020.2.3 (21 February 2020) ### Fixes diff --git a/ThirdPartyNotices-Distribution.txt b/ThirdPartyNotices-Distribution.txt index 39f4538262db..cececd574396 100644 --- a/ThirdPartyNotices-Distribution.txt +++ b/ThirdPartyNotices-Distribution.txt @@ -21,141 +21,141 @@ Microsoft Python extension for Visual Studio Code incorporates third party mater 14. @koa/cors 3.0.0 (https://registry.npmjs.org/@koa/cors/-/cors-3.0.0.tgz) 15. @loadable/component 5.12.0 (https://registry.npmjs.org/@loadable/component/-/component-5.12.0.tgz) 16. @mapbox/polylabel 1.0.2 (https://registry.npmjs.org/@mapbox/polylabel/-/polylabel-1.0.2.tgz) -17. @msrvida/python-program-analysis 0.4.1 (https://registry.npmjs.org/@msrvida/python-program-analysis/-/python-program-analysis-0.4.1.tgz) -18. @nteract/markdown 3.0.1 (https://registry.npmjs.org/@nteract/markdown/-/markdown-3.0.1.tgz) -19. @nteract/mathjax 3.0.1 (https://registry.npmjs.org/@nteract/mathjax/-/mathjax-3.0.1.tgz) -20. @nteract/octicons 0.5.1 (https://registry.npmjs.org/@nteract/octicons/-/octicons-0.5.1.tgz) -21. @nteract/styled-blueprintjsx 1.1.1 (https://registry.npmjs.org/@nteract/styled-blueprintjsx/-/styled-blueprintjsx-1.1.1.tgz) -22. @nteract/transform-dataresource 4.5.2 (https://registry.npmjs.org/@nteract/transform-dataresource/-/transform-dataresource-4.5.2.tgz) -23. @nteract/transform-geojson 3.2.5 (https://registry.npmjs.org/@nteract/transform-geojson/-/transform-geojson-3.2.5.tgz) -24. @nteract/transform-model-debug 3.2.5 (https://registry.npmjs.org/@nteract/transform-model-debug/-/transform-model-debug-3.2.5.tgz) -25. @nteract/transform-plotly 6.0.0 (https://registry.npmjs.org/@nteract/transform-plotly/-/transform-plotly-6.0.0.tgz) -26. @nteract/transform-vdom 2.2.5 (https://registry.npmjs.org/@nteract/transform-vdom/-/transform-vdom-2.2.5.tgz) -27. @nteract/transform-vega 6.0.3 (https://registry.npmjs.org/@nteract/transform-vega/-/transform-vega-6.0.3.tgz) -28. @nteract/transforms 4.4.7 (https://registry.npmjs.org/@nteract/transforms/-/transforms-4.4.7.tgz) -29. @nteract/vega-embed-v2 1.1.0 (https://registry.npmjs.org/@nteract/vega-embed-v2/-/vega-embed-v2-1.1.0.tgz) -30. @nteract/vega-embed-v3 1.1.1 (https://registry.npmjs.org/@nteract/vega-embed-v3/-/vega-embed-v3-1.1.1.tgz) -31. @phosphor/algorithm 1.1.3 (https://registry.npmjs.org/@phosphor/algorithm/-/algorithm-1.1.3.tgz) -32. @phosphor/collections 1.2.0 (https://registry.npmjs.org/@phosphor/collections/-/collections-1.2.0.tgz) -33. @phosphor/commands 1.7.2 (https://registry.npmjs.org/@phosphor/commands/-/commands-1.7.2.tgz) -34. @phosphor/coreutils 1.3.1 (https://registry.npmjs.org/@phosphor/coreutils/-/coreutils-1.3.1.tgz) -35. @phosphor/disposable 1.2.0 (https://registry.npmjs.org/@phosphor/disposable/-/disposable-1.2.0.tgz) -36. @phosphor/domutils 1.1.4 (https://registry.npmjs.org/@phosphor/domutils/-/domutils-1.1.4.tgz) -37. @phosphor/keyboard 1.1.3 (https://registry.npmjs.org/@phosphor/keyboard/-/keyboard-1.1.3.tgz) -38. @phosphor/messaging 1.3.0 (https://registry.npmjs.org/@phosphor/messaging/-/messaging-1.3.0.tgz) -39. @phosphor/properties 1.1.3 (https://registry.npmjs.org/@phosphor/properties/-/properties-1.1.3.tgz) -40. @phosphor/signaling 1.2.3 (https://registry.npmjs.org/@phosphor/signaling/-/signaling-1.2.3.tgz) -41. _pydev_calltip_util.py (for PyDev.Debugger) (https://github.com/fabioz/PyDev.Debugger/blob/master/_pydev_bundle/_pydev_calltip_util.py) -42. accepts 1.3.7 (https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz) -43. acorn 5.7.3 (https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz) -44. ajv 6.10.1 (https://registry.npmjs.org/ajv/-/ajv-6.10.1.tgz) -45. amdefine 1.0.1 (https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz) -46. angular.io (for RxJS 5.5) (https://angular.io/) -47. anser 1.4.8 (https://registry.npmjs.org/anser/-/anser-1.4.8.tgz) -48. ansi-regex 4.1.0 (https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz) -49. ansi-styles 3.2.1 (https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz) -50. ansi-to-html 0.6.11 (https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.11.tgz) -51. ansi-to-react 3.3.5 (https://registry.npmjs.org/ansi-to-react/-/ansi-to-react-3.3.5.tgz) -52. any-promise 1.3.0 (https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz) -53. applicationinsights 1.0.6 (https://registry.npmjs.org/applicationinsights/-/applicationinsights-1.0.6.tgz) -54. arch 2.1.1 (https://registry.npmjs.org/arch/-/arch-2.1.1.tgz) -55. asn1 0.2.4 (https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz) -56. assert-plus 1.0.0 (https://github.com/joyent/node-assert-plus/tree/v1.0.0) -57. ast-transform 0.0.0 (https://registry.npmjs.org/ast-transform/-/ast-transform-0.0.0.tgz) -58. ast-types 0.7.8 (https://registry.npmjs.org/ast-types/-/ast-types-0.7.8.tgz) -59. async 2.6.2 (https://registry.npmjs.org/async/-/async-2.6.2.tgz) -60. async-limiter 1.0.0 (https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz) -61. asynckit 0.4.0 (https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz) -62. aws-sign2 0.7.0 (https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz) -63. aws4 1.8.0 (https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz) -64. azure-storage 2.10.3 (https://registry.npmjs.org/azure-storage/-/azure-storage-2.10.3.tgz) -65. babel-polyfill 6.26.0 (https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz) -66. babel-runtime 6.26.0 (https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz) -67. bail 1.0.4 (https://registry.npmjs.org/bail/-/bail-1.0.4.tgz) -68. balanced-match 1.0.0 (https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz) -69. base16 1.0.0 (https://registry.npmjs.org/base16/-/base16-1.0.0.tgz) -70. base64-js 1.3.0 (https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz) -71. bcrypt-pbkdf 1.0.2 (https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz) -72. bintrees 1.0.2 (https://registry.npmjs.org/bintrees/-/bintrees-1.0.2.tgz) -73. bootstrap-less 3.3.8 (https://github.com/distros/bootstrap-less) -74. brace-expansion 1.1.11 (https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz) -75. brotli 1.3.2 (https://registry.npmjs.org/brotli/-/brotli-1.3.2.tgz) -76. browser-resolve 1.11.3 (https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz) -77. browserify-mime 1.2.9 (https://registry.npmjs.org/browserify-mime/-/browserify-mime-1.2.9.tgz) -78. browserify-optional 1.0.1 (https://registry.npmjs.org/browserify-optional/-/browserify-optional-1.0.1.tgz) -79. buffer-equal 0.0.1 (https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz) -80. buffer-from 1.1.1 (https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz) -81. bytes 3.1.0 (https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz) -82. cache-content-type 1.0.1 (https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz) -83. canvas 2.6.0 (https://registry.npmjs.org/canvas/-/canvas-2.6.0.tgz) -84. caseless 0.12.0 (https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz) -85. chalk 2.4.2 (https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz) -86. character-entities-legacy 1.1.3 (https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.3.tgz) -87. character-reference-invalid 1.1.3 (https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.3.tgz) -88. charenc 0.0.2 (https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz) -89. classnames 2.2.6 (https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz) -90. clone 1.0.4 (https://registry.npmjs.org/clone/-/clone-1.0.4.tgz) -91. clsx 1.0.4 (https://registry.npmjs.org/clsx/-/clsx-1.0.4.tgz) -92. co 4.6.0 (https://registry.npmjs.org/co/-/co-4.6.0.tgz) -93. collapse-white-space 1.0.5 (https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.5.tgz) -94. color 3.0.0 (https://registry.npmjs.org/color/-/color-3.0.0.tgz) -95. color-convert 1.9.3 (https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz) -96. color-name 1.1.3 (https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz) -97. color-string 1.5.3 (https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz) -98. colornames 1.1.1 (https://registry.npmjs.org/colornames/-/colornames-1.1.1.tgz) -99. colors 1.3.3 (https://registry.npmjs.org/colors/-/colors-1.3.3.tgz) -100. colorspace 1.1.2 (https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz) -101. combined-stream 1.0.8 (https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz) -102. compressible 2.0.17 (https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz) -103. concat-map 0.0.1 (https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz) -104. concat-stream 1.6.2 (https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz) -105. content-disposition 0.5.3 (https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz) -106. content-type 1.0.4 (https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz) -107. convert-source-map 1.6.0 (https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz) -108. cookies 0.8.0 (https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz) -109. core-util-is 1.0.2 (https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz) -110. create-emotion 9.2.12 (https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.12.tgz) -111. create-react-context 0.3.0 (https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz) -112. crypt 0.0.2 (https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz) -113. crypto-js 3.1.9-1 (https://registry.npmjs.org/crypto-js/-/crypto-js-3.1.9-1.tgz) -114. css-loader 1.0.1 (https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz) -115. d3 3.5.17 (https://registry.npmjs.org/d3/-/d3-3.5.17.tgz) -116. d3-array 1.2.4 (https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz) -117. d3-bboxCollide 1.0.4 (https://registry.npmjs.org/d3-bboxCollide/-/d3-bboxCollide-1.0.4.tgz) -118. d3-brush 1.0.6 (https://registry.npmjs.org/d3-brush/-/d3-brush-1.0.6.tgz) -119. d3-chord 1.0.6 (https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.6.tgz) -120. d3-cloud 1.2.5 (https://registry.npmjs.org/d3-cloud/-/d3-cloud-1.2.5.tgz) -121. d3-collection 1.0.7 (https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz) -122. d3-color 1.2.8 (https://registry.npmjs.org/d3-color/-/d3-color-1.2.8.tgz) -123. d3-contour 1.3.2 (https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz) -124. d3-delaunay 5.1.6 (https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-5.1.6.tgz) -125. d3-dispatch 1.0.5 (https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.5.tgz) -126. d3-drag 1.2.3 (https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.3.tgz) -127. d3-dsv 0.1.14 (https://registry.npmjs.org/d3-dsv/-/d3-dsv-0.1.14.tgz) -128. d3-ease 1.0.5 (https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.5.tgz) -129. d3-force 1.2.1 (https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz) -130. d3-format 1.3.2 (https://registry.npmjs.org/d3-format/-/d3-format-1.3.2.tgz) -131. d3-geo 1.11.6 (https://registry.npmjs.org/d3-geo/-/d3-geo-1.11.6.tgz) -132. d3-glyphedge 1.2.0 (https://registry.npmjs.org/d3-glyphedge/-/d3-glyphedge-1.2.0.tgz) -133. d3-hexbin 0.2.2 (https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz) -134. d3-hierarchy 1.1.8 (https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz) -135. d3-interpolate 1.3.2 (https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.3.2.tgz) -136. d3-path 1.0.7 (https://registry.npmjs.org/d3-path/-/d3-path-1.0.7.tgz) -137. d3-polygon 1.0.5 (https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.5.tgz) -138. d3-quadtree 1.0.1 (https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.1.tgz) -139. d3-request 1.0.6 (https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz) -140. d3-sankey-circular 0.25.0 (https://registry.npmjs.org/d3-sankey-circular/-/d3-sankey-circular-0.25.0.tgz) -141. d3-scale 2.2.2 (https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz) -142. d3-scale-chromatic 1.5.0 (https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz) -143. d3-selection 1.4.0 (https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.0.tgz) -144. d3-shape 1.3.5 (https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.5.tgz) -145. d3-time 1.0.11 (https://registry.npmjs.org/d3-time/-/d3-time-1.0.11.tgz) -146. d3-time-format 2.1.3 (https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.3.tgz) -147. d3-timer 1.0.9 (https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.9.tgz) -148. d3-transition 1.2.0 (https://registry.npmjs.org/d3-transition/-/d3-transition-1.2.0.tgz) -149. d3-voronoi 1.1.4 (https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz) -150. dashdash 1.14.1 (https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz) -151. datalib 1.9.2 (https://registry.npmjs.org/datalib/-/datalib-1.9.2.tgz) +17. @nteract/markdown 3.0.1 (https://registry.npmjs.org/@nteract/markdown/-/markdown-3.0.1.tgz) +18. @nteract/mathjax 3.0.1 (https://registry.npmjs.org/@nteract/mathjax/-/mathjax-3.0.1.tgz) +19. @nteract/octicons 0.5.1 (https://registry.npmjs.org/@nteract/octicons/-/octicons-0.5.1.tgz) +20. @nteract/styled-blueprintjsx 1.1.1 (https://registry.npmjs.org/@nteract/styled-blueprintjsx/-/styled-blueprintjsx-1.1.1.tgz) +21. @nteract/transform-dataresource 4.5.2 (https://registry.npmjs.org/@nteract/transform-dataresource/-/transform-dataresource-4.5.2.tgz) +22. @nteract/transform-geojson 3.2.5 (https://registry.npmjs.org/@nteract/transform-geojson/-/transform-geojson-3.2.5.tgz) +23. @nteract/transform-model-debug 3.2.5 (https://registry.npmjs.org/@nteract/transform-model-debug/-/transform-model-debug-3.2.5.tgz) +24. @nteract/transform-plotly 6.0.0 (https://registry.npmjs.org/@nteract/transform-plotly/-/transform-plotly-6.0.0.tgz) +25. @nteract/transform-vdom 2.2.5 (https://registry.npmjs.org/@nteract/transform-vdom/-/transform-vdom-2.2.5.tgz) +26. @nteract/transform-vega 6.0.3 (https://registry.npmjs.org/@nteract/transform-vega/-/transform-vega-6.0.3.tgz) +27. @nteract/transforms 4.4.7 (https://registry.npmjs.org/@nteract/transforms/-/transforms-4.4.7.tgz) +28. @nteract/vega-embed-v2 1.1.0 (https://registry.npmjs.org/@nteract/vega-embed-v2/-/vega-embed-v2-1.1.0.tgz) +29. @nteract/vega-embed-v3 1.1.1 (https://registry.npmjs.org/@nteract/vega-embed-v3/-/vega-embed-v3-1.1.1.tgz) +30. @phosphor/algorithm 1.1.3 (https://registry.npmjs.org/@phosphor/algorithm/-/algorithm-1.1.3.tgz) +31. @phosphor/collections 1.2.0 (https://registry.npmjs.org/@phosphor/collections/-/collections-1.2.0.tgz) +32. @phosphor/commands 1.7.2 (https://registry.npmjs.org/@phosphor/commands/-/commands-1.7.2.tgz) +33. @phosphor/coreutils 1.3.1 (https://registry.npmjs.org/@phosphor/coreutils/-/coreutils-1.3.1.tgz) +34. @phosphor/disposable 1.2.0 (https://registry.npmjs.org/@phosphor/disposable/-/disposable-1.2.0.tgz) +35. @phosphor/domutils 1.1.4 (https://registry.npmjs.org/@phosphor/domutils/-/domutils-1.1.4.tgz) +36. @phosphor/keyboard 1.1.3 (https://registry.npmjs.org/@phosphor/keyboard/-/keyboard-1.1.3.tgz) +37. @phosphor/messaging 1.3.0 (https://registry.npmjs.org/@phosphor/messaging/-/messaging-1.3.0.tgz) +38. @phosphor/properties 1.1.3 (https://registry.npmjs.org/@phosphor/properties/-/properties-1.1.3.tgz) +39. @phosphor/signaling 1.2.3 (https://registry.npmjs.org/@phosphor/signaling/-/signaling-1.2.3.tgz) +40. _pydev_calltip_util.py (for PyDev.Debugger) (https://github.com/fabioz/PyDev.Debugger/blob/master/_pydev_bundle/_pydev_calltip_util.py) +41. accepts 1.3.7 (https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz) +42. acorn 5.7.3 (https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz) +43. ajv 6.10.1 (https://registry.npmjs.org/ajv/-/ajv-6.10.1.tgz) +44. amdefine 1.0.1 (https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz) +45. angular.io (for RxJS 5.5) (https://angular.io/) +46. anser 1.4.8 (https://registry.npmjs.org/anser/-/anser-1.4.8.tgz) +47. ansi-regex 4.1.0 (https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz) +48. ansi-styles 3.2.1 (https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz) +49. ansi-to-html 0.6.11 (https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.11.tgz) +50. ansi-to-react 3.3.5 (https://registry.npmjs.org/ansi-to-react/-/ansi-to-react-3.3.5.tgz) +51. any-promise 1.3.0 (https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz) +52. applicationinsights 1.0.6 (https://registry.npmjs.org/applicationinsights/-/applicationinsights-1.0.6.tgz) +53. arch 2.1.1 (https://registry.npmjs.org/arch/-/arch-2.1.1.tgz) +54. asn1 0.2.4 (https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz) +55. assert-plus 1.0.0 (https://github.com/joyent/node-assert-plus/tree/v1.0.0) +56. ast-transform 0.0.0 (https://registry.npmjs.org/ast-transform/-/ast-transform-0.0.0.tgz) +57. ast-types 0.7.8 (https://registry.npmjs.org/ast-types/-/ast-types-0.7.8.tgz) +58. async 2.6.2 (https://registry.npmjs.org/async/-/async-2.6.2.tgz) +59. async-limiter 1.0.0 (https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz) +60. asynckit 0.4.0 (https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz) +61. aws-sign2 0.7.0 (https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz) +62. aws4 1.8.0 (https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz) +63. azure-storage 2.10.3 (https://registry.npmjs.org/azure-storage/-/azure-storage-2.10.3.tgz) +64. babel-polyfill 6.26.0 (https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz) +65. babel-runtime 6.26.0 (https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz) +66. bail 1.0.4 (https://registry.npmjs.org/bail/-/bail-1.0.4.tgz) +67. balanced-match 1.0.0 (https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz) +68. base16 1.0.0 (https://registry.npmjs.org/base16/-/base16-1.0.0.tgz) +69. base64-js 1.3.0 (https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz) +70. bcrypt-pbkdf 1.0.2 (https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz) +71. bintrees 1.0.2 (https://registry.npmjs.org/bintrees/-/bintrees-1.0.2.tgz) +72. bootstrap-less 3.3.8 (https://github.com/distros/bootstrap-less) +73. brace-expansion 1.1.11 (https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz) +74. brotli 1.3.2 (https://registry.npmjs.org/brotli/-/brotli-1.3.2.tgz) +75. browser-resolve 1.11.3 (https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz) +76. browserify-mime 1.2.9 (https://registry.npmjs.org/browserify-mime/-/browserify-mime-1.2.9.tgz) +77. browserify-optional 1.0.1 (https://registry.npmjs.org/browserify-optional/-/browserify-optional-1.0.1.tgz) +78. buffer-equal 0.0.1 (https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz) +79. buffer-from 1.1.1 (https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz) +80. bytes 3.1.0 (https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz) +81. cache-content-type 1.0.1 (https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz) +82. canvas 2.6.0 (https://registry.npmjs.org/canvas/-/canvas-2.6.0.tgz) +83. caseless 0.12.0 (https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz) +84. chalk 2.4.2 (https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz) +85. character-entities-legacy 1.1.3 (https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.3.tgz) +86. character-reference-invalid 1.1.3 (https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.3.tgz) +87. charenc 0.0.2 (https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz) +88. classnames 2.2.6 (https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz) +89. clone 1.0.4 (https://registry.npmjs.org/clone/-/clone-1.0.4.tgz) +90. clsx 1.0.4 (https://registry.npmjs.org/clsx/-/clsx-1.0.4.tgz) +91. co 4.6.0 (https://registry.npmjs.org/co/-/co-4.6.0.tgz) +92. collapse-white-space 1.0.5 (https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.5.tgz) +93. color 3.0.0 (https://registry.npmjs.org/color/-/color-3.0.0.tgz) +94. color-convert 1.9.3 (https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz) +95. color-name 1.1.3 (https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz) +96. color-string 1.5.3 (https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz) +97. colornames 1.1.1 (https://registry.npmjs.org/colornames/-/colornames-1.1.1.tgz) +98. colors 1.3.3 (https://registry.npmjs.org/colors/-/colors-1.3.3.tgz) +99. colorspace 1.1.2 (https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz) +100. combined-stream 1.0.8 (https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz) +101. compressible 2.0.17 (https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz) +102. concat-map 0.0.1 (https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz) +103. concat-stream 1.6.2 (https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz) +104. content-disposition 0.5.3 (https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz) +105. content-type 1.0.4 (https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz) +106. convert-source-map 1.6.0 (https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz) +107. cookies 0.8.0 (https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz) +108. core-util-is 1.0.2 (https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz) +109. create-emotion 9.2.12 (https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.12.tgz) +110. create-react-context 0.3.0 (https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz) +111. crypt 0.0.2 (https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz) +112. crypto-js 3.1.9-1 (https://registry.npmjs.org/crypto-js/-/crypto-js-3.1.9-1.tgz) +113. css-loader 1.0.1 (https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz) +114. d3 3.5.17 (https://registry.npmjs.org/d3/-/d3-3.5.17.tgz) +115. d3-array 1.2.4 (https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz) +116. d3-bboxCollide 1.0.4 (https://registry.npmjs.org/d3-bboxCollide/-/d3-bboxCollide-1.0.4.tgz) +117. d3-brush 1.0.6 (https://registry.npmjs.org/d3-brush/-/d3-brush-1.0.6.tgz) +118. d3-chord 1.0.6 (https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.6.tgz) +119. d3-cloud 1.2.5 (https://registry.npmjs.org/d3-cloud/-/d3-cloud-1.2.5.tgz) +120. d3-collection 1.0.7 (https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz) +121. d3-color 1.2.8 (https://registry.npmjs.org/d3-color/-/d3-color-1.2.8.tgz) +122. d3-contour 1.3.2 (https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz) +123. d3-delaunay 5.1.6 (https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-5.1.6.tgz) +124. d3-dispatch 1.0.5 (https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.5.tgz) +125. d3-drag 1.2.3 (https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.3.tgz) +126. d3-dsv 0.1.14 (https://registry.npmjs.org/d3-dsv/-/d3-dsv-0.1.14.tgz) +127. d3-ease 1.0.5 (https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.5.tgz) +128. d3-force 1.2.1 (https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz) +129. d3-format 1.3.2 (https://registry.npmjs.org/d3-format/-/d3-format-1.3.2.tgz) +130. d3-geo 1.11.6 (https://registry.npmjs.org/d3-geo/-/d3-geo-1.11.6.tgz) +131. d3-glyphedge 1.2.0 (https://registry.npmjs.org/d3-glyphedge/-/d3-glyphedge-1.2.0.tgz) +132. d3-hexbin 0.2.2 (https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz) +133. d3-hierarchy 1.1.8 (https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz) +134. d3-interpolate 1.3.2 (https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.3.2.tgz) +135. d3-path 1.0.7 (https://registry.npmjs.org/d3-path/-/d3-path-1.0.7.tgz) +136. d3-polygon 1.0.5 (https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.5.tgz) +137. d3-quadtree 1.0.1 (https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.1.tgz) +138. d3-request 1.0.6 (https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz) +139. d3-sankey-circular 0.25.0 (https://registry.npmjs.org/d3-sankey-circular/-/d3-sankey-circular-0.25.0.tgz) +140. d3-scale 2.2.2 (https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz) +141. d3-scale-chromatic 1.5.0 (https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz) +142. d3-selection 1.4.0 (https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.0.tgz) +143. d3-shape 1.3.5 (https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.5.tgz) +144. d3-time 1.0.11 (https://registry.npmjs.org/d3-time/-/d3-time-1.0.11.tgz) +145. d3-time-format 2.1.3 (https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.3.tgz) +146. d3-timer 1.0.9 (https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.9.tgz) +147. d3-transition 1.2.0 (https://registry.npmjs.org/d3-transition/-/d3-transition-1.2.0.tgz) +148. d3-voronoi 1.1.4 (https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz) +149. dashdash 1.14.1 (https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz) +150. datalib 1.9.2 (https://registry.npmjs.org/datalib/-/datalib-1.9.2.tgz) +151. debugpy 1.0.0a2 (https://github.com/Microsoft/debugpy/tree/v1.0.0a2) 152. deep-equal 1.0.1 (https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz) 153. deep-is 0.1.3 (https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz) 154. define-properties 1.1.3 (https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz) @@ -345,7 +345,7 @@ Microsoft Python extension for Visual Studio Code incorporates third party mater 338. punycode 2.1.1 (https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz) 339. pure-color 1.3.0 (https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz) 340. py2app (for PyDev.Debugger) (https://bitbucket.org/ronaldoussoren/py2app) -341. PyDev.Debugger (for ptvsd 4) (https://pypi.org/project/pydevd/) +341. PyDev.Debugger (for ptvsd 4 & debugpy 1) (https://pypi.org/project/pydevd/) 342. pyparsing 2.4.0 (https://github.com/pyparsing/pyparsing/tree/pyparsing_2.4.0) 343. python-jsonrpc-server 0.2.0 (https://github.com/palantir/python-jsonrpc-server/releases/tag/0.2.0) 344. qs 6.5.2 (https://registry.npmjs.org/qs/-/qs-6.5.2.tgz) @@ -410,127 +410,128 @@ Microsoft Python extension for Visual Studio Code incorporates third party mater 403. static-eval 2.0.2 (https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz) 404. static-module 2.2.5 (https://registry.npmjs.org/static-module/-/static-module-2.2.5.tgz) 405. statuses 1.5.0 (https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz) -406. string-hash 1.1.3 (https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz) -407. string_decoder 1.2.0 (https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz) -408. strip-ansi 5.2.0 (https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz) -409. style-loader 0.23.1 (https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz) -410. styled-jsx 3.2.1 (https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.2.1.tgz) -411. stylis-rule-sheet 0.0.10 (https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz) -412. sudo-prompt 8.2.5 (https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz) -413. supports-color 5.5.0 (https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz) -414. svg-inline-react 3.1.0 (https://registry.npmjs.org/svg-inline-react/-/svg-inline-react-3.1.0.tgz) -415. svg-path-bounding-box 1.0.4 (https://registry.npmjs.org/svg-path-bounding-box/-/svg-path-bounding-box-1.0.4.tgz) -416. svg-to-pdfkit 0.1.7 (https://registry.npmjs.org/svg-to-pdfkit/-/svg-to-pdfkit-0.1.7.tgz) -417. svgpath 2.2.2 (https://registry.npmjs.org/svgpath/-/svgpath-2.2.2.tgz) -418. symbol-observable 1.0.1 (https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz) -419. text-hex 1.0.0 (https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz) -420. throttleit 1.0.0 (https://github.com/component/throttle/tree/1.0.0) -421. through 2.3.8 (https://registry.npmjs.org/through/-/through-2.3.8.tgz) -422. through2 2.0.5 (https://registry.npmjs.org/through2/-/through2-2.0.5.tgz) -423. timers-browserify 2.0.10 (https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz) -424. tiny-inflate 1.0.2 (https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.2.tgz) -425. tinycolor2 1.4.1 (https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz) -426. tinyqueue 1.2.3 (https://registry.npmjs.org/tinyqueue/-/tinyqueue-1.2.3.tgz) -427. tmp 0.0.29 (https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz) -428. toidentifier 1.0.0 (https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz) -429. topojson-client 3.1.0 (https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz) -430. tough-cookie 2.4.3 (https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz) -431. transformation-matrix 2.0.5 (https://registry.npmjs.org/transformation-matrix/-/transformation-matrix-2.0.5.tgz) -432. tree-kill 1.2.2 (https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz) -433. trim 0.0.1 (https://registry.npmjs.org/trim/-/trim-0.0.1.tgz) -434. trim-trailing-lines 1.1.2 (https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz) -435. triple-beam 1.3.0 (https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz) -436. trough 1.0.4 (https://registry.npmjs.org/trough/-/trough-1.0.4.tgz) -437. tslib 1.10.0 (https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz) -438. tsscmp 1.0.6 (https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz) -439. tunnel-agent 0.6.0 (https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz) -440. tweetnacl 0.14.5 (https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz) -441. type-check 0.3.2 (https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz) -442. type-is 1.6.18 (https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz) -443. typedarray 0.0.6 (https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz) -444. typescript-char 0.0.0 (https://github.com/mason-lang/typescript-char) -445. uint64be 1.0.1 (https://registry.npmjs.org/uint64be/-/uint64be-1.0.1.tgz) -446. underscore 1.8.3 (https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz) -447. unherit 1.1.2 (https://registry.npmjs.org/unherit/-/unherit-1.1.2.tgz) -448. unicode 10.0.0 (https://registry.npmjs.org/unicode/-/unicode-10.0.0.tgz) -449. unicode-trie 0.3.1 (https://registry.npmjs.org/unicode-trie/-/unicode-trie-0.3.1.tgz) -450. unified 6.2.0 (https://registry.npmjs.org/unified/-/unified-6.2.0.tgz) -451. uniqid 5.0.3 (https://registry.npmjs.org/uniqid/-/uniqid-5.0.3.tgz) -452. unist-util-is 3.0.0 (https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz) -453. unist-util-remove-position 1.1.3 (https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.3.tgz) -454. unist-util-stringify-position 1.1.2 (https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz) -455. unist-util-visit 1.4.1 (https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz) -456. unist-util-visit-parents 1.1.2 (https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-1.1.2.tgz) -457. universalify 0.1.2 (https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz) -458. untildify 3.0.3 (https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz) -459. uri-js 4.2.2 (https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz) -460. url-parse 1.4.7 (https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz) -461. util 0.11.1 (https://registry.npmjs.org/util/-/util-0.11.1.tgz) -462. util-deprecate 1.0.2 (https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz) -463. uuid 3.3.2 (https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz) -464. validator 9.4.1 (https://registry.npmjs.org/validator/-/validator-9.4.1.tgz) -465. vary 1.1.2 (https://registry.npmjs.org/vary/-/vary-1.1.2.tgz) -466. vega 5.7.3 (https://registry.npmjs.org/vega/-/vega-5.7.3.tgz) -467. vega-canvas 1.2.1 (https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.1.tgz) -468. vega-crossfilter 4.0.1 (https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.0.1.tgz) -469. vega-dataflow 5.4.1 (https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.4.1.tgz) -470. vega-embed 4.2.5 (https://registry.npmjs.org/vega-embed/-/vega-embed-4.2.5.tgz) -471. vega-encode 4.4.1 (https://registry.npmjs.org/vega-encode/-/vega-encode-4.4.1.tgz) -472. vega-event-selector 2.0.1 (https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-2.0.1.tgz) -473. vega-expression 2.6.2 (https://registry.npmjs.org/vega-expression/-/vega-expression-2.6.2.tgz) -474. vega-force 4.0.3 (https://registry.npmjs.org/vega-force/-/vega-force-4.0.3.tgz) -475. vega-functions 5.4.1 (https://registry.npmjs.org/vega-functions/-/vega-functions-5.4.1.tgz) -476. vega-geo 4.1.0 (https://registry.npmjs.org/vega-geo/-/vega-geo-4.1.0.tgz) -477. vega-hierarchy 4.0.3 (https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.0.3.tgz) -478. vega-lite 3.4.0 (https://registry.npmjs.org/vega-lite/-/vega-lite-3.4.0.tgz) -479. vega-loader 4.1.2 (https://registry.npmjs.org/vega-loader/-/vega-loader-4.1.2.tgz) -480. vega-parser 5.10.1 (https://registry.npmjs.org/vega-parser/-/vega-parser-5.10.1.tgz) -481. vega-projection 1.3.0 (https://registry.npmjs.org/vega-projection/-/vega-projection-1.3.0.tgz) -482. vega-regression 1.0.1 (https://registry.npmjs.org/vega-regression/-/vega-regression-1.0.1.tgz) -483. vega-runtime 5.0.2 (https://registry.npmjs.org/vega-runtime/-/vega-runtime-5.0.2.tgz) -484. vega-scale 4.1.3 (https://registry.npmjs.org/vega-scale/-/vega-scale-4.1.3.tgz) -485. vega-scenegraph 4.3.1 (https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.3.1.tgz) -486. vega-schema-url-parser 1.1.0 (https://registry.npmjs.org/vega-schema-url-parser/-/vega-schema-url-parser-1.1.0.tgz) -487. vega-selections 5.0.1 (https://registry.npmjs.org/vega-selections/-/vega-selections-5.0.1.tgz) -488. vega-statistics 1.6.1 (https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.6.1.tgz) -489. vega-themes 2.5.0 (https://registry.npmjs.org/vega-themes/-/vega-themes-2.5.0.tgz) -490. vega-tooltip 0.18.1 (https://registry.npmjs.org/vega-tooltip/-/vega-tooltip-0.18.1.tgz) -491. vega-transforms 4.4.3 (https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.4.3.tgz) -492. vega-util 1.12.0 (https://registry.npmjs.org/vega-util/-/vega-util-1.12.0.tgz) -493. vega-view 5.3.1 (https://registry.npmjs.org/vega-view/-/vega-view-5.3.1.tgz) -494. vega-view-transforms 4.4.1 (https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.4.1.tgz) -495. vega-voronoi 4.1.1 (https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.1.1.tgz) -496. vega-wordcloud 4.0.2 (https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.0.2.tgz) -497. verror 1.10.0 (https://registry.npmjs.org/verror/-/verror-1.10.0.tgz) -498. vfile 2.3.0 (https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz) -499. vfile-location 2.0.5 (https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.5.tgz) -500. vfile-message 1.1.1 (https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz) -501. viz-annotation 0.0.3 (https://registry.npmjs.org/viz-annotation/-/viz-annotation-0.0.3.tgz) -502. vlq 0.2.3 (https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz) -503. vscode-debugadapter 1.35.0 (https://registry.npmjs.org/vscode-debugadapter/-/vscode-debugadapter-1.35.0.tgz) -504. vscode-debugprotocol 1.35.0 (https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.35.0.tgz) -505. vscode-extension-telemetry 0.1.0 (https://registry.npmjs.org/vscode-extension-telemetry/-/vscode-extension-telemetry-0.1.0.tgz) -506. vscode-jsonrpc 4.0.0 (https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz) -507. vscode-languageclient 5.2.1 (https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-5.2.1.tgz) -508. vscode-languageserver 5.2.1 (https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz) -509. vscode-languageserver-protocol 3.14.1 (https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz) -510. vscode-languageserver-types 3.14.0 (https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz) -511. vsls 0.3.1291 (https://registry.npmjs.org/vsls/-/vsls-0.3.1291.tgz) -512. warning 4.0.3 (https://registry.npmjs.org/warning/-/warning-4.0.3.tgz) -513. webpack (for lodash 4) (https://webpack.js.org/) -514. winreg 1.2.4 (https://github.com/fresc81/node-winreg/tree/v1.2.4) -515. winston 3.2.1 (https://registry.npmjs.org/winston/-/winston-3.2.1.tgz) -516. winston-transport 4.3.0 (https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz) -517. wordwrap 1.0.0 (https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz) -518. wrappy 1.0.2 (https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz) -519. ws 6.2.1 (https://registry.npmjs.org/ws/-/ws-6.2.1.tgz) -520. x-is-string 0.1.0 (https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz) -521. xml2js 0.4.19 (https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz) -522. xmlbuilder 9.0.7 (https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz) -523. xtend 4.0.2 (https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz) -524. yallist 2.1.2 (https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz) -525. ylru 1.2.1 (https://registry.npmjs.org/ylru/-/ylru-1.2.1.tgz) -526. zone.js 0.7.6 (https://registry.npmjs.org/zone.js/-/zone.js-0.7.6.tgz) +406. string-argv 0.3.1 (https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz) +407. string-hash 1.1.3 (https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz) +408. string_decoder 1.2.0 (https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz) +409. strip-ansi 5.2.0 (https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz) +410. style-loader 0.23.1 (https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz) +411. styled-jsx 3.2.1 (https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.2.1.tgz) +412. stylis-rule-sheet 0.0.10 (https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz) +413. sudo-prompt 8.2.5 (https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz) +414. supports-color 5.5.0 (https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz) +415. svg-inline-react 3.1.0 (https://registry.npmjs.org/svg-inline-react/-/svg-inline-react-3.1.0.tgz) +416. svg-path-bounding-box 1.0.4 (https://registry.npmjs.org/svg-path-bounding-box/-/svg-path-bounding-box-1.0.4.tgz) +417. svg-to-pdfkit 0.1.7 (https://registry.npmjs.org/svg-to-pdfkit/-/svg-to-pdfkit-0.1.7.tgz) +418. svgpath 2.2.2 (https://registry.npmjs.org/svgpath/-/svgpath-2.2.2.tgz) +419. symbol-observable 1.0.1 (https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz) +420. text-hex 1.0.0 (https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz) +421. throttleit 1.0.0 (https://github.com/component/throttle/tree/1.0.0) +422. through 2.3.8 (https://registry.npmjs.org/through/-/through-2.3.8.tgz) +423. through2 2.0.5 (https://registry.npmjs.org/through2/-/through2-2.0.5.tgz) +424. timers-browserify 2.0.10 (https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz) +425. tiny-inflate 1.0.2 (https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.2.tgz) +426. tinycolor2 1.4.1 (https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz) +427. tinyqueue 1.2.3 (https://registry.npmjs.org/tinyqueue/-/tinyqueue-1.2.3.tgz) +428. tmp 0.0.29 (https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz) +429. toidentifier 1.0.0 (https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz) +430. topojson-client 3.1.0 (https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz) +431. tough-cookie 2.4.3 (https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz) +432. transformation-matrix 2.0.5 (https://registry.npmjs.org/transformation-matrix/-/transformation-matrix-2.0.5.tgz) +433. tree-kill 1.2.2 (https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz) +434. trim 0.0.1 (https://registry.npmjs.org/trim/-/trim-0.0.1.tgz) +435. trim-trailing-lines 1.1.2 (https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz) +436. triple-beam 1.3.0 (https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz) +437. trough 1.0.4 (https://registry.npmjs.org/trough/-/trough-1.0.4.tgz) +438. tslib 1.10.0 (https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz) +439. tsscmp 1.0.6 (https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz) +440. tunnel-agent 0.6.0 (https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz) +441. tweetnacl 0.14.5 (https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz) +442. type-check 0.3.2 (https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz) +443. type-is 1.6.18 (https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz) +444. typedarray 0.0.6 (https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz) +445. typescript-char 0.0.0 (https://github.com/mason-lang/typescript-char) +446. uint64be 1.0.1 (https://registry.npmjs.org/uint64be/-/uint64be-1.0.1.tgz) +447. underscore 1.8.3 (https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz) +448. unherit 1.1.2 (https://registry.npmjs.org/unherit/-/unherit-1.1.2.tgz) +449. unicode 10.0.0 (https://registry.npmjs.org/unicode/-/unicode-10.0.0.tgz) +450. unicode-trie 0.3.1 (https://registry.npmjs.org/unicode-trie/-/unicode-trie-0.3.1.tgz) +451. unified 6.2.0 (https://registry.npmjs.org/unified/-/unified-6.2.0.tgz) +452. uniqid 5.0.3 (https://registry.npmjs.org/uniqid/-/uniqid-5.0.3.tgz) +453. unist-util-is 3.0.0 (https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz) +454. unist-util-remove-position 1.1.3 (https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.3.tgz) +455. unist-util-stringify-position 1.1.2 (https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz) +456. unist-util-visit 1.4.1 (https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz) +457. unist-util-visit-parents 1.1.2 (https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-1.1.2.tgz) +458. universalify 0.1.2 (https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz) +459. untildify 3.0.3 (https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz) +460. uri-js 4.2.2 (https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz) +461. url-parse 1.4.7 (https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz) +462. util 0.11.1 (https://registry.npmjs.org/util/-/util-0.11.1.tgz) +463. util-deprecate 1.0.2 (https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz) +464. uuid 3.3.2 (https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz) +465. validator 9.4.1 (https://registry.npmjs.org/validator/-/validator-9.4.1.tgz) +466. vary 1.1.2 (https://registry.npmjs.org/vary/-/vary-1.1.2.tgz) +467. vega 5.7.3 (https://registry.npmjs.org/vega/-/vega-5.7.3.tgz) +468. vega-canvas 1.2.1 (https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.1.tgz) +469. vega-crossfilter 4.0.1 (https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.0.1.tgz) +470. vega-dataflow 5.4.1 (https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.4.1.tgz) +471. vega-embed 4.2.5 (https://registry.npmjs.org/vega-embed/-/vega-embed-4.2.5.tgz) +472. vega-encode 4.4.1 (https://registry.npmjs.org/vega-encode/-/vega-encode-4.4.1.tgz) +473. vega-event-selector 2.0.1 (https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-2.0.1.tgz) +474. vega-expression 2.6.2 (https://registry.npmjs.org/vega-expression/-/vega-expression-2.6.2.tgz) +475. vega-force 4.0.3 (https://registry.npmjs.org/vega-force/-/vega-force-4.0.3.tgz) +476. vega-functions 5.4.1 (https://registry.npmjs.org/vega-functions/-/vega-functions-5.4.1.tgz) +477. vega-geo 4.1.0 (https://registry.npmjs.org/vega-geo/-/vega-geo-4.1.0.tgz) +478. vega-hierarchy 4.0.3 (https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.0.3.tgz) +479. vega-lite 3.4.0 (https://registry.npmjs.org/vega-lite/-/vega-lite-3.4.0.tgz) +480. vega-loader 4.1.2 (https://registry.npmjs.org/vega-loader/-/vega-loader-4.1.2.tgz) +481. vega-parser 5.10.1 (https://registry.npmjs.org/vega-parser/-/vega-parser-5.10.1.tgz) +482. vega-projection 1.3.0 (https://registry.npmjs.org/vega-projection/-/vega-projection-1.3.0.tgz) +483. vega-regression 1.0.1 (https://registry.npmjs.org/vega-regression/-/vega-regression-1.0.1.tgz) +484. vega-runtime 5.0.2 (https://registry.npmjs.org/vega-runtime/-/vega-runtime-5.0.2.tgz) +485. vega-scale 4.1.3 (https://registry.npmjs.org/vega-scale/-/vega-scale-4.1.3.tgz) +486. vega-scenegraph 4.3.1 (https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.3.1.tgz) +487. vega-schema-url-parser 1.1.0 (https://registry.npmjs.org/vega-schema-url-parser/-/vega-schema-url-parser-1.1.0.tgz) +488. vega-selections 5.0.1 (https://registry.npmjs.org/vega-selections/-/vega-selections-5.0.1.tgz) +489. vega-statistics 1.6.1 (https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.6.1.tgz) +490. vega-themes 2.5.0 (https://registry.npmjs.org/vega-themes/-/vega-themes-2.5.0.tgz) +491. vega-tooltip 0.18.1 (https://registry.npmjs.org/vega-tooltip/-/vega-tooltip-0.18.1.tgz) +492. vega-transforms 4.4.3 (https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.4.3.tgz) +493. vega-util 1.12.0 (https://registry.npmjs.org/vega-util/-/vega-util-1.12.0.tgz) +494. vega-view 5.3.1 (https://registry.npmjs.org/vega-view/-/vega-view-5.3.1.tgz) +495. vega-view-transforms 4.4.1 (https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.4.1.tgz) +496. vega-voronoi 4.1.1 (https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.1.1.tgz) +497. vega-wordcloud 4.0.2 (https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.0.2.tgz) +498. verror 1.10.0 (https://registry.npmjs.org/verror/-/verror-1.10.0.tgz) +499. vfile 2.3.0 (https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz) +500. vfile-location 2.0.5 (https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.5.tgz) +501. vfile-message 1.1.1 (https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz) +502. viz-annotation 0.0.3 (https://registry.npmjs.org/viz-annotation/-/viz-annotation-0.0.3.tgz) +503. vlq 0.2.3 (https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz) +504. vscode-debugadapter 1.35.0 (https://registry.npmjs.org/vscode-debugadapter/-/vscode-debugadapter-1.35.0.tgz) +505. vscode-debugprotocol 1.35.0 (https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.35.0.tgz) +506. vscode-extension-telemetry 0.1.0 (https://registry.npmjs.org/vscode-extension-telemetry/-/vscode-extension-telemetry-0.1.0.tgz) +507. vscode-jsonrpc 4.0.0 (https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz) +508. vscode-languageclient 5.2.1 (https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-5.2.1.tgz) +509. vscode-languageserver 5.2.1 (https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz) +510. vscode-languageserver-protocol 3.14.1 (https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz) +511. vscode-languageserver-types 3.14.0 (https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz) +512. vsls 0.3.1291 (https://registry.npmjs.org/vsls/-/vsls-0.3.1291.tgz) +513. warning 4.0.3 (https://registry.npmjs.org/warning/-/warning-4.0.3.tgz) +514. webpack (for lodash 4) (https://webpack.js.org/) +515. winreg 1.2.4 (https://github.com/fresc81/node-winreg/tree/v1.2.4) +516. winston 3.2.1 (https://registry.npmjs.org/winston/-/winston-3.2.1.tgz) +517. winston-transport 4.3.0 (https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz) +518. wordwrap 1.0.0 (https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz) +519. wrappy 1.0.2 (https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz) +520. ws 6.2.1 (https://registry.npmjs.org/ws/-/ws-6.2.1.tgz) +521. x-is-string 0.1.0 (https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz) +522. xml2js 0.4.19 (https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz) +523. xmlbuilder 9.0.7 (https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz) +524. xtend 4.0.2 (https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz) +525. yallist 2.1.2 (https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz) +526. ylru 1.2.1 (https://registry.npmjs.org/ylru/-/ylru-1.2.1.tgz) +527. zone.js 0.7.6 (https://registry.npmjs.org/zone.js/-/zone.js-0.7.6.tgz) %% @babel/runtime 7.5.4 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/@babel/runtime/-/runtime-7.5.4.tgz) @@ -1438,33 +1439,6 @@ SOFTWARE. ========================================= END OF @mapbox/polylabel NOTICES AND INFORMATION -%% @msrvida/python-program-analysis 0.4.1 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/@msrvida/python-program-analysis/-/python-program-analysis-0.4.1.tgz) -========================================= - MIT License - - Copyright (c) Microsoft Corporation. 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 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 - -========================================= -END OF @msrvida/python-program-analysis NOTICES AND INFORMATION - %% @nteract/markdown 3.0.1 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/@nteract/markdown/-/markdown-3.0.1.tgz) ========================================= Copyright (c) 2016, nteract contributors @@ -5663,6 +5637,33 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ========================================= END OF datalib NOTICES AND INFORMATION +%% debugpy 1.0.0a2 NOTICES AND INFORMATION BEGIN HERE (https://github.com/Microsoft/debugpy/tree/v1.0.0a2) +========================================= +Copyright (c) Microsoft Corporation +All rights reserved. + +MIT License + +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. + +========================================= +END OF debugpy NOTICES AND INFORMATION + %% deep-equal 1.0.1 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz) ========================================= This software is released under the MIT license: @@ -10839,7 +10840,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ========================================= END OF py2app NOTICES AND INFORMATION -%% PyDev.Debugger (for ptvsd 4) NOTICES AND INFORMATION BEGIN HERE (https://pypi.org/project/pydevd/) +%% PyDev.Debugger (for ptvsd 4 & debugpy 1) NOTICES AND INFORMATION BEGIN HERE (https://pypi.org/project/pydevd/) ========================================= Eclipse Public License - v 1.0 @@ -13208,6 +13209,33 @@ THE SOFTWARE. ========================================= END OF statuses NOTICES AND INFORMATION +%% string-argv 0.3.1 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz) +========================================= +The MIT License (MIT) + +Copyright 2014 Anthony McCormick + +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. + +========================================= +END OF string-argv NOTICES AND INFORMATION + %% string-hash 1.1.3 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz) ========================================= To the extend possible by law, The Dark Sky Company, LLC has [waived all diff --git a/news/1 Enhancements/10186.md b/news/1 Enhancements/10186.md deleted file mode 100644 index 71fa64854028..000000000000 --- a/news/1 Enhancements/10186.md +++ /dev/null @@ -1 +0,0 @@ -Change the parameters for when a Data Science survey prompt comes up. After opening 5 notebooks (ever) or running 100 cells (ever) \ No newline at end of file diff --git a/news/1 Enhancements/10245.md b/news/1 Enhancements/10245.md deleted file mode 100644 index e59965b96e63..000000000000 --- a/news/1 Enhancements/10245.md +++ /dev/null @@ -1 +0,0 @@ -Show quickfixes for launch.json diff --git a/news/1 Enhancements/4466.md b/news/1 Enhancements/4466.md deleted file mode 100644 index 197c50dd0b86..000000000000 --- a/news/1 Enhancements/4466.md +++ /dev/null @@ -1 +0,0 @@ -Make interactive window wrap like the notebook editor does. \ No newline at end of file diff --git a/news/1 Enhancements/7892.md b/news/1 Enhancements/7892.md deleted file mode 100644 index c5666a6104fb..000000000000 --- a/news/1 Enhancements/7892.md +++ /dev/null @@ -1 +0,0 @@ -Support scrolling beyond the last line in the notebook editor and the interactive window. Uses the `editor.scrollBeyondLastLine` setting. \ No newline at end of file diff --git a/news/1 Enhancements/8698.md b/news/1 Enhancements/8698.md deleted file mode 100644 index 45f00cc60388..000000000000 --- a/news/1 Enhancements/8698.md +++ /dev/null @@ -1 +0,0 @@ -Allow user to override the arguments passed to Jupyter on startup. To change the arguments, run the 'Python: Specify Jupyter command line arguments" command. \ No newline at end of file diff --git a/news/1 Enhancements/9163.md b/news/1 Enhancements/9163.md deleted file mode 100644 index c8685481e8d5..000000000000 --- a/news/1 Enhancements/9163.md +++ /dev/null @@ -1 +0,0 @@ -When entering remote Jupyter Server, default the input value to uri in clipboard. diff --git a/news/1 Enhancements/9228.md b/news/1 Enhancements/9228.md deleted file mode 100644 index d45ef8ff3daa..000000000000 --- a/news/1 Enhancements/9228.md +++ /dev/null @@ -1 +0,0 @@ -Added a command to allow users to select a kernel for a `Notebook`. diff --git a/news/1 Enhancements/9331.md b/news/1 Enhancements/9331.md deleted file mode 100644 index 50f020a69292..000000000000 --- a/news/1 Enhancements/9331.md +++ /dev/null @@ -1 +0,0 @@ -When saving new `notebooks`, default to the current workspace folder. diff --git a/news/1 Enhancements/9401.md b/news/1 Enhancements/9401.md deleted file mode 100644 index eac60c2f6835..000000000000 --- a/news/1 Enhancements/9401.md +++ /dev/null @@ -1 +0,0 @@ -When the output of a cell gets trimmed for the first time, the user will be informed of it and which setting changes it. diff --git a/news/2 Fixes/10016.md b/news/2 Fixes/10016.md deleted file mode 100644 index 80fcf07167a5..000000000000 --- a/news/2 Fixes/10016.md +++ /dev/null @@ -1 +0,0 @@ -Fix run all cells to force each cell to finish before running the next one. \ No newline at end of file diff --git a/news/2 Fixes/10050.md b/news/2 Fixes/10050.md deleted file mode 100644 index 3b61cbc1c88f..000000000000 --- a/news/2 Fixes/10050.md +++ /dev/null @@ -1 +0,0 @@ -Fix interrupts from always thinking a restart occurred. \ No newline at end of file diff --git a/news/2 Fixes/10094.md b/news/2 Fixes/10094.md deleted file mode 100644 index 5345c91c388f..000000000000 --- a/news/2 Fixes/10094.md +++ /dev/null @@ -1 +0,0 @@ -Do not delay activation of extension by waiting for terminal to get activated. diff --git a/news/2 Fixes/10097.md b/news/2 Fixes/10097.md deleted file mode 100644 index 101bb77b5d92..000000000000 --- a/news/2 Fixes/10097.md +++ /dev/null @@ -1 +0,0 @@ -LiveShare can prevent the jupyter server from starting if it crashes. \ No newline at end of file diff --git a/news/2 Fixes/10111.md b/news/2 Fixes/10111.md deleted file mode 100644 index dae8dc293564..000000000000 --- a/news/2 Fixes/10111.md +++ /dev/null @@ -1,2 +0,0 @@ -Mark `poetry.lock` file as toml syntax. -(thanks to [remcohaszing](https://github.com/remcohaszing/)) diff --git a/news/2 Fixes/10124.md b/news/2 Fixes/10124.md deleted file mode 100644 index 2509a7db0a53..000000000000 --- a/news/2 Fixes/10124.md +++ /dev/null @@ -1 +0,0 @@ -Hide input in `Interactive Window` based on the setting `allowInput`. diff --git a/news/2 Fixes/10137.md b/news/2 Fixes/10137.md deleted file mode 100644 index 47419ce382a2..000000000000 --- a/news/2 Fixes/10137.md +++ /dev/null @@ -1 +0,0 @@ -Fix scrolling for output to consistently scroll even during execution. \ No newline at end of file diff --git a/news/2 Fixes/10154.md b/news/2 Fixes/10154.md deleted file mode 100644 index b5ab48cc2c8b..000000000000 --- a/news/2 Fixes/10154.md +++ /dev/null @@ -1 +0,0 @@ -Correct image backgrounds for notebook editor. \ No newline at end of file diff --git a/news/2 Fixes/10204.md b/news/2 Fixes/10204.md deleted file mode 100644 index 8456ecbf29c5..000000000000 --- a/news/2 Fixes/10204.md +++ /dev/null @@ -1 +0,0 @@ -Fix empty variables to show an empty string in the Notebook/Interactive Window variable explorer. \ No newline at end of file diff --git a/news/2 Fixes/10227.md b/news/2 Fixes/10227.md deleted file mode 100644 index aff7fefd2386..000000000000 --- a/news/2 Fixes/10227.md +++ /dev/null @@ -1 +0,0 @@ -In addition to updating current working directory also add on our notebook file path to sys.path to match jupyter. \ No newline at end of file diff --git a/news/2 Fixes/10231.md b/news/2 Fixes/10231.md deleted file mode 100644 index 338383cd81b0..000000000000 --- a/news/2 Fixes/10231.md +++ /dev/null @@ -1 +0,0 @@ -Ensure message (about trimmed output) displayed in an output cell looks like a link. diff --git a/news/2 Fixes/10232.md b/news/2 Fixes/10232.md deleted file mode 100644 index 54d69f4262ba..000000000000 --- a/news/2 Fixes/10232.md +++ /dev/null @@ -1 +0,0 @@ -Users can opt into or opt out of experiments in remote scenarios. diff --git a/news/2 Fixes/10250.md b/news/2 Fixes/10250.md deleted file mode 100644 index e3ed4fd36c48..000000000000 --- a/news/2 Fixes/10250.md +++ /dev/null @@ -1 +0,0 @@ -Ensure to correctly return env variables of the activated interpreter, when dealing with non-workspace interpreters. diff --git a/news/2 Fixes/10255.md b/news/2 Fixes/10255.md deleted file mode 100644 index 98de41ee9d0b..000000000000 --- a/news/2 Fixes/10255.md +++ /dev/null @@ -1 +0,0 @@ -Update kernel environments before each run to use the latest environment. Only do this for kernelspecs created by the python extension. \ No newline at end of file diff --git a/news/2 Fixes/10311.md b/news/2 Fixes/10311.md deleted file mode 100644 index 94517e63549e..000000000000 --- a/news/2 Fixes/10311.md +++ /dev/null @@ -1 +0,0 @@ -Don't start up and shutdown an extra Jupyter notebook on server startup. diff --git a/news/2 Fixes/10359.md b/news/2 Fixes/10359.md deleted file mode 100644 index f02f1f531748..000000000000 --- a/news/2 Fixes/10359.md +++ /dev/null @@ -1 +0,0 @@ -When you install missing dependencies for jupyter successfully in an active interpreter also set that interpreter as the jupyter selected interpreter. \ No newline at end of file diff --git a/news/2 Fixes/1877.md b/news/2 Fixes/1877.md deleted file mode 100644 index b2b1cdecfacf..000000000000 --- a/news/2 Fixes/1877.md +++ /dev/null @@ -1 +0,0 @@ -Remove extra lines at the end of the file when formatting with Black \ No newline at end of file diff --git a/news/2 Fixes/2607.md b/news/2 Fixes/2607.md deleted file mode 100644 index 9a13b9ccdd63..000000000000 --- a/news/2 Fixes/2607.md +++ /dev/null @@ -1 +0,0 @@ -Capitalize `Activate.ps1` in code for PowerShell Core on Linux. diff --git a/news/2 Fixes/3123.md b/news/2 Fixes/3123.md deleted file mode 100644 index b1f23c546ae2..000000000000 --- a/news/2 Fixes/3123.md +++ /dev/null @@ -1 +0,0 @@ -Change interactive window to use the python interpreter associated with the file being run. \ No newline at end of file diff --git a/news/2 Fixes/6370.md b/news/2 Fixes/6370.md deleted file mode 100644 index b12f4d05981f..000000000000 --- a/news/2 Fixes/6370.md +++ /dev/null @@ -1 +0,0 @@ -Make line numbers in errors for the Interactive window match the original file and make them clickable for jumping back to an error location. \ No newline at end of file diff --git a/news/2 Fixes/6900.md b/news/2 Fixes/6900.md deleted file mode 100644 index a040c99fbc9b..000000000000 --- a/news/2 Fixes/6900.md +++ /dev/null @@ -1 +0,0 @@ -Fix magic commands that return 'paged' output. \ No newline at end of file diff --git a/news/2 Fixes/8589.md b/news/2 Fixes/8589.md deleted file mode 100644 index 2dd9cc134720..000000000000 --- a/news/2 Fixes/8589.md +++ /dev/null @@ -1 +0,0 @@ -Ensure model is updated with user changes after user types into the editor. diff --git a/news/2 Fixes/8742.md b/news/2 Fixes/8742.md deleted file mode 100644 index d7717d671ea5..000000000000 --- a/news/2 Fixes/8742.md +++ /dev/null @@ -1 +0,0 @@ -Fix latex output from a code cell to render correctly. \ No newline at end of file diff --git a/news/2 Fixes/9102.md b/news/2 Fixes/9102.md deleted file mode 100644 index e6857380a037..000000000000 --- a/news/2 Fixes/9102.md +++ /dev/null @@ -1 +0,0 @@ -Toggling cell type from `code` to `markdown` will not set focus to the editor in cells of a `Notebook`. diff --git a/news/2 Fixes/9116.md b/news/2 Fixes/9116.md deleted file mode 100644 index d7a2d3d14351..000000000000 --- a/news/2 Fixes/9116.md +++ /dev/null @@ -1 +0,0 @@ -Remove whitespace from code before pushing to the interactive window \ No newline at end of file diff --git a/news/2 Fixes/9132.md b/news/2 Fixes/9132.md deleted file mode 100644 index e7b32a58069f..000000000000 --- a/news/2 Fixes/9132.md +++ /dev/null @@ -1 +0,0 @@ -Have sys info show that we have connected to an existing server. \ No newline at end of file diff --git a/news/2 Fixes/9174.md b/news/2 Fixes/9174.md deleted file mode 100644 index 8fbafbbea4d5..000000000000 --- a/news/2 Fixes/9174.md +++ /dev/null @@ -1 +0,0 @@ -Fix IPython.clear_output to behave like Jupyter \ No newline at end of file diff --git a/news/2 Fixes/9177.md b/news/2 Fixes/9177.md deleted file mode 100644 index cd241c5851b8..000000000000 --- a/news/2 Fixes/9177.md +++ /dev/null @@ -1 +0,0 @@ -Jupyter output tab was not showing anything when connecting to a remote server. \ No newline at end of file diff --git a/news/2 Fixes/9242.md b/news/2 Fixes/9242.md deleted file mode 100644 index eca1393017f3..000000000000 --- a/news/2 Fixes/9242.md +++ /dev/null @@ -1 +0,0 @@ -Fixed our css generation from custom color themes which caused the Data Viewer to not load. diff --git a/news/2 Fixes/9250.md b/news/2 Fixes/9250.md deleted file mode 100644 index 7cf1bf762c48..000000000000 --- a/news/2 Fixes/9250.md +++ /dev/null @@ -1 +0,0 @@ -Allow a user to skip switching to a kernel if the kernel dies during startup. \ No newline at end of file diff --git a/news/2 Fixes/9282.md b/news/2 Fixes/9282.md deleted file mode 100644 index 760b68465ba7..000000000000 --- a/news/2 Fixes/9282.md +++ /dev/null @@ -1 +0,0 @@ -Clean up interative window styling and set focus to input box if clicking in the interactive window. \ No newline at end of file diff --git a/news/2 Fixes/9283.md b/news/2 Fixes/9283.md deleted file mode 100644 index 384ca6d84e43..000000000000 --- a/news/2 Fixes/9283.md +++ /dev/null @@ -1 +0,0 @@ -Change icon spacing to match vscode icon spacing in native editor toolbars and interative window toolbar. \ No newline at end of file diff --git a/news/2 Fixes/9395.md b/news/2 Fixes/9395.md deleted file mode 100644 index fb6af3b94c73..000000000000 --- a/news/2 Fixes/9395.md +++ /dev/null @@ -1 +0,0 @@ -Display diff viewer for `ipynb` files without opening `Notebooks`. diff --git a/news/2 Fixes/9503.md b/news/2 Fixes/9503.md deleted file mode 100644 index 4de6f7c3acdf..000000000000 --- a/news/2 Fixes/9503.md +++ /dev/null @@ -1 +0,0 @@ -Python environments will not be activated in terminals hidden from the user. diff --git a/news/2 Fixes/9731.md b/news/2 Fixes/9731.md deleted file mode 100644 index e6f6454189be..000000000000 --- a/news/2 Fixes/9731.md +++ /dev/null @@ -1 +0,0 @@ -Disable `Restart Kernel` and `Interrupt Kernel` buttons when a `kernel` has not yet started. diff --git a/news/2 Fixes/9766.md b/news/2 Fixes/9766.md deleted file mode 100644 index f8df99ec60d5..000000000000 --- a/news/2 Fixes/9766.md +++ /dev/null @@ -1 +0,0 @@ -Fixed an issue with multiple latex formulas in the same '$$' block. diff --git a/news/2 Fixes/9803.md b/news/2 Fixes/9803.md deleted file mode 100644 index 4298e40de3a0..000000000000 --- a/news/2 Fixes/9803.md +++ /dev/null @@ -1 +0,0 @@ -Make notebook editor and interactive window honor undocumented editor.scrollbar.verticalScrollbarSize option + increase default to match vscode. \ No newline at end of file diff --git a/news/2 Fixes/9845.md b/news/2 Fixes/9845.md deleted file mode 100644 index 76da113ebab0..000000000000 --- a/news/2 Fixes/9845.md +++ /dev/null @@ -1 +0,0 @@ -Ensure that invalid kernels don't hang notebook startup or running. \ No newline at end of file diff --git a/news/2 Fixes/9935.md b/news/2 Fixes/9935.md deleted file mode 100644 index d80250f6b9b6..000000000000 --- a/news/2 Fixes/9935.md +++ /dev/null @@ -1 +0,0 @@ -Switching kernels should disable the run/interrupt/restart buttons. \ No newline at end of file diff --git a/news/2 Fixes/9944.md b/news/2 Fixes/9944.md deleted file mode 100644 index 8299eb6d31bb..000000000000 --- a/news/2 Fixes/9944.md +++ /dev/null @@ -1 +0,0 @@ -Prompt to install `pandas` if not found when opening the `Data Viewer`. diff --git a/news/2 Fixes/9945.md b/news/2 Fixes/9945.md deleted file mode 100644 index 5a589ed7cdf9..000000000000 --- a/news/2 Fixes/9945.md +++ /dev/null @@ -1 +0,0 @@ -Prompt to reload VS Code when changing the Jupyter Server connection. diff --git a/news/2 Fixes/9959.md b/news/2 Fixes/9959.md deleted file mode 100644 index 40f534911697..000000000000 --- a/news/2 Fixes/9959.md +++ /dev/null @@ -1 +0,0 @@ -Support opening spark dataframes in the data viewer. \ No newline at end of file diff --git a/news/2 Fixes/9997.md b/news/2 Fixes/9997.md deleted file mode 100644 index e864b591d848..000000000000 --- a/news/2 Fixes/9997.md +++ /dev/null @@ -1 +0,0 @@ -Make sure metadata in a cell survives execution. \ No newline at end of file diff --git a/news/3 Code Health/10046.md b/news/3 Code Health/10046.md deleted file mode 100644 index d9a87429b162..000000000000 --- a/news/3 Code Health/10046.md +++ /dev/null @@ -1 +0,0 @@ -Update version of `VSCode` in `package.json` to `1.42`. diff --git a/news/3 Code Health/10182.md b/news/3 Code Health/10182.md deleted file mode 100644 index d42349b9f666..000000000000 --- a/news/3 Code Health/10182.md +++ /dev/null @@ -1 +0,0 @@ -Capture `mimetypes` of cell outputs. diff --git a/news/3 Code Health/10184.md b/news/3 Code Health/10184.md deleted file mode 100644 index 77e2413a9e6e..000000000000 --- a/news/3 Code Health/10184.md +++ /dev/null @@ -1 +0,0 @@ -Use debugpy in the core extension instead of ptvsd diff --git a/news/3 Code Health/10192.md b/news/3 Code Health/10192.md deleted file mode 100644 index a7a32a1df7a2..000000000000 --- a/news/3 Code Health/10192.md +++ /dev/null @@ -1 +0,0 @@ -Remove UI Tests. diff --git a/news/3 Code Health/10209.md b/news/3 Code Health/10209.md deleted file mode 100644 index 89a2a79caf50..000000000000 --- a/news/3 Code Health/10209.md +++ /dev/null @@ -1 +0,0 @@ -Add telemetry for imports in notebooks. \ No newline at end of file diff --git a/news/3 Code Health/10211.md b/news/3 Code Health/10211.md deleted file mode 100644 index aeeabc8b0ec4..000000000000 --- a/news/3 Code Health/10211.md +++ /dev/null @@ -1 +0,0 @@ -Update data science component to use `debugpy`. diff --git a/news/3 Code Health/10288.md b/news/3 Code Health/10288.md deleted file mode 100644 index ea1ff2246a3d..000000000000 --- a/news/3 Code Health/10288.md +++ /dev/null @@ -1 +0,0 @@ -Use new MacOS VM in Pipelines. diff --git a/news/3 Code Health/10293.md b/news/3 Code Health/10293.md deleted file mode 100644 index 6649434472f9..000000000000 --- a/news/3 Code Health/10293.md +++ /dev/null @@ -1 +0,0 @@ -Split the windows PR tests into two sections so they do not time out. diff --git a/news/3 Code Health/6911.md b/news/3 Code Health/6911.md deleted file mode 100644 index f7a40ecad97d..000000000000 --- a/news/3 Code Health/6911.md +++ /dev/null @@ -1 +0,0 @@ -Use the new VS Code filesystem API as much as possible. diff --git a/news/3 Code Health/7997.md b/news/3 Code Health/7997.md deleted file mode 100644 index cd92de44dd9d..000000000000 --- a/news/3 Code Health/7997.md +++ /dev/null @@ -1 +0,0 @@ -Functional tests using real jupyter can take 30-90 seconds each. Most of this time is searching for interpreters. Cache the interpreter search. \ No newline at end of file diff --git a/news/3 Code Health/8298.md b/news/3 Code Health/8298.md deleted file mode 100644 index 50ece03ea16a..000000000000 --- a/news/3 Code Health/8298.md +++ /dev/null @@ -1 +0,0 @@ -Use Python 3.8 in tests run on Azure DevOps. diff --git a/news/3 Code Health/8869.md b/news/3 Code Health/8869.md deleted file mode 100644 index ef4e21f338c6..000000000000 --- a/news/3 Code Health/8869.md +++ /dev/null @@ -1 +0,0 @@ -Display `Commands` related to `Interactive Window` and `Notebooks` only when necessary. diff --git a/news/3 Code Health/9341.md b/news/3 Code Health/9341.md deleted file mode 100644 index 26540c40e8a7..000000000000 --- a/news/3 Code Health/9341.md +++ /dev/null @@ -1 +0,0 @@ -Change cursor styles of buttons `pointer` in `Interactive Window` and `Native Editor`. diff --git a/news/3 Code Health/9765.md b/news/3 Code Health/9765.md deleted file mode 100644 index 51532dde1d80..000000000000 --- a/news/3 Code Health/9765.md +++ /dev/null @@ -1 +0,0 @@ -Update Jedi to 0.16.0 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 72e041b3eeb2..5a8f0b02651e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "python", - "version": "2020.3.0-dev", + "version": "2020.3.0-rc", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0454817e2de5..4e5e760cf614 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "python", "displayName": "Python", "description": "Linting, Debugging (multi-threaded, remote), Intellisense, Jupyter Notebooks, code formatting, refactoring, unit tests, snippets, and more.", - "version": "2020.3.0-dev", + "version": "2020.3.0-rc", "languageServerVersion": "0.5.30", "publisher": "ms-python", "author": { diff --git a/tpn/distribution.toml b/tpn/distribution.toml index 44e1e765e6b0..f1fd168d8a5f 100644 --- a/tpn/distribution.toml +++ b/tpn/distribution.toml @@ -378,7 +378,7 @@ THE SOFTWARE. [[project]] name = "PyDev.Debugger" -version = "(for ptvsd 4)" +version = "(for ptvsd 4 & debugpy 1)" url = "https://pypi.org/project/pydevd/" purpose = "explicit" license = """ @@ -852,6 +852,35 @@ 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. """ +[[project]] +name = "debugpy" +version = "1.0.0a2" +url = "https://github.com/Microsoft/debugpy/tree/v1.0.0a2" +purpose = "PyPI" +license = """ +Copyright (c) Microsoft Corporation +All rights reserved. + +MIT License + +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. +""" + [[project]] name = "dfa" version = "1.2.0"