Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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).
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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"
}
Expand Down
5 changes: 2 additions & 3 deletions src/bezel/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -254,7 +253,7 @@ export class BzlSettings extends Settings<BzlConfiguration> {
enabled: config.get<boolean>('enabled', true),
autoLaunch: config.get<boolean>('autoLaunch', true),
downloadBaseURL: config.get<string>('downloadBaseUrl', 'https://get.bzl.io'),
release: config.get<string>('release', 'v1.3.4'),
release: config.get<string>('release', 'v1.3.16'),
executable: normalize(config.get<string>('executable', '')),
address: address,
command: config.get<string[]>('command', ['serve', '--address=${address}']),
Expand Down