Commit Graph

83312 Commits

Author SHA1 Message Date
Johannes Rieken cd8dd5d721 remove empty notebookDocumentMetadataDefaults 2021-06-08 16:43:26 +02:00
Johannes Rieken ccb86ac811 default kernels uses cell text as output 2021-06-08 16:16:34 +02:00
Johannes Rieken 78fe62bb76 use more showNotebookDocument, less activeNotebookEditor 2021-06-08 12:05:52 +02:00
Johannes Rieken 606a550a52 have only one kernel by default, bring in other kernels per test and use the assertKernel util to ensure the selected kernel is the wanted kernel 2021-06-08 11:58:40 +02:00
Johannes Rieken a712df832d make IOutputTransformContribution accept a single item only 2021-06-08 11:07:10 +02:00
Johannes Rieken 5decc7b3ce Merge branch 'main' into notebook/dev 2021-06-08 09:55:51 +02:00
Johannes Rieken 842cfd780c make sure to transform notebook data metadata 2021-06-08 09:55:25 +02:00
Sandeep Somavarapu 12db8ca3a4 Fix #125586 2021-06-08 09:26:13 +02:00
dependabot[bot] 5e781aef7a Merge pull request #125705 from microsoft/dependabot/npm_and_yarn/remote/glob-parent-5.1.2
Bump glob-parent from 5.1.0 to 5.1.2 in /remote
2021-06-08 09:22:46 +02:00
Benjamin Pasero 72fb784f97 code cache - do not configure our loader when using vscode-file protocol 2021-06-08 09:17:50 +02:00
Benjamin Pasero 9636518bbf code - enable vscode-file protocol and bypassHeatCheck caching (#98682) 2021-06-08 09:12:05 +02:00
Benjamin Pasero 745e354d64 sandbox - implement didUseCachedData when node.js code loading is disabled (#98682) 2021-06-08 09:12:05 +02:00
Martin Aeschlimann 0967708609 Merge pull request #125659 from ryyppy/seti-ui-add-rescript
Update to latest seti-ui & add ReScript to the icon theme
2021-06-08 09:00:40 +02:00
Johannes Rieken 83997253e0 update api notebook for June 2021-06-08 07:59:48 +02:00
Benjamin Pasero 2cb7b42d98 code cache - cleanup in prep for chrome based code loading 2021-06-08 07:39:43 +02:00
Benjamin Pasero e4373f7591 💄 2021-06-08 07:25:59 +02:00
Matt Bierner 3b01e32ca6 Remove :emoji: support in markdown notebooks
We added this to test out the new markdown renderers. However I believe it makes more sense to ship this as an extension now
2021-06-07 16:51:05 -07:00
Matt Bierner 8a1265077d Be more explicit how when we call decodeURIComponent
Current code is probably safe, but just adding extra check to make sure in case we get `query: undefined`
2021-06-07 16:51:05 -07:00
Matt Bierner a4e9f7e232 Bump target to es2019 in extensions
This should be a safe target for our current node version and for web
2021-06-07 16:51:04 -07:00
rebornix aafce57f5c consolidate move cell commands. 2021-06-07 16:23:04 -07:00
rebornix 896c26bdb3 Move editor tests to notebook.editor 2021-06-07 16:06:44 -07:00
rebornix 1087cb4c48 fix #125702 2021-06-07 15:57:52 -07:00
Raz Luvaton b0afadadf4 fix(workbench-credentials): add missing await (#115338) 2021-06-07 15:55:04 -07:00
Jean Pierre a2a5a5ee07 Fixes #125602 (#125603) 2021-06-07 15:41:07 -07:00
Matt Bierner 298668ec72 Fix build build 2021-06-07 15:36:24 -07:00
mghalayini 1d04a82c1d support links that begin with a root folder (#125615)
Co-authored-by: meganrogge <megrogge@gmail.com>
2021-06-07 21:48:32 +00:00
Emily Marigold Klassen 2f6ee8b71f chore(typescript-language-features): fix spelling of deprecated (#125693)
Co-authored-by: Emily M Klassen <forivall@users.noreply.github.com>
2021-06-07 14:45:08 -07:00
Matt Bierner 0ec29f0fcf Pick up TS 4.4@next for building
- Disables the two new strictness options for now
- Adopt shared tsconfig for `microsoft-authentication `
2021-06-07 14:44:24 -07:00
Matt Bierner 4c3191731b Spell 2021-06-07 14:44:24 -07:00
Nicholas Rayburn 1a41c51dc5 add option to not show link hovers for terminal (#124926)
fix #113913

Co-authored-by: meganrogge <megrogge@gmail.com>
2021-06-07 14:44:18 -07:00
Connor Peet b080fa237c testing: improvements to autorun behavior
Fixes #124333
2021-06-07 14:42:09 -07:00
rebornix c8928f8111 status bar test suite setup. 2021-06-07 14:14:20 -07:00
rebornix f05512d87e statusbar suite. 2021-06-07 14:10:34 -07:00
rebornix 8b4a90726d Merge branch 'notebook/dev' into main 2021-06-07 13:53:10 -07:00
rebornix 5c063c5f83 move document event tests into notebook.document 2021-06-07 13:34:37 -07:00
Daniel Imms 0f1d4fbe89 Clone object before applying migrated setting
Fixes #125177
2021-06-07 12:52:28 -07:00
rebornix ef62adb3ba start separating tests. 2021-06-07 12:03:55 -07:00
rebornix 51ccb0434d multi tabs and custom metadata. 2021-06-07 11:51:19 -07:00
rebornix 6259f7ca84 more showNotebookDocument for workspace edit tests. 2021-06-07 11:45:31 -07:00
João Moreno 11a1f705db fix code.sh script in wsl2+gui 2021-06-07 20:39:27 +02:00
rebornix af4086099f move towards openNotebookDocument. 2021-06-07 11:30:10 -07:00
rebornix 809dfb41a2 remove join cell test covered by unit test. 2021-06-07 11:10:04 -07:00
Matvii Hodovaniuk 67561036cf Replace map with forEach (#115378)
The callback provided to the map call on this array should return a value, otherwise map will always return an array of undefined values. If the desired behaviour is to just iterate through all elements, then consider using forEach or a for-of loop instead.
2021-06-07 11:01:10 -07:00
Sandeep Somavarapu feeeb58be0 #125687 - Add settings sync troubleshoot view 2021-06-07 19:51:09 +02:00
Sandeep Somavarapu 830c739857 Fix settings sync is removing extensions from web.
- Do not use remote data as last sync data for extensions
- Do not use cache and fetch extensions always
2021-06-07 19:51:09 +02:00
Connor Peet d8f27065a7 testing: fix go to test not working
Fixes  #125676
2021-06-07 10:27:20 -07:00
isidor 7e2b265051 better context key for run menu 2021-06-07 19:01:30 +02:00
rebornix 9369a1671f remove only. 2021-06-07 09:27:02 -07:00
Logan Ramos b91fbed9e1 Closes #124762 2021-06-07 12:16:40 -04:00
Johannes Rieken 8006b8c9a4 make getEditorById strict 2021-06-07 17:47:34 +02:00