Skip to content

Commit

Permalink
chore(vscode): bump vscode extension & tabby-agent version to 1.2.0. (#…
Browse files Browse the repository at this point in the history
…1156)

* chore(vscode): bump vscode extension & tabby-agent version to 1.2.0.

* docs: update README.md for vscode extension.

* fix: lint.
  • Loading branch information
icycodes authored Jan 3, 2024
1 parent a4461b3 commit 20e6211
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
2 changes: 1 addition & 1 deletion clients/intellij/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"devDependencies": {
"cpy-cli": "^4.2.0",
"rimraf": "^5.0.1",
"tabby-agent": "1.2.0-dev"
"tabby-agent": "1.2.0"
}
}
2 changes: 1 addition & 1 deletion clients/tabby-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tabby-agent",
"version": "1.2.0-dev",
"version": "1.2.0",
"description": "Generic client agent for Tabby AI coding assistant IDE extensions.",
"repository": "https://github.com/TabbyML/tabby",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion clients/vim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"devDependencies": {
"cpy-cli": "^4.2.0",
"rimraf": "^5.0.1",
"tabby-agent": "1.2.0-dev"
"tabby-agent": "1.2.0"
}
}
19 changes: 18 additions & 1 deletion clients/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 1.2.0

### Features:

- Added support for setting Tabby server token in VSCode.
- You can still configure the token in the agent config file, but the token set in VSCode will take precedence.
- A notification will now be displayed when the server requires a token.
- Removed support for automatically opening the authentication page and fetching the token when using Tabby Cloud.
- For connecting to Tabby Cloud server, you need to manually set the token instead. The token already in use will still be usable.

### Fixes:

- Corrected invalid online documentation links.
- Fixed a bug that the document context was not fully provided for completion when editing a jupyter notebook file.
- Resolved a bug that resulted in empty log files being generated even when the logging level is set to `silent`.
- Fixed bugs related to the experimental syntax-based post-processing.

## 1.1.3

### Fixes:
Expand All @@ -12,7 +29,7 @@

## 1.1.0

## Features:
### 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.
Expand Down
2 changes: 1 addition & 1 deletion clients/vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Once you have installed the Tabby VSCode extension, you can easily get started b

1. **Setup the Tabby server**: You can build your own self-hosted Tabby server following [this guide](https://tabby.tabbyml.com/docs/installation).
2. **Connect the extension to your Tabby server**: Use the command `Tabby: Specify API Endpoint of Tabby` to connect the extension to your Tabby server.
- **Note**: If your Tabby server requires an authentication token, you can set it in the [config file](https://tabby.tabbyml.com/docs/extensions/configurations). (The web extension does not support setting the authentication token yet.)
- **Note**: If your Tabby server requires an authentication token, a notification will be displayed, and you can set the token by following the prompt. Alternatively, you can set it in the [config file](https://tabby.tabbyml.com/docs/extensions/configurations).

Once the setup is complete, Tabby will automatically provide inline suggestions. You can accept the suggestions by simply pressing the `Tab` key.

Expand Down
4 changes: 2 additions & 2 deletions clients/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"repository": "https://github.com/TabbyML/tabby",
"bugs": "https://github.com/TabbyML/tabby/issues",
"license": "Apache-2.0",
"version": "1.2.0-dev",
"version": "1.2.0",
"keywords": [
"ai",
"autocomplete",
Expand Down Expand Up @@ -229,6 +229,6 @@
},
"dependencies": {
"@xstate/fsm": "^2.0.1",
"tabby-agent": "1.2.0-dev"
"tabby-agent": "1.2.0"
}
}

0 comments on commit 20e6211

Please sign in to comment.