Skip to content

Commit

Permalink
Merge branch 'main' into feat-at-function-vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
Sma1lboy committed Jan 6, 2025
2 parents 09f7f30 + d8e9807 commit 872d8b1
Show file tree
Hide file tree
Showing 401 changed files with 5,478 additions and 3,806 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kind: Fixed and Improvements
body: Backup database only when there's pending schema migrations
time: 2024-12-26T20:23:37.914517+08:00
15 changes: 15 additions & 0 deletions .changes/v0.22.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## v0.22.0 (2024-12-23)

### Features

* Introduce notification inbox on homepage and license expiration check. ([#3541](https://github.com/TabbyML/tabby/pull/3541)) ([#3566](https://github.com/TabbyML/tabby/pull/3566))
* Display author information for issues / pull requests in Answer Engine context card ([#3513](https://github.com/TabbyML/tabby/pull/3513))

### Fixed and Improvements

* Refactors the pull request indexing process to enhance the speed of incremental indexing for pull docs. ([#3538](https://github.com/TabbyML/tabby/pull/3538))
* Optimize the rate limiter on the HTTP-powered model backend to reduce errors. ([#3567](https://github.com/TabbyML/tabby/pull/3567))
* Introduce rate limiting at 60 requests per minute in the tabby-webserver. ([#3484](https://github.com/TabbyML/tabby/pull/3484))
* Validate model capability prior to download. ([#3565](https://github.com/TabbyML/tabby/pull/3565))
* Fix broken tree view on Windows in CodeBrowser. ([#3528](https://github.com/TabbyML/tabby/pull/3528))
* Upgrade all Tabby Linux base images to manylinux_2_28. ([#3536](https://github.com/TabbyML/tabby/pull/3536))
15 changes: 2 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,23 +345,12 @@ jobs:
- name: Display structure of created files
run: ls -R dist

- name: Determine is stable release
run: |
if [[ ${{ github.ref_name }} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "STABLE_RELEASE=true" >> $GITHUB_ENV
else
echo "STABLE_RELEASE=false" >> $GITHUB_ENV
fi
- name: Check if stable release
run: echo "Stable Release is ${{ env.STABLE_RELEASE }}"

- uses: ncipollo/release-action@v1
if: github.event_name == 'push'
with:
allowUpdates: true
prerelease: ${{ env.STABLE_RELEASE == 'false' }}
makeLatest: ${{ env.STABLE_RELEASE == 'true' }}
prerelease: true
makeLatest: false
artifacts: "dist/tabby_*.zip,dist/tabby_*.tar.gz"
tag: ${{ github.ref_name }}
removeArtifacts: true
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).

## v0.22.0 (2024-12-23)

### Features

* Introduce notification inbox on homepage and license expiration check. ([#3541](https://github.com/TabbyML/tabby/pull/3541)) ([#3566](https://github.com/TabbyML/tabby/pull/3566))
* Display author information for issues / pull requests in Answer Engine context card ([#3513](https://github.com/TabbyML/tabby/pull/3513))

### Fixed and Improvements

* Refactors the pull request indexing process to enhance the speed of incremental indexing for pull docs. ([#3538](https://github.com/TabbyML/tabby/pull/3538))
* Optimize the rate limiter on the HTTP-powered model backend to reduce errors. ([#3567](https://github.com/TabbyML/tabby/pull/3567))
* Introduce rate limiting at 60 requests per minute in the tabby-webserver. ([#3484](https://github.com/TabbyML/tabby/pull/3484))
* Validate model capability prior to download. ([#3565](https://github.com/TabbyML/tabby/pull/3565))
* Fix broken tree view on Windows in CodeBrowser. ([#3528](https://github.com/TabbyML/tabby/pull/3528))
* Upgrade all Tabby Linux base images to manylinux_2_28. ([#3536](https://github.com/TabbyML/tabby/pull/3536))

## v0.21.2 (2024-12-18)

### Notice
Expand Down
Loading

0 comments on commit 872d8b1

Please sign in to comment.