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 0.2.3 #160

Merged
merged 9 commits into from
Nov 28, 2024
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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

# 0.2.3
## Major changes and new features
- Silenced the server initialisation error when working on a non-Kedro project.
- Improved UX: when clicking on the visualisation it will not refocus every time.

## Bug fix
- Fixed Windows path issue.

# 0.2.2
- Reduce size of packaged artifacts.

Expand All @@ -11,7 +19,7 @@
- Integrated Kedro-Viz flowchart into the extension with a new command `Kedro: Run Kedro Viz`.
- Modified the extension to search pipelines from all `<package_name>/pipelines` folder.
- Added new command `Kedro: Show Logs`

## Bug fix
- `Select Environment` actions now update the run environment instead of base.
- Modified status bar to show both environments, i.e.`base + local`, and `base` is no longer selectable.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Kedro",
"displayName": "Kedro",
"description": "A Kedro VSCode Extension.",
"version": "0.2.2",
"version": "0.2.3",
"preview": false,
"serverInfo": {
"name": "Kedro",
Expand Down Expand Up @@ -194,4 +194,4 @@
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}
}
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ attrs==24.2.0
# via
# cattrs
# lsprotocol
cattrs==24.1.1
cattrs==24.1.2
# via
# lsprotocol
# pygls
exceptiongroup==1.2.2
# via cattrs
lsprotocol==2023.0.1
# via pygls
packaging==24.1
packaging==24.2
# via -r ./requirements.in
pygls==1.3.1
# via -r ./requirements.in
Expand Down
4 changes: 2 additions & 2 deletions src/test/python_tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exceptiongroup==1.2.2
# via pytest
iniconfig==2.0.0
# via pytest
packaging==24.1
packaging==24.2
# via pytest
pluggy==1.5.0
# via pytest
Expand All @@ -18,7 +18,7 @@ pytest==8.3.3
# via -r ./src/test/python_tests/requirements.in
python-jsonrpc-server==0.4.0
# via -r ./src/test/python_tests/requirements.in
tomli==2.0.1
tomli==2.1.0
# via pytest
ujson==5.10.0
# via python-jsonrpc-server
2 changes: 1 addition & 1 deletion src/webview/createOrShowKedroVizPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function handleKedroViz(
} else {
const header = 'Kedro-Viz Dependency Required';
const options: vscode.MessageOptions = {
detail: 'Kedro-Viz version 10.0.0 or later is required to visualize your project\'s data pipeline. It’s not installed in your virtual environment. Click "Install" to set it up with pip.',
detail: 'Kedro-Viz version 10.1.0 or later is required to visualize your project\'s data pipeline. It’s not installed in your virtual environment. Click "Install" to set it up with pip.',
modal: true,
};

Expand Down
8 changes: 4 additions & 4 deletions webview/package-lock.json

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