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 v7.0.0 #1685

Merged
merged 8 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from 5 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
27 changes: 14 additions & 13 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,25 @@ Please follow the established format:
- Use present tense (e.g. 'Add new feature')
- Include the ID number for the related PR (or PRs) in parentheses
-->
# Upcoming Release
# Release 7.0.0

## Major features and improvements

- Display hosted URL in CLI while launching kedro viz. (#1644)
- AWS focussed CLI implementation `kedro viz deploy` for shareable viz. (#1661)
- Upgrade to `React 18`. (#1652)
- Change CLI command to run Kedro-viz to`kedro viz run`. (#1671)
- Add deploy command to the CLI using `kedro viz deploy` for sharing Kedro-viz on AWS. (#1661)
- Add support for `kedro==0.19`and `kedro-datasets==2.0`. (#1677)
- Drop support for `python=3.7`. (#1660)
- Drop support for `kedro==0.17.x`. (#1669)

## Bug fixes and other changes

- Fix for dataset existence check in factory pattern discovery (#1659)
- Remove support for Python 3.7 (#1660)
- Adjust CLI to use 'kedro viz run' instead of 'kedro viz' (#1671)

# Release 7.0.0

## Major features and improvements

- Bump minimum version of React from 17.0.2 to 18.2.0. (#1652)
- Fix modular pipelines breaking when collapsed on the flowchart. (#1651)
- Display hosted URL in CLI while launching Kedro viz. (#1644)
- Fix dataset existence check in factory pattern discovery (#1659)
- Fix Kedro-viz display on Jupyter notebooks. (#1658)
- Fix zoom issues on the flowchart. (#1672)
- Fix bug on `kedro-viz run --load-file`. (#1677)
- Fix bug on adding timestamps to shareable-viz. (#1679)

# Release 6.7.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.7.0
7.0.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.7.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:7.0.0",
"ports": {
"4141": "HTTP"
}
Expand Down
4 changes: 2 additions & 2 deletions 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.7.0",
"version": "7.0.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__ = "6.7.0"
__version__ = "7.0.0"


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
20 changes: 11 additions & 9 deletions src/components/update-reminder/update-reminder-content.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
export const updateContent = {
date: '16 November 2023',
date: '18 December 2023',
features: [
{
title: 'Deprecation warning for Kedro-Viz',
title: 'Update CLI command `kedro viz run` which starts Kedro-viz',
image: '',
copy: 'The `kedro viz` command will be deprecated with the release of Kedro-Viz 7.0.0. `kedro viz run` will be the new way to start Kedro Viz',
buttonLink: '',
buttonText: '',
copy: '`kedro viz run` is the new way to start Kedro Viz. The old command `kedro viz` is no longer supported',
buttonLink:
'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html',
buttonText: 'View the docs',
},
{
title: 'Fixed Kedro-Viz when hosted via URL Subpaths',
title: 'Deploy Kedro-viz to AWS using cli `kedro viz deploy`',
image: '',
copy: 'Kedro-Viz now works properly when hosted via a URL subpath.',
buttonLink: '',
buttonText: '',
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',
buttonText: 'View the docs',
},
],
};
Loading