fix(agent): Hotfix 1.1.1. Fix agent completion stats initialization error. (#844)

* fix(agent): fix completion stats initialization error.

* fix(agent): Hotfix 1.1.1. Fix agent completion stats initialization error.

* fix: fix changelog format.
release-fix-intellij-update-support-version-range
Zhiming Ma 2023-11-20 12:11:03 +08:00 committed by GitHub
parent 8654116126
commit 1583e76994
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 84 additions and 66 deletions

View File

@ -1,3 +1,9 @@
## 1.1.1
### Fixes:
- Fix a bug cause the completion does not show up if the completion cache is missing.
## 1.1.0
### Features:

View File

@ -6,7 +6,7 @@ plugins {
}
group = "com.tabbyml"
version = "1.1.0"
version = "1.1.1"
repositories {
mavenCentral()

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "intellij-tabby",
"version": "1.1.0",
"version": "1.1.1",
"description": "IntelliJ plugin for Tabby AI coding assistant.",
"repository": "https://github.com/TabbyML/tabby",
"scripts": {
@ -10,6 +10,6 @@
"devDependencies": {
"cpy-cli": "^4.2.0",
"rimraf": "^5.0.1",
"tabby-agent": "1.1.0"
"tabby-agent": "1.1.1"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "tabby-agent",
"version": "1.1.0",
"version": "1.1.1",
"description": "Generic client agent for Tabby AI coding assistant IDE extensions.",
"repository": "https://github.com/TabbyML/tabby",
"main": "./dist/index.js",

View File

@ -83,7 +83,7 @@ export class CompletionProviderStats {
private completionRequestCanceledStats = new Average();
private completionRequestTimeoutCount = 0;
private recentCompletionRequestLatencies: Windowed;
private recentCompletionRequestLatencies: Windowed = new Windowed(this.config.windowSize);
updateConfigByRequestTimeout(timeout: number) {
this.config.checks.healthy.latency = timeout * 0.6;

View File

@ -1,3 +1,9 @@
## 1.1.1
### Fixes:
- Fix a bug cause the completion does not show up if the completion cache is missing.
## 1.1.0
### Features:

View File

@ -50,5 +50,5 @@ function! tabby#globals#Load()
" Version of Tabby plugin. Not configurable.
let g:tabby_version = "1.1.0"
let g:tabby_version = "1.1.1"
endfunction

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "vim-tabby",
"version": "1.1.0",
"version": "1.1.1",
"description": "Vim plugin for Tabby AI coding assistant.",
"repository": "https://github.com/TabbyML/tabby",
"scripts": {
@ -10,6 +10,6 @@
"devDependencies": {
"cpy-cli": "^4.2.0",
"rimraf": "^5.0.1",
"tabby-agent": "1.1.0"
"tabby-agent": "1.1.1"
}
}

View File

@ -1,3 +1,9 @@
## 1.1.2
### Fixes:
- Fix a bug cause the completion does not show up if the completion cache is missing.
## 1.1.0
## Features:

View File

@ -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",
"version": "1.1.2",
"keywords": [
"ai",
"autocomplete",
@ -226,6 +226,6 @@
},
"dependencies": {
"@xstate/fsm": "^2.0.1",
"tabby-agent": "1.1.0"
"tabby-agent": "1.1.1"
}
}