Skip to content

Commit 2834383

Browse files
Release v8.0.0 (#1781)
* v8.0.0 Signed-off-by: ravi-kumar-pilla <ravi_kumar_pilla@mckinsey.com> * initial release draft Signed-off-by: ravi-kumar-pilla <ravi_kumar_pilla@mckinsey.com> * update reminder text Signed-off-by: ravi-kumar-pilla <ravi_kumar_pilla@mckinsey.com> * add AWS to reminder content Signed-off-by: ravi-kumar-pilla <ravi_kumar_pilla@mckinsey.com> * some changes * add link to notebook docs * add more to release notes --------- Signed-off-by: ravi-kumar-pilla <ravi_kumar_pilla@mckinsey.com> Co-authored-by: rashidakanchwala <rashida_kanchwala@mckinsey.com> Co-authored-by: rashidakanchwala <37628668+rashidakanchwala@users.noreply.github.com>
1 parent 5b7756f commit 2834383

File tree

7 files changed

+50
-20
lines changed

7 files changed

+50
-20
lines changed

RELEASE.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,24 @@ Please follow the established format:
55
- Use present tense (e.g. 'Add new feature')
66
- Include the ID number for the related PR (or PRs) in parentheses
77
-->
8-
# Upcoming Release
9-
10-
## Major features and improvements
11-
12-
- Extend support for 'Publishing and sharing Kedro-viz' to Azure and GCP. (#1708, #1711)
13-
14-
# Upcoming release
8+
# Release 8.0.0
159

1610
## Major features and improvements
1711

12+
- Extend support for 'Publishing and sharing Kedro-Viz' on Azure and GCP. (#1708, #1711)
13+
- Migrate Kedro-Viz to use `pydantic>=2`. (#1743)
1814
- Drop support for `python=3.8`. (#1747)
19-
- Migrate Viz to use `pydantic>=2`. (#1743)
15+
- Introduce new changes to the `preview` functionality on Kedro-viz (#1757)
16+
- Refactor Kedro-Viz and Kedro-datasets dependencies. (#1698)
2017

2118
## Bug fixes and other changes
2219

20+
- Enable search-as-you-type on Kedro-Viz docs. (#1727)
2321
- Change the `%run_viz` line magic to open Kedro-viz in a new browser tab. (#1722)
24-
22+
- Enable `%run_viz` line magic to use the arguments that Kedro-Viz supports on the command line. (#1733)
23+
- Make `kedro viz build` compatible with Kedro 18. (#1716)
24+
- Add `kedro-datasets` compatibility warning for Experiment Tracking. (#1767)
25+
- Fix bug on `preview` length in metadata modal. (#1767)
2526

2627
# Release 7.1.0
2728

demo-project/.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.0
1+
8.0.0

demo-project/lightsail.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"serviceName": "kedro-viz-live-demo",
33
"containers": {
44
"kedro-viz-live-demo": {
5-
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:7.1.0",
5+
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:8.0.0",
66
"ports": {
77
"4141": "HTTP"
88
}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@quantumblack/kedro-viz",
3-
"version": "7.1.0",
3+
"version": "8.0.0",
44
"description": "Kedro-Viz is an interactive development tool for building data science pipelines with Kedro.",
55
"main": "lib/components/app/index.js",
66
"files": [

package/kedro_viz/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
import warnings
44

5-
__version__ = "7.1.0"
5+
__version__ = "8.0.0"
66

77

88
class KedroVizPythonVersionWarning(UserWarning):
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,43 @@
11
export const updateContent = {
2-
date: '22 January 2024',
2+
date: '04 March 2024',
33
features: [
44
{
5-
title:
6-
'Publish Kedro-viz on any hosting platform using cli `kedro viz build`',
5+
title: 'Publish and share Kedro-Viz on AWS, Azure and GCP',
76
image: '',
8-
copy: '`kedro viz build` command that enables you to publish and share Kedro-Viz to any static website hosting platform.',
7+
copy: '`kedro viz deploy` command enables you to publish and share Kedro-Viz to static website hosting platforms like AWS, Azure and GCP',
98
buttonLink:
10-
'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html#platform-agnostic-sharing-with-kedro-viz',
9+
'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html',
1110
buttonText: 'View the docs',
1211
},
12+
{
13+
title: 'New changes to the `preview` functionality on Kedro-Viz',
14+
image: '',
15+
copy: 'The `preview` functionality on Kedro-Viz is now opt-out for users. Additionally, we have introduced extending the `preview` to custom datasets.',
16+
buttonLink:
17+
'https://docs.kedro.org/projects/kedro-viz/en/latest/preview_datasets.html',
18+
buttonText: 'View the docs',
19+
},
20+
{
21+
title: 'Improvements to `%run_viz` line magic',
22+
image: '',
23+
copy: '`%run_viz` line magic can be executed on jupyter notebooks with the options that Kedro-Viz supports on the command line',
24+
buttonLink:
25+
'https://docs.kedro.org/projects/kedro-viz/en/latest/kedro-viz_visualisation.html#running-kedro-viz-in-a-notebook',
26+
buttonText: 'View the docs',
27+
},
28+
{
29+
title: 'Kedro-Viz supports pydantic v2',
30+
image: '',
31+
copy: 'Kedro-Viz has migrated from pydantic v1 to v2',
32+
buttonLink: '',
33+
buttonText: '',
34+
},
35+
{
36+
title: 'Kedro-Viz drops support for python 3.8',
37+
image: '',
38+
copy: 'Kedro-Viz provides active support for python versions greater than 3.8',
39+
buttonLink: '',
40+
buttonText: '',
41+
},
1342
],
1443
};

0 commit comments

Comments
 (0)