Skip to content

Commit

Permalink
Release 0.2.3 (#160)
Browse files Browse the repository at this point in the history
* Expand pipeline search folders

Signed-off-by: Nok Lam Chan <[email protected]>

* release 0.2.3

Signed-off-by: Nok Lam Chan <[email protected]>

* Update the version number in the prompt

Signed-off-by: Nok Lam Chan <[email protected]>

* typo

Signed-off-by: Nok Lam Chan <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Juan Luis Cano Rodríguez <[email protected]>

* Apply suggestions from code review

Co-authored-by: Juan Luis Cano Rodríguez <[email protected]>

---------

Signed-off-by: Nok Lam Chan <[email protected]>
Co-authored-by: Juan Luis Cano Rodríguez <[email protected]>
  • Loading branch information
noklam and astrojuanlu authored Nov 28, 2024
1 parent d37d02d commit 4bb76b7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 12 deletions.
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.

0 comments on commit 4bb76b7

Please sign in to comment.