diff --git a/CHANGELOG.md b/CHANGELOG.md index fff5c05..2d7d944 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. @@ -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 `/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. diff --git a/package.json b/package.json index edb7837..f2a96f0 100644 --- a/package.json +++ b/package.json @@ -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", @@ -194,4 +194,4 @@ "webpack": "^5.89.0", "webpack-cli": "^5.1.4" } -} +} \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 98dbcca..b5a45d3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ attrs==24.2.0 # via # cattrs # lsprotocol -cattrs==24.1.1 +cattrs==24.1.2 # via # lsprotocol # pygls @@ -16,7 +16,7 @@ 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 diff --git a/src/test/python_tests/requirements.txt b/src/test/python_tests/requirements.txt index 4efaf24..68446b5 100644 --- a/src/test/python_tests/requirements.txt +++ b/src/test/python_tests/requirements.txt @@ -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 @@ -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 diff --git a/src/webview/createOrShowKedroVizPanel.ts b/src/webview/createOrShowKedroVizPanel.ts index 59c3758..049e1c0 100644 --- a/src/webview/createOrShowKedroVizPanel.ts +++ b/src/webview/createOrShowKedroVizPanel.ts @@ -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, }; diff --git a/webview/package-lock.json b/webview/package-lock.json index 37391db..11b0d31 100644 --- a/webview/package-lock.json +++ b/webview/package-lock.json @@ -8,7 +8,7 @@ "name": "kedro-viz-Webview", "version": "0.0.1", "dependencies": { - "@quantumblack/kedro-viz": "^10.0.0", + "@quantumblack/kedro-viz": "^10.1.0", "react": "^18.3.1", "react-dom": "^18.3.1", "react-scripts": "5.0.1" @@ -4469,9 +4469,9 @@ } }, "node_modules/@quantumblack/kedro-viz": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@quantumblack/kedro-viz/-/kedro-viz-10.0.0.tgz", - "integrity": "sha512-jF85Z4/dE4YlhyFcAlhRJzw+k3N4gy2bkpKe0jnSRslRXh/Wfk9XsSsud0fJuzoRTtf6hBp2at+cin9qouATxw==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@quantumblack/kedro-viz/-/kedro-viz-10.1.0.tgz", + "integrity": "sha512-aoUC31NZLi4W8J8WiaV4wQFA5csv5GcWmFJEP/yULPkB2Gwr9RGO/3LY8Lfoitz9DMZ8KkHEHBtHakiaiAEg/Q==", "dependencies": { "@apollo/client": "^3.5.6", "@emotion/react": "^11.10.6",