diff --git a/CHANGELOG.md b/CHANGELOG.md index beb8ef0..b45c385 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Change Log +## [1.4.8] +Updates/enhancements: +- Update LSP: https://github.com/forcedotcom/salesforcedx-slds-lsp/releases/tag/v0.0.13 + ## [1.4.7] Updates/enhancements: - Enable suppression of SLDS warnings in HTML files for mobile via Quick Fix actions. Any HTML content that is between `` and `` will now be exempt from SLDS validation. Furthermore `` will exempt the next immediate line from SLDS validation. By adding a `` at the top of an HTML file with no `` anywhere else in that file, you can exempt the entire content of the file from SLDS validation. - New preference flag for SLDS Validator extension. Now using `Salesforce-vscode-slds > Basic : Mobile Validation` flag you can globally enable or disable SLDS validation for mobile. - Update LSP: https://github.com/forcedotcom/salesforcedx-slds-lsp/releases/tag/v0.0.12 + ## [1.4.6] - Update LSP: https://github.com/forcedotcom/salesforcedx-slds-lsp/releases/tag/v0.0.11 diff --git a/client/src/sldsLanguageClient.ts b/client/src/sldsLanguageClient.ts index af25be1..bf7573f 100644 --- a/client/src/sldsLanguageClient.ts +++ b/client/src/sldsLanguageClient.ts @@ -165,7 +165,7 @@ function createServerPromise(context: ExtensionContext, outputChannel: OutputCha } args.push('-jar'); - args.push(path.resolve(context.extensionPath, 'lsp-0.0.12-executable.jar')); + args.push(path.resolve(context.extensionPath, 'lsp-0.0.13-executable.jar')); args.push(`--PORT=${port.toString()}`); let process = child_process.spawn(javaExecutablePath, args, options); diff --git a/lsp-0.0.12-executable.jar b/lsp-0.0.13-executable.jar similarity index 95% rename from lsp-0.0.12-executable.jar rename to lsp-0.0.13-executable.jar index 8816166..cda2879 100644 Binary files a/lsp-0.0.12-executable.jar and b/lsp-0.0.13-executable.jar differ diff --git a/package-lock.json b/package-lock.json index 02d2e05..8ae3273 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "salesforce-vscode-slds", - "version": "1.4.7", + "version": "1.4.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "salesforce-vscode-slds", - "version": "1.4.7", + "version": "1.4.8", "hasInstallScript": true, "devDependencies": { "@salesforce/dev-config": "1.5.0", diff --git a/package.json b/package.json index 2c81550..d0ec4b3 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "SLDS Validator", "publisher": "salesforce", "description": "Salesforce Lightning Design System", - "version": "1.4.7", + "version": "1.4.8", "aiKey": "7344b284-73e5-420e-b680-73333da3e067", "icon": "images/slds-icon.png", "preview": true,