Skip to content

Commit 53678b5

Browse files
authored
Bump 1.8.2 (#94)
1 parent 248bb3f commit 53678b5

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22

3-
## 1.8.1 (Dev 03 2021)
3+
## 1.8.2 (Dec 07 2021)
4+
5+
- Bump bzl to 1.3.16
6+
- Signature Help.
7+
- Fix completion when prompted via ctrl+space.
8+
- Windows path bugfixes for rule definition location.
9+
10+
## 1.8.1 (Dec 03 2021)
411

512
- Move documentation to https://docs.stack.build
613
- Default UI port is now :8085
@@ -10,7 +17,7 @@
1017
- Add component documentation tree items.
1118
- Bump bzl to 1.3.4 (doc link updates)
1219

13-
## 1.8.0 (Dev 01 2021)
20+
## 1.8.0 (Dec 01 2021)
1421

1522
- Improve authentication from bzl.io.
1623
- Enable advanced LSP features (via bump bzl 1.3.3).

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bazel-stack-vscode",
33
"displayName": "bazel-stack-vscode",
44
"description": "Bazel Support for Visual Studio Code",
5-
"version": "1.8.1",
5+
"version": "1.8.2",
66
"publisher": "StackBuild",
77
"license": "Apache-2.0",
88
"icon": "stackb-full.png",
@@ -234,7 +234,7 @@
234234
},
235235
"bsv.bzl.server.release": {
236236
"type": "string",
237-
"default": "v1.3.4",
237+
"default": "v1.3.16",
238238
"description": "Bzl release version"
239239
},
240240
"bsv.bzl.server.command": {
@@ -670,7 +670,7 @@
670670
"bazel-explorer": [
671671
{
672672
"id": "bsv.workspace",
673-
"name": "Stack VSCode v1.8.1",
673+
"name": "Stack VSCode v1.8.2",
674674
"icon": "media/bazel-wireframe.svg",
675675
"contextualTitle": "Current Bazel Workspace"
676676
}

src/bezel/configuration.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import { Settings } from './settings';
88
import { ProtoGrpcType as BzlProtoType } from '../proto/bzl';
99
import { ProtoGrpcType as CodesearchProtoType } from '../proto/codesearch';
1010
import { getGRPCCredentials, loadBzlProtos, loadCodesearchProtos } from './proto';
11-
import { Container } from '../container';
12-
import { ConfigurationContext, ConfigurationPropertyMap } from '../common';
11+
import { ConfigurationContext } from '../common';
1312

1413
/**
1514
* Configuration for a generic component.
@@ -254,7 +253,7 @@ export class BzlSettings extends Settings<BzlConfiguration> {
254253
enabled: config.get<boolean>('enabled', true),
255254
autoLaunch: config.get<boolean>('autoLaunch', true),
256255
downloadBaseURL: config.get<string>('downloadBaseUrl', 'https://get.bzl.io'),
257-
release: config.get<string>('release', 'v1.3.4'),
256+
release: config.get<string>('release', 'v1.3.16'),
258257
executable: normalize(config.get<string>('executable', '')),
259258
address: address,
260259
command: config.get<string[]>('command', ['serve', '--address=${address}']),

0 commit comments

Comments
 (0)