Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/kedro-org/kedro-viz into fe…
Browse files Browse the repository at this point in the history
…ature/kedro-viz-lite
  • Loading branch information
ravi-kumar-pilla committed Jul 30, 2024
2 parents 1cffd8a + e719f30 commit fc8f7e4
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 22 deletions.
8 changes: 8 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ Please follow the established format:
- Fix packaging. (#1766)
- Adjust requirements file and dependabot versioning strategy. (#1978)
- Refactor CommandCopier component. (#1998)
- Set `isPrettyName` toggle to False by Default. (#1958)
- Add `-p` argument option for `kedro viz` to align with kedro pipeline options. (#1961)
- Replace `data-heap-event` with standardised `data-test` for Cypress and Telemetry. (#1995)

## Community contributions

Many thanks to the following Kedroids for contributing PR to this release:
* [Vlad Cozma](https://github.com/VladCozma)

# Release 9.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 @@
9.1.0
9.2.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.1.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:9.2.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.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quantumblack/kedro-viz",
"version": "9.1.0",
"version": "9.2.0",
"description": "Kedro-Viz is an interactive development tool for building data science pipelines with Kedro.",
"main": "lib/components/app/index.js",
"files": [
Expand All @@ -16,6 +16,7 @@
"build": "cross-env GENERATE_SOURCEMAP=false react-scripts build",
"postbuild": "rm -rf build/api",
"start": "REACT_APP_DATA_SOURCE=$DATA NODE_OPTIONS=\"--dns-result-order=ipv4first\" npm-run-all -p start:app start:lib",
"start:dev": "rm -rf node_modules/.cache && npm start",
"start:app": "PORT=4141 react-scripts start",
"start:lib": "rm -rf lib && babel src --out-dir lib --copy-files --watch",
"lib": "npm-run-all -s lib:clean lib:copy lib:webpack lib:babel lib:prune",
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.1.0"
__version__ = "9.2.0"


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

Large diffs are not rendered by default.

0 comments on commit fc8f7e4

Please sign in to comment.