From 84781ec84a4af6bc6b1251e4f33311736c9cfd93 Mon Sep 17 00:00:00 2001 From: Zhiming Ma Date: Sun, 19 Nov 2023 13:34:57 +0800 Subject: [PATCH] chore(vscode): bump vscode extension & tabby-agent version to 1.1.0. (#835) --- clients/intellij/package.json | 2 +- clients/tabby-agent/package.json | 2 +- clients/vim/package.json | 2 +- clients/vscode/CHANGELOG.md | 15 +++++++++++++++ clients/vscode/package.json | 4 ++-- 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/clients/intellij/package.json b/clients/intellij/package.json index e10938b..052c492 100644 --- a/clients/intellij/package.json +++ b/clients/intellij/package.json @@ -10,6 +10,6 @@ "devDependencies": { "cpy-cli": "^4.2.0", "rimraf": "^5.0.1", - "tabby-agent": "1.1.0-dev" + "tabby-agent": "1.1.0" } } diff --git a/clients/tabby-agent/package.json b/clients/tabby-agent/package.json index 9a1d153..3bdd76a 100644 --- a/clients/tabby-agent/package.json +++ b/clients/tabby-agent/package.json @@ -1,6 +1,6 @@ { "name": "tabby-agent", - "version": "1.1.0-dev", + "version": "1.1.0", "description": "Generic client agent for Tabby AI coding assistant IDE extensions.", "repository": "https://github.com/TabbyML/tabby", "main": "./dist/index.js", diff --git a/clients/vim/package.json b/clients/vim/package.json index b49d41f..004bd55 100644 --- a/clients/vim/package.json +++ b/clients/vim/package.json @@ -10,6 +10,6 @@ "devDependencies": { "cpy-cli": "^4.2.0", "rimraf": "^5.0.1", - "tabby-agent": "1.1.0-dev" + "tabby-agent": "1.1.0" } } diff --git a/clients/vscode/CHANGELOG.md b/clients/vscode/CHANGELOG.md index 4750425..e03edb3 100644 --- a/clients/vscode/CHANGELOG.md +++ b/clients/vscode/CHANGELOG.md @@ -1,3 +1,18 @@ +## 1.1.0 + +## Features: + +- Added notification with error messages when the connection to the server fails. +- Added a loading status indicator when fetching completions in automatic trigger mode. +- Added a command to display useful online help links, including online documentation, the Tabby Slack community, and the GitHub repository. +- Added an option to mute warning messages for the slow completion response time. +- Updated the config.toml file to include new configuration options, `server.auth` and `completion.timeout`. +- Added experimental features aimed at fine-tuning completion quality. These features are disabled by default but can be enabled by setting the corresponding config flag to `true` in the `config.toml` file, include: + - `completion.prompt.experimentalStripAutoClosingCharacters`: Strip auto-closing brackets and quotes in prompt suffix, to generate more lines in FIM mode. + - `postprocess.limitScope.indentation.experimentalKeepBlockScopeWhenCompletingLine`: Use the block scope instead of line scope when using indentation to limit the completion scope and the completion is continuing the current line. + - `postprocess.limitScope.experimentalSyntax`: Use syntax parser to limit the completion scope. + - `postprocess.calculateReplaceRange.experimentalSyntax`: Use syntax parser to calculate the completion replace range, to avoid duplicated auto-closing brackets and quotes. + ## 1.0.0 ### Changes: diff --git a/clients/vscode/package.json b/clients/vscode/package.json index 716582f..0fcc77a 100644 --- a/clients/vscode/package.json +++ b/clients/vscode/package.json @@ -7,7 +7,7 @@ "repository": "https://github.com/TabbyML/tabby", "bugs": "https://github.com/TabbyML/tabby/issues", "license": "Apache-2.0", - "version": "1.1.0-dev", + "version": "1.1.0", "keywords": [ "ai", "autocomplete", @@ -226,6 +226,6 @@ }, "dependencies": { "@xstate/fsm": "^2.0.1", - "tabby-agent": "1.1.0-dev" + "tabby-agent": "1.1.0" } }