Skip to content

Commit 42cfb36

Browse files
authored
Merge pull request #5361 from dotty-staging/vscode-dotty-0.1.8
Fix LSP telemetry unique machine ID, release vscode-dotty 0.1.8
2 parents bf1cca7 + 7d9ebfc commit 42cfb36

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,7 @@ object Build {
987987
settings(commonSettings).
988988
settings(
989989
EclipseKeys.skipProject := true,
990-
version := "0.1.8-snapshot", // Keep in sync with package.json
990+
version := "0.1.9-snapshot", // Keep in sync with package.json
991991
autoScalaLibrary := false,
992992
publishArtifact := false,
993993
includeFilter in unmanagedSources := NothingFilter | "*.ts" | "**.json",

vscode-dotty/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode-dotty/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dotty",
33
"displayName": "Dotty Language Server",
44
"description": "IDE integration for Dotty, the experimental Scala compiler",
5-
"version": "0.1.8-snapshot",
5+
"version": "0.1.9-snapshot",
66
"license": "BSD-3-Clause",
77
"publisher": "lampepfl",
88
"repository": {

vscode-dotty/src/tracer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class Tracer {
4545
this.maximumMessageSize = maximumMessageSize === undefined || maximumMessageSize < 0 ? 0 : maximumMessageSize | 0
4646

4747
this.machineId = (() => {
48-
const machineIdKey = 'tracing.machineId'
48+
const machineIdKey = 'trace.machineId'
4949
function persisted(value: string): string {
5050
ctx.extensionConfig.update(machineIdKey, value, vscode.ConfigurationTarget.Global)
5151
return value

0 commit comments

Comments
 (0)