Compare commits

..

5 Commits

Author SHA1 Message Date
Chris LaFreniere
0b9ef714c8 Fix not being able to type in code cell after switching from text (#17590) (#17592)
* Fix not being able to type in code cell after switching from text

* comment

Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
2021-11-04 10:13:23 -07:00
Karl Burtram
36684b87e1 Bump non-builtin extensions in release/1.33 (#17568) 2021-11-02 14:24:11 -07:00
Karl Burtram
78d4398b32 Add support for restricted mode (#17559)
* Update reference to html-query-plan to use npm.js (#17558)

* Update reference to html-query-plan to use npm.js

* Change some references to html-query-plan package

* Add untrusted workspace supported flags (#17557)

* Bump version 1.33.1
2021-11-02 10:20:03 -07:00
Charles Gagnon
ee9fa17149 Fix localized titles in VS Code marketplace (#17515) 2021-10-27 14:09:45 -07:00
Charles Gagnon
737ad2c631 Fix publisher for VS Code extensions (#17505) (#17507) 2021-10-27 10:51:22 -07:00
43 changed files with 216 additions and 49 deletions

View File

@@ -751,7 +751,7 @@
"chart.js", "chart.js",
"plotly.js", "plotly.js",
"angular2-grid", "angular2-grid",
"html-query-plan", "kburtram-query-plan",
"html-to-image", "html-to-image",
"turndown", "turndown",
"gridstack", "gridstack",

View File

@@ -9,6 +9,12 @@
"vscode": "*", "vscode": "*",
"azdata": "*" "azdata": "*"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionPack": [ "extensionPack": [
"Microsoft.agent", "Microsoft.agent",
"Microsoft.profiler", "Microsoft.profiler",

View File

@@ -15,6 +15,12 @@
"scripts": { "scripts": {
"postinstall": "node ./build/postinstall.js" "postinstall": "node ./build/postinstall.js"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"activationEvents": [ "activationEvents": [
"onCommand:adminToolExtWin.launchSsmsMinPropertiesDialog", "onCommand:adminToolExtWin.launchSsmsMinPropertiesDialog",
"onCommand:adminToolExtWin.launchSsmsMinGswDialog" "onCommand:adminToolExtWin.launchSsmsMinGswDialog"

View File

@@ -2,7 +2,7 @@
"name": "agent", "name": "agent",
"displayName": "SQL Server Agent", "displayName": "SQL Server Agent",
"description": "Manage and troubleshoot SQL Server Agent jobs", "description": "Manage and troubleshoot SQL Server Agent jobs",
"version": "0.49.0", "version": "0.49.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -19,6 +19,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionDependencies": [ "extensionDependencies": [
"Microsoft.mssql" "Microsoft.mssql"
], ],

View File

@@ -2,7 +2,7 @@
"name": "arc", "name": "arc",
"displayName": "%arc.displayName%", "displayName": "%arc.displayName%",
"description": "%arc.description%", "description": "%arc.description%",
"version": "0.9.6", "version": "0.9.7",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -21,6 +21,12 @@
"Microsoft.azcli", "Microsoft.azcli",
"Microsoft.resource-deployment" "Microsoft.resource-deployment"
], ],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"

View File

@@ -2,7 +2,7 @@
"name": "asde-deployment", "name": "asde-deployment",
"displayName": "%extension-displayName%", "displayName": "%extension-displayName%",
"description": "%extension-description%", "description": "%extension-description%",
"version": "0.4.2", "version": "0.4.3",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -16,6 +16,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"forceReload": true, "forceReload": true,
"contributes": { "contributes": {
"resourceDeploymentTypes": [ "resourceDeploymentTypes": [

View File

@@ -2,7 +2,7 @@
"name": "azcli", "name": "azcli",
"displayName": "%azcli.arc.displayName%", "displayName": "%azcli.arc.displayName%",
"description": "%azcli.arc.description%", "description": "%azcli.arc.description%",
"version": "0.1.0", "version": "0.1.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -18,6 +18,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionDependencies": [ "extensionDependencies": [
"microsoft.resource-deployment" "microsoft.resource-deployment"
], ],

View File

@@ -18,6 +18,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": { "contributes": {
"resourceViewResources": [ "resourceViewResources": [
{ {

View File

@@ -15,6 +15,12 @@
"activationEvents": [ "activationEvents": [
"*" "*"
], ],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"

View File

@@ -1,7 +1,7 @@
{ {
"name": "azuremonitor", "name": "azuremonitor",
"description": "%azuremonitor.description%", "description": "%azuremonitor.description%",
"version": "0.1.8", "version": "0.1.9",
"publisher": "Microsoft", "publisher": "Microsoft",
"aiKey": "AIF-444c3af9-8e69-4462-ab49-4191e6ad1916", "aiKey": "AIF-444c3af9-8e69-4462-ab49-4191e6ad1916",
"activationEvents": [ "activationEvents": [
@@ -16,6 +16,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"typings": "./src/azuremonitor", "typings": "./src/azuremonitor",
"contributes": { "contributes": {
"connectionProvider": { "connectionProvider": {

View File

@@ -11,6 +11,12 @@
"scripts": { "scripts": {
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json" "update-grammar": "node ../node_modules/vscode-grammar-updater/bin mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": { "contributes": {
"languages": [ "languages": [
{ {

View File

@@ -2,7 +2,7 @@
"name": "big-data-cluster", "name": "big-data-cluster",
"displayName": "%text.sqlServerBigDataClusters%", "displayName": "%text.sqlServerBigDataClusters%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -27,6 +27,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"main": "./out/extension", "main": "./out/extension",
"contributes": { "contributes": {
"dataExplorer": { "dataExplorer": {

View File

@@ -2,7 +2,7 @@
"name": "cms", "name": "cms",
"displayName": "%cms.displayName%", "displayName": "%cms.displayName%",
"description": "%cms.description%", "description": "%cms.description%",
"version": "0.9.1", "version": "0.9.2",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -22,6 +22,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"main": "./out/extension", "main": "./out/extension",
"contributes": { "contributes": {
"configuration": { "configuration": {

View File

@@ -2,7 +2,7 @@
"name": "dacpac", "name": "dacpac",
"displayName": "SQL Server Dacpac", "displayName": "SQL Server Dacpac",
"description": "SQL Server Dacpac for Azure Data Studio.", "description": "SQL Server Dacpac for Azure Data Studio.",
"version": "1.9.1", "version": "1.9.2",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": false, "preview": false,
"engines": { "engines": {
@@ -20,6 +20,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionDependencies": [ "extensionDependencies": [
"Microsoft.mssql" "Microsoft.mssql"
], ],

View File

@@ -1,8 +1,8 @@
{ {
"name": "data-workspace", "name": "data-workspace",
"displayName": "%extension-displayName%", "displayName": "Data Workspace",
"description": "%extension-description%", "description": "Additional common functionality for database projects",
"version": "0.1.0", "version": "0.1.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -20,6 +20,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionDependencies": [], "extensionDependencies": [],
"contributes": { "contributes": {
"configuration": [ "configuration": [

View File

@@ -1,6 +1,4 @@
{ {
"extension-displayName": "Data workspace",
"extension-description": "Data workspace",
"data-workspace-view-container-name": "Projects", "data-workspace-view-container-name": "Projects",
"main-view-name": "Projects", "main-view-name": "Projects",
"new-command": "New", "new-command": "New",

View File

@@ -1,5 +1,6 @@
{ {
"name": "data-workspace-vscode", "name": "data-workspace-vscode",
"publisher": "ms-mssql",
"extensionDependencies": [ "extensionDependencies": [
"ms-mssql.mssql" "ms-mssql.mssql"
] ]

View File

@@ -8,7 +8,7 @@ declare module 'dataworkspace' {
import * as vscode from 'vscode'; import * as vscode from 'vscode';
export const enum extension { export const enum extension {
name = 'Microsoft.data-workspace', name = 'Microsoft.data-workspace',
vscodeName = 'Microsoft.data-workspace-vscode' vscodeName = 'ms-mssql.data-workspace-vscode'
} }
/** /**

View File

@@ -2,7 +2,7 @@
"name": "import", "name": "import",
"displayName": "SQL Server Import", "displayName": "SQL Server Import",
"description": "SQL Server Import for Azure Data Studio supports importing CSV or JSON files into SQL Server.", "description": "SQL Server Import for Azure Data Studio supports importing CSV or JSON files into SQL Server.",
"version": "1.5.0", "version": "1.5.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"engines": { "engines": {
@@ -20,6 +20,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionDependencies": [ "extensionDependencies": [
"Microsoft.mssql" "Microsoft.mssql"
], ],

View File

@@ -1,6 +1,6 @@
{ {
"name": "kusto", "name": "kusto",
"version": "0.5.7", "version": "0.5.8",
"publisher": "Microsoft", "publisher": "Microsoft",
"aiKey": "AIF-444c3af9-8e69-4462-ab49-4191e6ad1916", "aiKey": "AIF-444c3af9-8e69-4462-ab49-4191e6ad1916",
"activationEvents": [ "activationEvents": [
@@ -20,6 +20,12 @@
"compile": "gulp compile-extension:kusto-client", "compile": "gulp compile-extension:kusto-client",
"update-grammar": "node ../../build/npm/update-grammar.js Microsoft/vscode-kusto ./syntaxes/kusto.tmLanguage" "update-grammar": "node ../../build/npm/update-grammar.js Microsoft/vscode-kusto ./syntaxes/kusto.tmLanguage"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": { "contributes": {
"commands": [ "commands": [
{ {

View File

@@ -2,7 +2,7 @@
"name": "machine-learning", "name": "machine-learning",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "0.12.0", "version": "0.12.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"engines": { "engines": {
@@ -23,6 +23,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionDependencies": [ "extensionDependencies": [
"Microsoft.mssql", "Microsoft.mssql",
"Microsoft.notebook" "Microsoft.notebook"

View File

@@ -19,6 +19,12 @@
"update-grammar": "node ../../build/npm/update-grammar.js Microsoft/vscode-mssql syntaxes/SQL.plist ./syntaxes/sql.tmLanguage.json", "update-grammar": "node ../../build/npm/update-grammar.js Microsoft/vscode-mssql syntaxes/SQL.plist ./syntaxes/sql.tmLanguage.json",
"postinstall": "node ./build/postinstall.js" "postinstall": "node ./build/postinstall.js"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": { "contributes": {
"problemMatchers": [ "problemMatchers": [
{ {

View File

@@ -13,6 +13,12 @@
"activationEvents": [ "activationEvents": [
"*" "*"
], ],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": { "contributes": {
"configuration": { "configuration": {
"type": "object", "type": "object",

View File

@@ -2,7 +2,7 @@
"name": "profiler", "name": "profiler",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "0.12.1", "version": "0.12.2",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -25,6 +25,12 @@
"extensionDependencies": [ "extensionDependencies": [
"Microsoft.mssql" "Microsoft.mssql"
], ],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": { "contributes": {
"commands": [ "commands": [
{ {

View File

@@ -2,7 +2,7 @@
"name": "query-history", "name": "query-history",
"displayName": "%queryHistory.displayName%", "displayName": "%queryHistory.displayName%",
"description": "%queryHistory.description%", "description": "%queryHistory.description%",
"version": "0.2.0", "version": "0.2.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -20,6 +20,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionDependencies": [], "extensionDependencies": [],
"contributes": { "contributes": {
"commands": [ "commands": [

View File

@@ -2,7 +2,7 @@
"name": "resource-deployment", "name": "resource-deployment",
"displayName": "%extension-displayName%", "displayName": "%extension-displayName%",
"description": "%extension-description%", "description": "%extension-description%",
"version": "0.0.1", "version": "0.0.2",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -21,6 +21,12 @@
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"extensionDependencies": [ "extensionDependencies": [
"microsoft.mssql", "microsoft.mssql",
"microsoft.notebook" "microsoft.notebook"

View File

@@ -2,7 +2,7 @@
"name": "schema-compare", "name": "schema-compare",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.12.0", "version": "1.12.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": false, "preview": false,
"engines": { "engines": {
@@ -23,6 +23,12 @@
"extensionDependencies": [ "extensionDependencies": [
"Microsoft.mssql" "Microsoft.mssql"
], ],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": { "contributes": {
"commands": [ "commands": [
{ {

View File

@@ -2,7 +2,7 @@
"name": "server-report", "name": "server-report",
"displayName": "Server Reports", "displayName": "Server Reports",
"description": "Server Reports", "description": "Server Reports",
"version": "0.2.4", "version": "0.2.5",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"engines": { "engines": {
@@ -19,6 +19,12 @@
"*" "*"
], ],
"main": "./out/extension", "main": "./out/extension",
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"forceReload": true, "forceReload": true,
"contributes": { "contributes": {
"commands": [ "commands": [

View File

@@ -2,7 +2,7 @@
"name": "sql-assessment", "name": "sql-assessment",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "0.6.1", "version": "0.6.2",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -15,6 +15,12 @@
"activationEvents": [ "activationEvents": [
"onDashboardOpen" "onDashboardOpen"
], ],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"main": "./out/main", "main": "./out/main",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -1,8 +1,8 @@
{ {
"name": "sql-database-projects", "name": "sql-database-projects",
"displayName": "SQL Database Projects", "displayName": "SQL Database Projects",
"description": "The SQL Database Projects extension for Azure Data Studio and VS Code allows users to develop and publish database schemas.", "description": "Allows users to develop and publish database schemas for MSSQL Databases",
"version": "0.13.0", "version": "0.13.1",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"engines": { "engines": {
@@ -29,6 +29,12 @@
"Microsoft.mssql", "Microsoft.mssql",
"Microsoft.schema-compare" "Microsoft.schema-compare"
], ],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": { "contributes": {
"projects": [ "projects": [
"sqlproj" "sqlproj"

View File

@@ -1,7 +1,8 @@
{ {
"name": "sql-database-projects-vscode", "name": "sql-database-projects-vscode",
"publisher": "ms-mssql",
"extensionDependencies": [ "extensionDependencies": [
"ms-mssql.mssql", "ms-mssql.mssql",
"Microsoft.data-workspace-vscode" "ms-mssql.data-workspace-vscode"
] ]
} }

View File

@@ -7,7 +7,7 @@ declare module 'sqldbproj' {
import * as vscode from 'vscode'; import * as vscode from 'vscode';
export const enum extension { export const enum extension {
name = 'Microsoft.sql-database-projects', name = 'Microsoft.sql-database-projects',
vsCodeName = 'Microsoft.sql-database-projects-vscode' vsCodeName = 'ms-mssql.sql-database-projects-vscode'
} }
/** /**

View File

@@ -2,7 +2,7 @@
"name": "sql-migration", "name": "sql-migration",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "0.1.9", "version": "0.1.10",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
@@ -19,6 +19,12 @@
"onCommand:sqlmigration.sendfeedback", "onCommand:sqlmigration.sendfeedback",
"onCommand:sqlmigration.openNotebooks" "onCommand:sqlmigration.openNotebooks"
], ],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"main": "./out/main", "main": "./out/main",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -1,6 +1,6 @@
{ {
"name": "azuredatastudio", "name": "azuredatastudio",
"version": "1.33.0", "version": "1.33.1",
"distro": "e39d1a2d41862fb0f5b4e8fc0886680e32ea5e27", "distro": "e39d1a2d41862fb0f5b4e8fc0886680e32ea5e27",
"author": { "author": {
"name": "Microsoft Corporation" "name": "Microsoft Corporation"
@@ -77,7 +77,7 @@
"chokidar": "3.5.2", "chokidar": "3.5.2",
"graceful-fs": "4.2.6", "graceful-fs": "4.2.6",
"gridstack": "^3.1.3", "gridstack": "^3.1.3",
"html-query-plan": "git://github.com/kburtram/html-query-plan.git#2.6", "kburtram-query-plan": "2.6.1",
"html-to-image": "^1.6.2", "html-to-image": "^1.6.2",
"http-proxy-agent": "^2.1.0", "http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.3", "https-proxy-agent": "^2.2.3",

View File

@@ -19,7 +19,7 @@
"cookie": "^0.4.0", "cookie": "^0.4.0",
"graceful-fs": "4.2.6", "graceful-fs": "4.2.6",
"gridstack": "^3.1.3", "gridstack": "^3.1.3",
"html-query-plan": "git://github.com/kburtram/html-query-plan.git#2.6", "kburtram-query-plan": "2.6.1",
"html-to-image": "^1.6.2", "html-to-image": "^1.6.2",
"http-proxy-agent": "^2.1.0", "http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.3", "https-proxy-agent": "^2.2.3",

View File

@@ -15,7 +15,7 @@
"ansi_up": "^3.0.0", "ansi_up": "^3.0.0",
"chart.js": "^2.9.4", "chart.js": "^2.9.4",
"gridstack": "^3.1.3", "gridstack": "^3.1.3",
"html-query-plan": "git://github.com/kburtram/html-query-plan.git#2.6", "kburtram-query-plan": "2.6.1",
"html-to-image": "^1.6.2", "html-to-image": "^1.6.2",
"iconv-lite-umd": "0.6.8", "iconv-lite-umd": "0.6.8",
"jquery": "3.5.0", "jquery": "3.5.0",

View File

@@ -176,10 +176,6 @@ has-flag@^3.0.0:
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
"html-query-plan@git://github.com/kburtram/html-query-plan.git#2.6":
version "2.5.0"
resolved "git://github.com/kburtram/html-query-plan.git#c524feb824e4960897ad875a37af068376a2b4a3"
html-to-image@^1.6.2: html-to-image@^1.6.2:
version "1.7.0" version "1.7.0"
resolved "https://registry.yarnpkg.com/html-to-image/-/html-to-image-1.7.0.tgz#4ca93bb90c0b9392edaafbfd5d94e8f0d666e18b" resolved "https://registry.yarnpkg.com/html-to-image/-/html-to-image-1.7.0.tgz#4ca93bb90c0b9392edaafbfd5d94e8f0d666e18b"
@@ -217,6 +213,11 @@ jschardet@3.0.0:
resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-3.0.0.tgz#898d2332e45ebabbdb6bf2feece9feea9a99e882" resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-3.0.0.tgz#898d2332e45ebabbdb6bf2feece9feea9a99e882"
integrity sha512-lJH6tJ77V8Nzd5QWRkFYCLc13a3vADkh3r/Fi8HupZGWk2OVVDfnZP8V/VgQgZ+lzW0kG2UGb5hFgt3V3ndotQ== integrity sha512-lJH6tJ77V8Nzd5QWRkFYCLc13a3vADkh3r/Fi8HupZGWk2OVVDfnZP8V/VgQgZ+lzW0kG2UGb5hFgt3V3ndotQ==
kburtram-query-plan@2.6.1:
version "2.6.1"
resolved "https://registry.yarnpkg.com/kburtram-query-plan/-/kburtram-query-plan-2.6.1.tgz#6b86128ec30c53694b53c4ee0e32d64350eb0c2c"
integrity sha512-7Brjwp0YOCGug1cmfvcG8s1kN4MOwiLgOmKWS0+QSq5qCH9Bcv78vKAI7Pq1Ro6rTbpiTIRITsFKYrF4XTVlQw==
lodash.clonedeep@^4.5.0: lodash.clonedeep@^4.5.0:
version "4.5.0" version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"

View File

@@ -393,10 +393,6 @@ has-flag@^3.0.0:
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
"html-query-plan@git://github.com/kburtram/html-query-plan.git#2.6":
version "2.5.0"
resolved "git://github.com/kburtram/html-query-plan.git#c524feb824e4960897ad875a37af068376a2b4a3"
html-to-image@^1.6.2: html-to-image@^1.6.2:
version "1.7.0" version "1.7.0"
resolved "https://registry.yarnpkg.com/html-to-image/-/html-to-image-1.7.0.tgz#4ca93bb90c0b9392edaafbfd5d94e8f0d666e18b" resolved "https://registry.yarnpkg.com/html-to-image/-/html-to-image-1.7.0.tgz#4ca93bb90c0b9392edaafbfd5d94e8f0d666e18b"
@@ -516,6 +512,11 @@ jsonfile@^4.0.0:
optionalDependencies: optionalDependencies:
graceful-fs "^4.1.6" graceful-fs "^4.1.6"
kburtram-query-plan@2.6.1:
version "2.6.1"
resolved "https://registry.yarnpkg.com/kburtram-query-plan/-/kburtram-query-plan-2.6.1.tgz#6b86128ec30c53694b53c4ee0e32d64350eb0c2c"
integrity sha512-7Brjwp0YOCGug1cmfvcG8s1kN4MOwiLgOmKWS0+QSq5qCH9Bcv78vKAI7Pq1Ro6rTbpiTIRITsFKYrF4XTVlQw==
lodash.clonedeep@^4.5.0: lodash.clonedeep@^4.5.0:
version "4.5.0" version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"

View File

@@ -509,7 +509,9 @@ export class TextCellComponent extends CellView implements OnInit, OnChanges {
// Move cursor to the richTextCursorPosition // Move cursor to the richTextCursorPosition
// We iterate through the output element childnodes to get to the element of cursor location // We iterate through the output element childnodes to get to the element of cursor location
// If the elements exist, we set the selection, else the cursor defaults to beginning. // If the elements exist, we set the selection, else the cursor defaults to beginning.
if (!this.markdownMode && this.cellModel.richTextCursorPosition) { // Only do this if the cell is active so we don't steal the window selection from another cell
// since this function is called whenever any cell in the Notebook changes, not just ourself
if (this.isActive() && !this.markdownMode && this.cellModel.richTextCursorPosition) {
let selection = window.getSelection(); let selection = window.getSelection();
let htmlNodes = this.cellModel.richTextCursorPosition.startElementNodes; let htmlNodes = this.cellModel.richTextCursorPosition.startElementNodes;
let depthToNode = htmlNodes.length; let depthToNode = htmlNodes.length;

View File

@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/ *--------------------------------------------------------------------------------------------*/
import 'vs/css!./media/qp'; import 'vs/css!./media/qp';
import * as QP from 'html-query-plan'; import * as QP from 'kburtram-query-plan';
import { IPanelView, IPanelTab } from 'sql/base/browser/ui/panel/panel'; import { IPanelView, IPanelTab } from 'sql/base/browser/ui/panel/panel';

View File

@@ -59,7 +59,7 @@
'angular2-grid': `${window.location.origin}/static/remote/web/node_modules/angular2-grid/bundles/NgGrid.umd.js`, 'angular2-grid': `${window.location.origin}/static/remote/web/node_modules/angular2-grid/bundles/NgGrid.umd.js`,
'angular2-slickgrid': `${window.location.origin}/static/remote/web/node_modules/angular2-slickgrid/out/bundles/angular2-slickgrid.umd.js`, 'angular2-slickgrid': `${window.location.origin}/static/remote/web/node_modules/angular2-slickgrid/out/bundles/angular2-slickgrid.umd.js`,
'chart.js': `${window.location.origin}/static/remote/web/node_modules/chart.js/dist/Chart.bundle.min.js`, 'chart.js': `${window.location.origin}/static/remote/web/node_modules/chart.js/dist/Chart.bundle.min.js`,
'html-query-plan': `${window.location.origin}/static/remote/web/node_modules/html-query-plan/dist/index.min.js`, 'kburtram-query-plan': `${window.location.origin}/static/remote/web/node_modules/kburtram-query-plan/dist/index.min.js`,
'html-to-image': `${window.location.origin}/static/remote/web/node_modules/html-to-image/dist/html-to-image.js`, 'html-to-image': `${window.location.origin}/static/remote/web/node_modules/html-to-image/dist/html-to-image.js`,
'ng2-charts': `${window.location.origin}/static/remote/web/node_modules/ng2-charts/bundles/ng2-charts.umd.js`, 'ng2-charts': `${window.location.origin}/static/remote/web/node_modules/ng2-charts/bundles/ng2-charts.umd.js`,
'rxjs/Observable': `${window.location.origin}/static/remote/web/node_modules/rxjs/bundles/Rx.min.js?0`, 'rxjs/Observable': `${window.location.origin}/static/remote/web/node_modules/rxjs/bundles/Rx.min.js?0`,

View File

@@ -59,7 +59,7 @@
'angular2-grid': `${window.location.origin}/static/node_modules/angular2-grid/bundles/NgGrid.umd.js`, 'angular2-grid': `${window.location.origin}/static/node_modules/angular2-grid/bundles/NgGrid.umd.js`,
'angular2-slickgrid': `${window.location.origin}/static/node_modules/angular2-slickgrid/out/bundles/angular2-slickgrid.umd.js`, 'angular2-slickgrid': `${window.location.origin}/static/node_modules/angular2-slickgrid/out/bundles/angular2-slickgrid.umd.js`,
'chart.js': `${window.location.origin}/static/node_modules/chart.js/dist/Chart.bundle.min.js`, 'chart.js': `${window.location.origin}/static/node_modules/chart.js/dist/Chart.bundle.min.js`,
'html-query-plan': `${window.location.origin}/static/node_modules/html-query-plan/dist/index.min.js`, 'kburtram-query-plan': `${window.location.origin}/static/node_modules/kburtram-query-plan/dist/index.min.js`,
'html-to-image': `${window.location.origin}/static/node_modules/html-to-image/dist/html-to-image.js`, 'html-to-image': `${window.location.origin}/static/node_modules/html-to-image/dist/html-to-image.js`,
'ng2-charts': `${window.location.origin}/static/node_modules/ng2-charts/bundles/ng2-charts.umd.js`, 'ng2-charts': `${window.location.origin}/static/node_modules/ng2-charts/bundles/ng2-charts.umd.js`,
'rxjs/Observable': `${window.location.origin}/static/node_modules/rxjs/bundles/Rx.min.js?0`, 'rxjs/Observable': `${window.location.origin}/static/node_modules/rxjs/bundles/Rx.min.js?0`,

View File

@@ -5321,10 +5321,6 @@ html-escaper@^2.0.0:
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz#71e87f931de3fe09e56661ab9a29aadec707b491" resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz#71e87f931de3fe09e56661ab9a29aadec707b491"
integrity sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig== integrity sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==
"html-query-plan@git://github.com/kburtram/html-query-plan.git#2.6":
version "2.5.0"
resolved "git://github.com/kburtram/html-query-plan.git#c524feb824e4960897ad875a37af068376a2b4a3"
html-to-image@^1.6.2: html-to-image@^1.6.2:
version "1.7.0" version "1.7.0"
resolved "https://registry.yarnpkg.com/html-to-image/-/html-to-image-1.7.0.tgz#4ca93bb90c0b9392edaafbfd5d94e8f0d666e18b" resolved "https://registry.yarnpkg.com/html-to-image/-/html-to-image-1.7.0.tgz#4ca93bb90c0b9392edaafbfd5d94e8f0d666e18b"
@@ -6359,6 +6355,11 @@ just-extend@^4.0.2:
resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.2.1.tgz#ef5e589afb61e5d66b24eca749409a8939a8c744" resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.2.1.tgz#ef5e589afb61e5d66b24eca749409a8939a8c744"
integrity sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg== integrity sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==
kburtram-query-plan@2.6.1:
version "2.6.1"
resolved "https://registry.yarnpkg.com/kburtram-query-plan/-/kburtram-query-plan-2.6.1.tgz#6b86128ec30c53694b53c4ee0e32d64350eb0c2c"
integrity sha512-7Brjwp0YOCGug1cmfvcG8s1kN4MOwiLgOmKWS0+QSq5qCH9Bcv78vKAI7Pq1Ro6rTbpiTIRITsFKYrF4XTVlQw==
keytar@7.2.0: keytar@7.2.0:
version "7.2.0" version "7.2.0"
resolved "https://registry.yarnpkg.com/keytar/-/keytar-7.2.0.tgz#4db2bec4f9700743ffd9eda22eebb658965c8440" resolved "https://registry.yarnpkg.com/keytar/-/keytar-7.2.0.tgz#4db2bec4f9700743ffd9eda22eebb658965c8440"