Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.8.0 #374

Merged
merged 4 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 2.8.0 - 2025.01.06

- Renamed command "Pick configuration" to "Change active buildConfiguration"
- Automatically re-scan when changing buildConfiguration
- Cache per-buildConfiguration scan results
- Make the recipes view appear as "loading" while a scan is ongoing
- Add "Change active buildConfiguration" to the main contextual menus
- Update dependencies and make according changes
- Verify Open VSX publisher for "The Yocto Project"
- Rate-limit loading bars in the debug logs
- Add support for the new `devtool modify --debug-build` option
- Add the "bitbake.disableDevtoolDebugBuild" setting to disable this new default behavior
- Fix an issue with the highlighting of the word "python"
- Improve compatibility and documentation around kas-container's ssh-agent option

# 2.7.0 - 2024.09.13

- Add bitbake environment scan for global variables
Expand Down
30 changes: 11 additions & 19 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@
"dependencies": {
"find": "^0.3.0",
"node-pty": "^1.0.0",
"semver": "^7.6.3",
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/find": "^0.2.4",
"@types/semver": "^7.5.8",
"@types/vscode": "^1.96.0"
},
"workspaces": [
Expand Down
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default [
"__mocks__/vscode.ts",
"**/jest.config.js",
"**/eslint.config.mjs",
"integration-tests/project-folder/**",
],
},
{files: ["**/*.{js,mjs,cjs,ts}"]},
Expand Down
22 changes: 12 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"Eugen Wiens"
],
"license": "MIT",
"version": "2.7.0",
"version": "2.8.0",
"publisher": "yocto-project",
"icon": "./client/images/icon.png",
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "language-server-bitbake",
"description": "Implementation of a language server for bitbake.",
"version": "2.7.0",
"version": "2.8.0",
"author": "Eugen Wiens",
"contributors": [
"Savoir-faire Linux"
Expand Down
Loading