Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Aug 14, 2024
2 parents d8dbfe7 + 6ed2bbd commit 4c873ec
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 46 deletions.
12 changes: 12 additions & 0 deletions .changes/extensions/vscode/0.8.45.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## 0.8.45 - 2024-08-05
### Added
* Support for Llama 3.1 and gpt-4o-mini
* Support for WatsonX+Granite models
### Changed
* Significant improvements to indexing performance
* Improved @codebase quality by more accurately searching over file names and paths
* Improved @codebase accuracy
* Further improvements to indexing performance
### Fixed
* Improved docs indexing and management
* Fixed Gemini embeddings provider
6 changes: 6 additions & 0 deletions .changes/extensions/vscode/0.8.46.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 0.8.46 - 2024-08-11
### Added
* new /onboard slash command
### Fixed
* Fixed problem loading config.ts
* Fixed bug causing duplicate indexing work
4 changes: 0 additions & 4 deletions .changes/unreleased/Added-20240726-153514.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Added-20240809-155609.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Changed-20240726-153458.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/Changed-20240726-153542.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Fixed-20240809-155531.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Fixed-20240809-155551.yaml

This file was deleted.

12 changes: 6 additions & 6 deletions .github/workflows/jetbrains-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
## JBIJPPTPL

name: Build
on:
# Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
push:
branches: [main, preview]
# Trigger the workflow on any pull request
# pull_request:
# on:
# # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
# push:
# branches: [main, preview]
# Trigger the workflow on any pull request
# pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jetbrains-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# See https://plugins.jetbrains.com/docs/intellij/plugin-signing.html for more information.

name: Release
on:
release:
types: [prereleased, released]
# on:
# release:
# types: [prereleased, released]

defaults:
run:
Expand Down
15 changes: 7 additions & 8 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ jobs:
cd core
npm ci
- name: Run core tests
run: |
cd core
npm run test
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

# 2.5. Pre package
- name: Set var for environment info
shell: pwsh
Expand All @@ -112,14 +119,6 @@ jobs:
cd extensions/vscode
npm run prepackage -- --target ${{ env.target }}
# 2.75 Run core tests
- name: Run core tests
run: |
cd core
npm run test
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

# 3. Re-install esbuild (for cases that we force installed for another arch in prepackage.js)
- name: Re-install esbuild
run: |
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 13 additions & 4 deletions extensions/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,25 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).


Pre-release Changes
## 0.8.46 - 2024-08-11
### Added
* Support for Llama 3.1 and gpt-4o-mini
* new /onboard slash command
### Fixed
* Fixed problem loading config.ts
* Fixed bug causing duplicate indexing work

## 0.8.45 - 2024-08-05
### Added
* Support for Llama 3.1 and gpt-4o-mini
* Support for WatsonX+Granite models
### Changed
* Significant improvements to indexing performance
* Improved @codebase quality by more accurately searching over file names and paths
* Improved @codebase accuracy
* Further improvements to indexing performance
### Fixed
* Fixed problem loading config.ts
* Fixed bug causing duplicate indexing work
* Improved docs indexing and management
* Fixed Gemini embeddings provider

## 0.8.43 - 2024-07-08
### Added
Expand Down

0 comments on commit 4c873ec

Please sign in to comment.