chore(vscode): bump vscode extension & tabby-agent version to 1.1.0. (#835)
parent
ad9dbd55e8
commit
84781ec84a
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue