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 v6.7.0 #1642

Merged
merged 6 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
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
rashidakanchwala marked this conversation as resolved.
Show resolved Hide resolved

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