Skip to content

Commit 4c873ec

Browse files
committed
Merge branch 'main' into dev
2 parents d8dbfe7 + 6ed2bbd commit 4c873ec

15 files changed

+47
-46
lines changed

.changes/extensions/vscode/0.8.45.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## 0.8.45 - 2024-08-05
2+
### Added
3+
* Support for Llama 3.1 and gpt-4o-mini
4+
* Support for WatsonX+Granite models
5+
### Changed
6+
* Significant improvements to indexing performance
7+
* Improved @codebase quality by more accurately searching over file names and paths
8+
* Improved @codebase accuracy
9+
* Further improvements to indexing performance
10+
### Fixed
11+
* Improved docs indexing and management
12+
* Fixed Gemini embeddings provider

.changes/extensions/vscode/0.8.46.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## 0.8.46 - 2024-08-11
2+
### Added
3+
* new /onboard slash command
4+
### Fixed
5+
* Fixed problem loading config.ts
6+
* Fixed bug causing duplicate indexing work

.changes/unreleased/Added-20240726-153514.yaml

-4
This file was deleted.

.changes/unreleased/Added-20240809-155609.yaml

-4
This file was deleted.

.changes/unreleased/Changed-20240726-153458.yaml

-4
This file was deleted.

.changes/unreleased/Changed-20240726-153542.yaml

-5
This file was deleted.

.changes/unreleased/Fixed-20240809-155531.yaml

-4
This file was deleted.

.changes/unreleased/Fixed-20240809-155551.yaml

-4
This file was deleted.

.github/workflows/jetbrains-build.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
## JBIJPPTPL
1414

1515
name: Build
16-
on:
17-
# Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
18-
push:
19-
branches: [main, preview]
20-
# Trigger the workflow on any pull request
21-
# pull_request:
16+
# on:
17+
# # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
18+
# push:
19+
# branches: [main, preview]
20+
# Trigger the workflow on any pull request
21+
# pull_request:
2222

2323
concurrency:
2424
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/jetbrains-release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# See https://plugins.jetbrains.com/docs/intellij/plugin-signing.html for more information.
44

55
name: Release
6-
on:
7-
release:
8-
types: [prereleased, released]
6+
# on:
7+
# release:
8+
# types: [prereleased, released]
99

1010
defaults:
1111
run:

.github/workflows/main.yaml

+7-8
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,13 @@ jobs:
102102
cd core
103103
npm ci
104104
105+
- name: Run core tests
106+
run: |
107+
cd core
108+
npm run test
109+
env:
110+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
111+
105112
# 2.5. Pre package
106113
- name: Set var for environment info
107114
shell: pwsh
@@ -112,14 +119,6 @@ jobs:
112119
cd extensions/vscode
113120
npm run prepackage -- --target ${{ env.target }}
114121
115-
# 2.75 Run core tests
116-
- name: Run core tests
117-
run: |
118-
cd core
119-
npm run test
120-
env:
121-
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
122-
123122
# 3. Re-install esbuild (for cases that we force installed for another arch in prepackage.js)
124123
- name: Re-install esbuild
125124
run: |

extensions/vscode/CHANGELOG.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,25 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
55
and is generated by [Changie](https://github.com/miniscruff/changie).
66

77

8-
Pre-release Changes
8+
## 0.8.46 - 2024-08-11
99
### Added
10-
* Support for Llama 3.1 and gpt-4o-mini
1110
* new /onboard slash command
11+
### Fixed
12+
* Fixed problem loading config.ts
13+
* Fixed bug causing duplicate indexing work
14+
15+
## 0.8.45 - 2024-08-05
16+
### Added
17+
* Support for Llama 3.1 and gpt-4o-mini
18+
* Support for WatsonX+Granite models
1219
### Changed
1320
* Significant improvements to indexing performance
1421
* Improved @codebase quality by more accurately searching over file names and paths
22+
* Improved @codebase accuracy
23+
* Further improvements to indexing performance
1524
### Fixed
16-
* Fixed problem loading config.ts
17-
* Fixed bug causing duplicate indexing work
25+
* Improved docs indexing and management
26+
* Fixed Gemini embeddings provider
1827

1928
## 0.8.43 - 2024-07-08
2029
### Added

0 commit comments

Comments
 (0)