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 v6.3.0 #1389

Merged
merged 10 commits into from
Jun 9, 2023
8 changes: 5 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@ Please follow the established format:
- Include the ID number for the related PR (or PRs) in parentheses
-->

# Release 6.2.1
# Release 6.3.0

## Major features and improvements

- Add support for new kedro-viz layer configuration in kedro-datasets version 1.3.0 or more.
- Add support for new kedro-viz preview_args configuration in kedro-datasets version 1.3.0 or more.
- Update UI with new Kedro rebrand look and feel. (#1359)
- Add support for new layer configuration in kedro-datasets version >1.3.0. (#1373)
- Add support for new `preview_args` configuration in kedro-datasets version >1.3.0. (#1374)

## Bug fixes and other changes

- Fix bug where git caused a Kedro-Viz panic. (#1380)
- Show original node input and output names in metadata panel. (#1381)

# Release 6.2.0

Expand Down
2 changes: 1 addition & 1 deletion demo-project/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.0
6.3.0
2 changes: 1 addition & 1 deletion demo-project/lightsail.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"serviceName": "kedro-viz-live-demo",
"containers": {
"kedro-viz-live-demo": {
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:6.2.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:6.3.0",
"ports": {
"4141": "HTTP"
}
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
{
"name": "@quantumblack/kedro-viz",
"version": "6.2.0",
"version": "6.3.0",
"description": "Kedro-Viz is an interactive development tool for building data science pipelines with Kedro.",
"main": "lib/components/app/index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion package/kedro_viz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Kedro plugin for visualising a Kedro pipeline"""

__version__ = "6.2.0"
__version__ = "6.3.0"
2 changes: 1 addition & 1 deletion package/test_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r requirements.txt
kedro >=0.17.0
kedro-datasets[pandas.ParquetDataSet, pandas.CSVDataSet, plotly.JSONDataSet]~=1.0
kedro-datasets[pandas.ParquetDataSet, pandas.CSVDataSet, pandas.ExcelDataSet, plotly.JSONDataSet]~=1.0
kedro-telemetry>=0.1.1 # for testing telemetry integration
bandit~=1.7
behave~=1.2
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions src/components/flowchart-wrapper/flowchart-wrapper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ $sidebar-toolbar-width-open: variables.$sidebar-width-open +
opacity: 0;
pointer-events: none;
position: relative;
z-index: 3;

.button button {
background-color: variables.$yellow-300;
Expand Down