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 v8.0.0 #1781

Merged
merged 9 commits into from
Mar 4, 2024
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
16 changes: 7 additions & 9 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,21 @@ 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

## Major features and improvements

- Extend support for 'Publishing and sharing Kedro-viz' to Azure and GCP. (#1708, #1711)

# Upcoming release
# Release 8.0.0

## Major features and improvements

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

## Bug fixes and other changes

- Enable search-as-you-type on Kedro-Viz docs. (#1727)
- Change the `%run_viz` line magic to open Kedro-viz in a new browser tab. (#1722)

- Enable `%run_viz` line magic to use the arguments that Kedro-Viz supports on the command line. (#1733)

# Release 7.1.0

Expand Down
2 changes: 1 addition & 1 deletion demo-project/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.0
8.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:7.1.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:8.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": "7.1.0",
"version": "8.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__ = "7.1.0"
__version__ = "8.0.0"


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
39 changes: 34 additions & 5 deletions src/components/update-reminder/update-reminder-content.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,43 @@
export const updateContent = {
date: '22 January 2024',
date: '04 March 2024',
features: [
{
title:
'Publish Kedro-viz on any hosting platform using cli `kedro viz build`',
title: 'Publish and share Kedro-Viz on AWS, Azure and GCP',
image: '',
copy: '`kedro viz build` command that enables you to publish and share Kedro-Viz to any static website hosting platform.',
copy: '`kedro viz deploy` command enables you to publish and share Kedro-Viz to static website hosting platforms like AWS, Azure and GCP',
buttonLink:
'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html#platform-agnostic-sharing-with-kedro-viz',
'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html',
buttonText: 'View the docs',
},
{
title: 'New changes to the `preview` functionality on Kedro-Viz',
image: '',
copy: 'The `preview` functionality on Kedro-Viz is now opt-out for users. Additionally, we have introduced extending the `preview` to custom datasets.',
buttonLink:
'https://docs.kedro.org/projects/kedro-viz/en/latest/preview_datasets.html',
buttonText: 'View the docs',
},
{
title: 'Improvements to `%run_viz` line magic',
image: '',
copy: '`%run_viz` line magic can be executed on jupyter notebooks with the options that Kedro-Viz supports on the command line',
buttonLink:
'https://docs.kedro.org/en/stable/notebooks_and_ipython/kedro_and_notebooks.html#run-viz-line-magic',
buttonText: 'View the docs',
},
{
title: 'Kedro-Viz supports pydantic v2',
image: '',
copy: 'Kedro-Viz has migrated from pydantic v1 to v2',
buttonLink: '',
buttonText: '',
},
{
title: 'Kedro-Viz drops support for python 3.8',
image: '',
copy: 'Kedro-Viz provides active support for python versions greater than 3.8',
buttonLink: '',
buttonText: '',
},
],
};