Skip to content

Commit

Permalink
Release v6.7.0 (#1642)
Browse files Browse the repository at this point in the history
This is minor release with big backend refactoring work and some bug fixes.

Bug fixes and other changes
Refactor flowchart dataclasses to pydantic base models. (Refactor Flowchart models from dataclass to pydantic base models #1565)
Fix dataset factory patterns in Experiment Tracking. (Fix dataset factory patterns in Experiment Tracking #1588)
Update demo-project to use OmegaConfigLoader. (Update demo project to use OmegaConfigLoader #1590)
Improve feedback for copy to clipboard feature. (Add tooltip to shareable urls copy button #1614)
Ensure Kedro-Viz works when hosted on a URL subpath. (Fix: Kedro-Viz doesn't work when hosted via a URL subpath #1621)
Bump fastapi upper bounds. (Bump FAST API upper bounds #1634)
Fix shareable URL modal to appear across the app. (Make shareable URL modal open globally across the app.  #1639)
Add Kedro-Viz CLI command deprecation warning. (Add kedro viz deprecation warning for CLI #1641)
  • Loading branch information
rashidakanchwala committed Nov 17, 2023
1 parent 01d1043 commit 9189973
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
9 changes: 5 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,18 @@ Please follow the established format:
- Include the ID number for the related PR (or PRs) in parentheses
-->

# Upcoming Release
# Release 6.7.0

## Bug fixes and other changes

- Refactor flowchart dataclasses to pydantic base models. (#1565)
- Fix dataset factory patterns in Experiment Tracking. (#1588)
- Update demo-project to use `OmegaConfigLoader`. (#1590)
- Improve feedback for copy to clipboard feature. (#1614)
- Ensure Kedro-Viz works when hosted on a URL subpath. (#1621)
- Bump `fastapi` upper bounds. (#1634)
- Fix shareable URL modal to appear across the app. (#1639)
- Refactor flowchart dataclasses to pydantic base models. (#1565)
- Add kedro viz CLI command deprecation warning. (#1641)
- Bump FAST API upper bounds. (#1634)
- Add Kedro-Viz CLI command deprecation warning. (#1641)

# Release 6.6.1

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


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
10 changes: 5 additions & 5 deletions src/components/update-reminder/update-reminder-content.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
export const updateContent = {
date: '20 October 2023',
date: '16 November 2023',
features: [
{
title: 'Skipping plugins',
title: 'Deprecation warning for Kedro-Viz',
image: '',
copy: 'You can now skip all plugins while running Kedro-Viz by using the --ignore-plugins CLI option.',
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: '',
},
{
title: 'Improved run-command display',
title: 'Fixed Kedro-Viz when hosted via URL Subpaths',
image: '',
copy: "We've fixed the improper display of the run-command within the metadata panel.",
copy: 'Kedro-Viz now works properly when hosted via a URL subpath.',
buttonLink: '',
buttonText: '',
},
Expand Down

0 comments on commit 9189973

Please sign in to comment.