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/9.1.0 #1919

Merged
merged 23 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
2 changes: 1 addition & 1 deletion demo-project/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.0
9.1.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:9.0.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:9.1.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": "9.0.0",
"version": "9.1.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
Expand Up @@ -2,7 +2,7 @@
import sys
import warnings

__version__ = "9.0.0"
__version__ = "9.1.0"


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
27 changes: 16 additions & 11 deletions src/components/update-reminder/update-reminder-content.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
export const updateContent = {
date: '17 April 2024',
date: '22 May 2024',
features: [
{
title:
'Enable stateful URLs with node filters and expand/collapse modular pipelines',
title: 'Add "Expand All Pipelines" toggle to the utility bar',
astrojuanlu marked this conversation as resolved.
Show resolved Hide resolved
image: '',
copy: 'Kedro-Viz now supports stateful URLs that update to reflect user interactions, specifically when filtering nodes or expanding/collapsing modular pipelines. This allows users to share URLs that capture and share specific views of the data pipeline.',
buttonLink:
'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html#filtering-and-sharing-kedro-viz-pipelines',
buttonText: 'View the docs',
copy: 'This is to quickly expand or collapse all pipeline sections from the utility bar with a single click, enhancing navigation and visibility across complex pipeline structures',
buttonLink: '',
buttonText: '',
},
{
title:
'Introduce `--include-hooks` option and remove `--ignore-plugins` from cli commands',
'Allow Kedro-Viz commands to run from any sub directory within Kedro project',
astrojuanlu marked this conversation as resolved.
Show resolved Hide resolved
image: '',
copy: '',
buttonLink: '',
buttonText: '',
},
{
title: 'Add support for JSONDataset preview',
image: '',
copy: 'To run hooks while running `kedro viz`, you must now include the `--include-hooks` option in the Viz CLI commands and the `%run_viz` Jupyter line magic. This change ensures hooks are executed only when explicitly requested, as they are no longer run by default in Kedro-Viz.',
copy: '',
buttonLink: '',
buttonText: '',
},
{
title: 'Upgrade Kedro-Viz to Node 18',
title: 'Fix bug related to tag filtering and sharing via stateful URL',
image: '',
copy: 'Kedro-Viz has upgraded from Node v16 to v18',
copy: '',
buttonLink: '',
buttonText: '',
},
Expand Down
Loading