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/9.1.0 #1919

Merged
merged 23 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from 11 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
6 changes: 4 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ Please follow the established format:
-->
# Next release

# Release 9.1.0

## Major features and improvements
- Include expandAllPipelines in initial state. (#1896)
Huongg marked this conversation as resolved.
Show resolved Hide resolved
Huongg marked this conversation as resolved.
Show resolved Hide resolved
- Allow Kedro-Viz commands to run from any sub directory within Kedro project. (#1871)

## Bug fixes and other changes

- Upgrade the gitpod workspace-full to a newer version which includes both Node 18 and Python 3.11.5. (#1862)
Huongg marked this conversation as resolved.
Show resolved Hide resolved
- Refactor backend integration with Kedro by replacing bootstrap_project with configure_project. (#1796)
- Enhance kedro-viz doc integration. (#1874)
Huongg marked this conversation as resolved.
Show resolved Hide resolved
- Fix Kedro-Viz waiting for valid Kedro project. (#1871)
- Include expandAllPipelines in initial state. (#1896)
- Enhance Kedro-Viz documentation by using Kedro-sphinx-theme. (#1898)
- Remove default props from functional components. (#1906)
Huongg marked this conversation as resolved.
Show resolved Hide resolved
- Fix for schema change in strawberry-graphql JSON scalar. (#1903)
Expand Down
2 changes: 1 addition & 1 deletion demo-project/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.0
9.1.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.0.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:9.1.0",
"ports": {
"4141": "HTTP"
}
Expand Down
2 changes: 1 addition & 1 deletion 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.0.0",
"version": "9.1.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.0.0"
__version__ = "9.1.0"


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
31 changes: 19 additions & 12 deletions src/components/update-reminder/update-reminder-content.js

Large diffs are not rendered by default.

Loading