From 53678b5088dfb6c1716d7ece95eded4ce475270d Mon Sep 17 00:00:00 2001 From: Paul Cody Johnston Date: Tue, 7 Dec 2021 22:41:58 +0000 Subject: [PATCH] Bump 1.8.2 (#94) --- CHANGELOG.md | 11 +++++++++-- package.json | 6 +++--- src/bezel/configuration.ts | 5 ++--- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0555ae41..5762556b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log -## 1.8.1 (Dev 03 2021) +## 1.8.2 (Dec 07 2021) + +- Bump bzl to 1.3.16 + - Signature Help. + - Fix completion when prompted via ctrl+space. + - Windows path bugfixes for rule definition location. + +## 1.8.1 (Dec 03 2021) - Move documentation to https://docs.stack.build - Default UI port is now :8085 @@ -10,7 +17,7 @@ - Add component documentation tree items. - Bump bzl to 1.3.4 (doc link updates) -## 1.8.0 (Dev 01 2021) +## 1.8.0 (Dec 01 2021) - Improve authentication from bzl.io. - Enable advanced LSP features (via bump bzl 1.3.3). diff --git a/package.json b/package.json index f1798093..4ae9e5c8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "bazel-stack-vscode", "displayName": "bazel-stack-vscode", "description": "Bazel Support for Visual Studio Code", - "version": "1.8.1", + "version": "1.8.2", "publisher": "StackBuild", "license": "Apache-2.0", "icon": "stackb-full.png", @@ -234,7 +234,7 @@ }, "bsv.bzl.server.release": { "type": "string", - "default": "v1.3.4", + "default": "v1.3.16", "description": "Bzl release version" }, "bsv.bzl.server.command": { @@ -670,7 +670,7 @@ "bazel-explorer": [ { "id": "bsv.workspace", - "name": "Stack VSCode v1.8.1", + "name": "Stack VSCode v1.8.2", "icon": "media/bazel-wireframe.svg", "contextualTitle": "Current Bazel Workspace" } diff --git a/src/bezel/configuration.ts b/src/bezel/configuration.ts index 4c1d14f5..1c049870 100644 --- a/src/bezel/configuration.ts +++ b/src/bezel/configuration.ts @@ -8,8 +8,7 @@ import { Settings } from './settings'; import { ProtoGrpcType as BzlProtoType } from '../proto/bzl'; import { ProtoGrpcType as CodesearchProtoType } from '../proto/codesearch'; import { getGRPCCredentials, loadBzlProtos, loadCodesearchProtos } from './proto'; -import { Container } from '../container'; -import { ConfigurationContext, ConfigurationPropertyMap } from '../common'; +import { ConfigurationContext } from '../common'; /** * Configuration for a generic component. @@ -254,7 +253,7 @@ export class BzlSettings extends Settings { enabled: config.get('enabled', true), autoLaunch: config.get('autoLaunch', true), downloadBaseURL: config.get('downloadBaseUrl', 'https://get.bzl.io'), - release: config.get('release', 'v1.3.4'), + release: config.get('release', 'v1.3.16'), executable: normalize(config.get('executable', '')), address: address, command: config.get('command', ['serve', '--address=${address}']),