Skip to content

Commit

Permalink
Release Kedro-viz 10.0.0 (#2094)
Browse files Browse the repository at this point in the history
  • Loading branch information
rashidakanchwala authored Sep 19, 2024
1 parent 0e378a1 commit 1a3006f
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 35 deletions.
26 changes: 19 additions & 7 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,32 @@ 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 10.0.0

## Major features and improvements

- Introduce `onActionCallback` prop in Kedro-Viz react component. (#2022)
- Introduce `kedro viz --lite`, which allows users to run Kedro-Viz without installing Kedro project dependencies. (#1966, #2077)
- Slice a pipeline functionality. (#2036)
- Add `kedro viz --lite`, allowing users to run Kedro-Viz without installing Kedro project dependencies. (#1966, #2077, #2093)
- Enable visual slicing of a Kedro pipeline in Kedro-viz. (#2036)
- Improve Kedro-Viz CLI startup time with lazy subcommands and deferring imports (#1920)
- Add documentation for Kedro-viz in VSCode Extension. (#2078)


## Bug fixes and other changes

- Introduce `onActionCallback` prop in Kedro-Viz React component. (#2022)
- Enhance documentation for Dataset previews on Kedro-viz. (#2074)
- Add documentation for Kedro-viz CLI Commands. (#2044)
- Fix design issues in metadata panel. (#2009)
- Fix bug where reloading the page reset to the default pipeline instead of retaining the selected one. (#2041)
- Add feedback component for slicing pipeline. (#2085)
- Fixes design issues in metadata panel. (#2009)
- Fix missing run command in metadata panel for task nodes. (#2055)
- Add `kedro viz --lite` user warning banner component. (#2092)
- Add `UnavailableDataset` as a default dataset for `--lite` mode. (#2083)
- Add `kedro viz --lite` user warning banner UI. (#2092)
- Fix missing run command in metadata panel for task nodes. (#2055)
- Fix highlight width inconsistency in the Nodelist component.(#2004)
- Migrate `demo.kedro.org` from AWS Lightsail to Github Pages. (#2034, #2084)
- Refactor disable preview feature to run entirely on the frontend without backend calls. (#2067)
- Implement a method to send JSON data to the VSCode integration without running the Kedro-Viz server. (#2049)


# Release 9.2.0

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


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
40 changes: 18 additions & 22 deletions src/components/update-reminder/update-reminder-content.js

Large diffs are not rendered by default.

0 comments on commit 1a3006f

Please sign in to comment.