This commit is contained in:
Paymaun 2022-02-24 11:26:12 -08:00 коммит произвёл GitHub
Родитель 05318f2f1a
Коммит a9be9481b5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 16 добавлений и 8 удалений

Просмотреть файл

@ -2,6 +2,11 @@
All notable changes to the `vscode-dtdl` extension will be documented in this file.
## v1.1.1 pre-release (2022-02-24)
- A new quick fix for `@context` is available if an IoT Central semantic type is used and the Central context is missing.
- Uses `dtdl-language-server` `0.4.6`.
## v1.1.0 pre-release (2022-02-09)
- Support for IoT Central Semantic Types (through increment of `dtdl-language-server` to `0.4.5`).

8
package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "vscode-dtdl",
"version": "1.1.0",
"version": "1.1.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -2360,9 +2360,9 @@
}
},
"dtdl-language-server": {
"version": "0.4.5",
"resolved": "https://registry.npmjs.org/dtdl-language-server/-/dtdl-language-server-0.4.5.tgz",
"integrity": "sha512-+QGLu2D44/qw0A80MivF4YYnlIe6S7SqmQIu9rPIGJCa6M++Vs/esmaNgfcBxpEG9nxNesjbMsdtxyU1Gq7Fow==",
"version": "0.4.6",
"resolved": "https://registry.npmjs.org/dtdl-language-server/-/dtdl-language-server-0.4.6.tgz",
"integrity": "sha512-PZnca1xDyiSsfSmgr+s25UhhlJKWbx912G5GADgmiTFud8FuNVnahJu3en3BXjWK4jA59TiAImUFTjTxszdLug==",
"requires": {
"commander": "^5.0.0",
"jsonc-parser": "^2.2.1",

Просмотреть файл

@ -2,7 +2,7 @@
"name": "vscode-dtdl",
"displayName": "DTDL",
"description": "This extension provides syntax highlighting to read and edit JSON documents using the Digital Twins Definition Language",
"version": "1.1.0",
"version": "1.1.1",
"publisher": "vsciot-vscode",
"aiKey": "[AIKEY PLACEHOLDER]",
"icon": "logo.png",
@ -94,7 +94,7 @@
"webpack-cli": "^4.7.2"
},
"dependencies": {
"dtdl-language-server": "0.4.5",
"dtdl-language-server": "0.4.6",
"fs-extra": "^7.0.1",
"vscode-extension-telemetry": "^0.1.6",
"vscode-languageclient": "^6.1.3"

Просмотреть файл

@ -116,6 +116,9 @@ export function activate(context: vscode.ExtensionContext): void {
);
}
export function deactivate(): void {
client.stop();
export function deactivate(): Thenable<void> | undefined {
if (!client) {
return undefined;
}
return client.stop();
}