mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-14 18:46:34 -05:00
Merge vscode 1.67 (#20883)
* Fix initial build breaks from 1.67 merge (#2514) * Update yarn lock files * Update build scripts * Fix tsconfig * Build breaks * WIP * Update yarn lock files * Misc breaks * Updates to package.json * Breaks * Update yarn * Fix breaks * Breaks * Build breaks * Breaks * Breaks * Breaks * Breaks * Breaks * Missing file * Breaks * Breaks * Breaks * Breaks * Breaks * Fix several runtime breaks (#2515) * Missing files * Runtime breaks * Fix proxy ordering issue * Remove commented code * Fix breaks with opening query editor * Fix post merge break * Updates related to setup build and other breaks (#2516) * Fix bundle build issues * Update distro * Fix distro merge and update build JS files * Disable pipeline steps * Remove stats call * Update license name * Make new RPM dependencies a warning * Fix extension manager version checks * Update JS file * Fix a few runtime breaks * Fixes * Fix runtime issues * Fix build breaks * Update notebook tests (part 1) * Fix broken tests * Linting errors * Fix hygiene * Disable lint rules * Bump distro * Turn off smoke tests * Disable integration tests * Remove failing "activate" test * Remove failed test assertion * Disable other broken test * Disable query history tests * Disable extension unit tests * Disable failing tasks
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
"version": "1.0.0",
|
||||
"icon": "icon.png",
|
||||
"publisher": "vscode",
|
||||
"enableProposedApi": true,
|
||||
"license": "MIT",
|
||||
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
|
||||
"engines": {
|
||||
@@ -16,6 +15,9 @@
|
||||
"categories": [
|
||||
"Programming Languages"
|
||||
],
|
||||
"enabledApiProposals": [
|
||||
"textEditorDrop"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onLanguage:markdown",
|
||||
"onCommand:markdown.preview.toggleLock",
|
||||
@@ -27,6 +29,7 @@
|
||||
"onCommand:markdown.showPreviewSecuritySelector",
|
||||
"onCommand:markdown.api.render",
|
||||
"onCommand:markdown.api.reloadPlugins",
|
||||
"onCommand:markdown.findAllFileReferences",
|
||||
"onWebviewPanel:markdown.preview",
|
||||
"onCustomEditor:vscode.markdown.preview.editor"
|
||||
],
|
||||
@@ -47,7 +50,81 @@
|
||||
"displayName": "Markdown it renderer",
|
||||
"entrypoint": "./notebook-out/index.js",
|
||||
"mimeTypes": [
|
||||
"text/markdown"
|
||||
"text/markdown",
|
||||
"text/latex",
|
||||
"text/x-css",
|
||||
"text/x-html",
|
||||
"text/x-json",
|
||||
"text/x-typescript",
|
||||
"text/x-abap",
|
||||
"text/x-apex",
|
||||
"text/x-azcli",
|
||||
"text/x-bat",
|
||||
"text/x-cameligo",
|
||||
"text/x-clojure",
|
||||
"text/x-coffee",
|
||||
"text/x-cpp",
|
||||
"text/x-csharp",
|
||||
"text/x-csp",
|
||||
"text/x-css",
|
||||
"text/x-dart",
|
||||
"text/x-dockerfile",
|
||||
"text/x-ecl",
|
||||
"text/x-fsharp",
|
||||
"text/x-go",
|
||||
"text/x-graphql",
|
||||
"text/x-handlebars",
|
||||
"text/x-hcl",
|
||||
"text/x-html",
|
||||
"text/x-ini",
|
||||
"text/x-java",
|
||||
"text/x-javascript",
|
||||
"text/x-julia",
|
||||
"text/x-kotlin",
|
||||
"text/x-less",
|
||||
"text/x-lexon",
|
||||
"text/x-lua",
|
||||
"text/x-m3",
|
||||
"text/x-markdown",
|
||||
"text/x-mips",
|
||||
"text/x-msdax",
|
||||
"text/x-mysql",
|
||||
"text/x-objective-c/objective",
|
||||
"text/x-pascal",
|
||||
"text/x-pascaligo",
|
||||
"text/x-perl",
|
||||
"text/x-pgsql",
|
||||
"text/x-php",
|
||||
"text/x-postiats",
|
||||
"text/x-powerquery",
|
||||
"text/x-powershell",
|
||||
"text/x-pug",
|
||||
"text/x-python",
|
||||
"text/x-r",
|
||||
"text/x-razor",
|
||||
"text/x-redis",
|
||||
"text/x-redshift",
|
||||
"text/x-restructuredtext",
|
||||
"text/x-ruby",
|
||||
"text/x-rust",
|
||||
"text/x-sb",
|
||||
"text/x-scala",
|
||||
"text/x-scheme",
|
||||
"text/x-scss",
|
||||
"text/x-shell",
|
||||
"text/x-solidity",
|
||||
"text/x-sophia",
|
||||
"text/x-sql",
|
||||
"text/x-st",
|
||||
"text/x-swift",
|
||||
"text/x-systemverilog",
|
||||
"text/x-tcl",
|
||||
"text/x-twig",
|
||||
"text/x-typescript",
|
||||
"text/x-vb",
|
||||
"text/x-xml",
|
||||
"text/x-yaml",
|
||||
"application/json"
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -93,13 +170,18 @@
|
||||
"command": "markdown.preview.toggleLock",
|
||||
"title": "%markdown.preview.toggleLock.title%",
|
||||
"category": "Markdown"
|
||||
},
|
||||
{
|
||||
"command": "markdown.findAllFileReferences",
|
||||
"title": "%markdown.findAllFileReferences%",
|
||||
"category": "Markdown"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"editor/title": [
|
||||
{
|
||||
"command": "markdown.showPreviewToSide",
|
||||
"when": "editorLangId == markdown && !notebookEditorFocused",
|
||||
"when": "editorLangId == markdown && !notebookEditorFocused && !hasCustomMarkdownPreview",
|
||||
"alt": "markdown.showPreview",
|
||||
"group": "navigation"
|
||||
},
|
||||
@@ -127,15 +209,24 @@
|
||||
"explorer/context": [
|
||||
{
|
||||
"command": "markdown.showPreview",
|
||||
"when": "resourceLangId == markdown",
|
||||
"when": "resourceLangId == markdown && !hasCustomMarkdownPreview",
|
||||
"group": "navigation"
|
||||
},
|
||||
{
|
||||
"command": "markdown.findAllFileReferences",
|
||||
"when": "resourceLangId == markdown",
|
||||
"group": "4_search"
|
||||
}
|
||||
],
|
||||
"editor/title/context": [
|
||||
{
|
||||
"command": "markdown.showPreview",
|
||||
"when": "resourceLangId == markdown",
|
||||
"when": "resourceLangId == markdown && !hasCustomMarkdownPreview",
|
||||
"group": "1_open"
|
||||
},
|
||||
{
|
||||
"command": "markdown.findAllFileReferences",
|
||||
"when": "resourceLangId == markdown"
|
||||
}
|
||||
],
|
||||
"commandPalette": [
|
||||
@@ -178,6 +269,10 @@
|
||||
{
|
||||
"command": "markdown.preview.refresh",
|
||||
"when": "markdownPreviewFocus"
|
||||
},
|
||||
{
|
||||
"command": "markdown.findAllFileReferences",
|
||||
"when": "editorLangId == markdown"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -297,6 +392,12 @@
|
||||
"%configuration.markdown.links.openLocation.beside%"
|
||||
]
|
||||
},
|
||||
"markdown.suggest.paths.enabled": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%configuration.markdown.suggest.paths.enabled.description%",
|
||||
"scope": "resource"
|
||||
},
|
||||
"markdown.trace": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
@@ -306,6 +407,51 @@
|
||||
"default": "off",
|
||||
"description": "%markdown.trace.desc%",
|
||||
"scope": "window"
|
||||
},
|
||||
"markdown.editor.drop.enabled": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"markdownDescription": "%configuration.markdown.editor.drop.enabled%",
|
||||
"scope": "resource"
|
||||
},
|
||||
"markdown.experimental.validate.enabled": {
|
||||
"type": "boolean",
|
||||
"scope": "resource",
|
||||
"description": "%configuration.markdown.experimental.validate.enabled.description%",
|
||||
"default": false
|
||||
},
|
||||
"markdown.experimental.validate.referenceLinks": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"description": "%configuration.markdown.experimental.validate.referenceLinks.description%",
|
||||
"default": "warning",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
"error"
|
||||
]
|
||||
},
|
||||
"markdown.experimental.validate.headerLinks": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"description": "%configuration.markdown.experimental.validate.headerLinks.description%",
|
||||
"default": "warning",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
"error"
|
||||
]
|
||||
},
|
||||
"markdown.experimental.validate.fileLinks": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"description": "%configuration.markdown.experimental.validate.fileLinks.description%",
|
||||
"default": "warning",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
"error"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -331,7 +477,7 @@
|
||||
"customEditors": [
|
||||
{
|
||||
"viewType": "vscode.markdown.preview.editor",
|
||||
"displayName": "Markdown Preview (Experimental)",
|
||||
"displayName": "Markdown Preview",
|
||||
"priority": "option",
|
||||
"selector": [
|
||||
{
|
||||
@@ -346,18 +492,21 @@
|
||||
"watch": "npm run build-preview && gulp watch-extension:markdown-language-features",
|
||||
"vscode:prepublish": "npm run build-ext && npm run build-preview",
|
||||
"build-ext": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:markdown-language-features ./tsconfig.json",
|
||||
"build-preview": "npx webpack-cli --mode production",
|
||||
"build-notebook": "node ./esbuild",
|
||||
"build-notebook": "node ./esbuild-notebook",
|
||||
"build-preview": "node ./esbuild-preview",
|
||||
"compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none",
|
||||
"watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vscode/extension-telemetry": "0.4.10",
|
||||
"dompurify": "^2.3.1",
|
||||
"highlight.js": "^10.4.1",
|
||||
"highlight.js": "^11.4.0",
|
||||
"markdown-it": "^12.3.2",
|
||||
"markdown-it-front-matter": "^0.2.1",
|
||||
"vscode-extension-telemetry": "0.4.2",
|
||||
"vscode-nls": "^5.0.0"
|
||||
"morphdom": "^2.6.1",
|
||||
"vscode-languageserver-textdocument": "^1.0.4",
|
||||
"vscode-nls": "^5.0.0",
|
||||
"vscode-uri": "^3.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/dompurify": "^2.3.1",
|
||||
|
||||
Reference in New Issue
Block a user