diff --git a/RELEASE.md b/RELEASE.md index ccaf3f8238..55717e47a3 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -6,14 +6,15 @@ Please follow the established format: - Include the ID number for the related PR (or PRs) in parentheses --> -# Upcoming Release +# Release 7.1.0 ## Major features and improvements -- Add build command to the CLI using `kedro viz build` for creating build directory of local Kedro Viz instance with static data. (#1615) +- Add build command `kedro viz build` to the CLI to allow users to create a build directory of local Kedro Viz instance with Kedro project data. (#1697) ## Bug fixes and other changes - Set Kedro Viz start method to spawn process while launching it from Jupyter Notebook. (#1696) +- Fix bug on Plotly graph rendering. (#1701) # Release 7.0.0 diff --git a/demo-project/.version b/demo-project/.version index 4122521804..3769235d3e 100644 --- a/demo-project/.version +++ b/demo-project/.version @@ -1 +1 @@ -7.0.0 \ No newline at end of file +7.1.0 \ No newline at end of file diff --git a/demo-project/lightsail.json b/demo-project/lightsail.json index b4a7674ff7..c559da098f 100644 --- a/demo-project/lightsail.json +++ b/demo-project/lightsail.json @@ -2,7 +2,7 @@ "serviceName": "kedro-viz-live-demo", "containers": { "kedro-viz-live-demo": { - "image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:7.0.0", + "image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:7.1.0", "ports": { "4141": "HTTP" } diff --git a/package-lock.json b/package-lock.json index a40185b8c3..79034f6408 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@quantumblack/kedro-viz", - "version": "7.0.0", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 18e0b9070c..d154ce4abd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@quantumblack/kedro-viz", - "version": "7.0.0", + "version": "7.1.0", "description": "Kedro-Viz is an interactive development tool for building data science pipelines with Kedro.", "main": "lib/components/app/index.js", "files": [ diff --git a/package/kedro_viz/__init__.py b/package/kedro_viz/__init__.py index 5b2e0543bc..2c27be3896 100644 --- a/package/kedro_viz/__init__.py +++ b/package/kedro_viz/__init__.py @@ -2,7 +2,7 @@ import sys import warnings -__version__ = "7.0.0" +__version__ = "7.1.0" class KedroVizPythonVersionWarning(UserWarning): diff --git a/package/kedro_viz/launchers/cli.py b/package/kedro_viz/launchers/cli.py index 4bb2ecbf6b..96a80e1e0e 100644 --- a/package/kedro_viz/launchers/cli.py +++ b/package/kedro_viz/launchers/cli.py @@ -274,7 +274,7 @@ def deploy(region, bucket_name): @viz.command(context_settings={"help_option_names": ["-h", "--help"]}) def build(): - """Create build directory of local Kedro Viz instance with static data""" + """Create build directory of local Kedro Viz instance with Kedro project data""" try: load_and_populate_data(Path.cwd(), ignore_plugins=True) diff --git a/package/tests/test_launchers/test_cli.py b/package/tests/test_launchers/test_cli.py index 8c7fef5a09..b71d32b75c 100644 --- a/package/tests/test_launchers/test_cli.py +++ b/package/tests/test_launchers/test_cli.py @@ -235,7 +235,7 @@ def test_viz_command_group(mocker): "Visualise a Kedro pipeline using Kedro viz.\n\n" "Options:\n --help Show this message and exit.\n\n" "Commands:\n build Create build directory of local Kedro Viz " - "instance with static data\n " + "instance with Kedro...\n " "deploy Deploy and host Kedro Viz on AWS S3\n " "run Launch local Kedro Viz instance\x1b[0m" ), diff --git a/src/components/update-reminder/update-reminder-content.js b/src/components/update-reminder/update-reminder-content.js index 462c112f6a..26bbca9031 100644 --- a/src/components/update-reminder/update-reminder-content.js +++ b/src/components/update-reminder/update-reminder-content.js @@ -1,20 +1,13 @@ export const updateContent = { - date: '18 December 2023', + date: '22 January 2024', features: [ { - title: 'Update CLI command `kedro viz run` which starts Kedro-viz', + title: + 'Publish Kedro-viz on any hosting platform using cli `kedro viz build`', image: '', - copy: '`kedro viz run` is the new way to start Kedro Viz. The old command `kedro viz` is no longer supported', + copy: '`kedro viz build` command that enables you to publish and share Kedro-Viz to any static website hosting platform.', buttonLink: - 'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html', - buttonText: 'View the docs', - }, - { - title: 'Deploy Kedro-viz to AWS using cli `kedro viz deploy`', - image: '', - copy: 'Kedro-Viz can now be deployed directly to AWS by using the command `kedro viz deploy`', - buttonLink: - 'https://docs.kedro.org/projects/kedro-viz/en/latest/kedro-viz_visualisation.html', + 'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html#platform-agnostic-sharing-with-kedro-viz', buttonText: 'View the docs', }, ],