Skip to content

Commit

Permalink
Release v10.1.0 (#2199)
Browse files Browse the repository at this point in the history
* Release Kedro-viz 10.1.0

Signed-off-by: Jitendra Gundaniya <[email protected]>

* v10.1.0

* Bump the release version number to 10.1.0

Signed-off-by: Jitendra Gundaniya <[email protected]>

* update-reminder-content updated

Signed-off-by: Jitendra Gundaniya <[email protected]>

* Review suggestions

Signed-off-by: Jitendra Gundaniya <[email protected]>

* Release note and update reminder updated

Signed-off-by: Jitendra Gundaniya <[email protected]>

* Reorder release notes

Signed-off-by: Jitendra Gundaniya <[email protected]>

---------

Signed-off-by: Jitendra Gundaniya <[email protected]>
  • Loading branch information
jitu5 authored Nov 21, 2024
1 parent 4cc41d4 commit eac8d39
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 37 deletions.
42 changes: 29 additions & 13 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,38 @@ Please follow the established format:
## Major features and improvements

- Add support for Python 3.12, 3.13 (#2190, #2191)
- Update Kedro-Viz telemetry for opt-out model (#2022)
- Introduce `behaviour` prop object with `reFocus` prop (#2161)
- Ensure consistent flowchart positioning by maintaining uniform layer, node, and edge ordering in Kedro-Viz. (#2185)
- Improve `--autoreload` file watching filter and replace `watchgod` library with `watchfiles`. (#2134)
- Check port availability before starting Kedro Viz to prevent unintended redirects when the port is in use. (#2176)


## Bug fixes and other changes
- Improve `kedro viz build` usage documentation (#2126)
- Fix unserializable parameters value (#2122)
- Replace `watchgod` library with `watchfiles` and improve autoreload file watching filter (#2134)
- Display full dataset type with library prefix in metadata panel (#2136)
- Enable SQLite WAL mode for Azure ML to fix database locking issues (#2131)
- Replace `flake8`, `isort`, `pylint` and `black` by `ruff` (#2149)
- Refactor `DatasetStatsHook` to avoid showing error when dataset doesn't have file size info (#2174)
- Refactor `node-list-tree` component. (#2193)
- Fix 404 error when accessing the experiment tracking page on the demo site (#2179)
- Add check for port availability before starting Kedro Viz to prevent unintended browser redirects when the port is already in use (#2176)
- Fix tag being undefined when pipeline are ordered differently (#2162, #2146)
- Fix unserializable parameters value. (#2122)
- Update kedro-viz lite banner icon and message. (#2196)
- Include Kedro Viz version in telemetry.. (#2194)
- Display full dataset type with library prefix in metadata panel. (#2136)
- Introduce `behaviour` prop object with `reFocus` prop. (#2161)
- Include Kedro Viz version in telemetry. (#2194)
- Update Kedro-Viz telemetry for opt-out model (#2022)
- Improve `kedro viz build` usage documentation. (#2126)
- Updated documentation to include Python version policies and made minor improvements. (#2139)
- Add a tip on YAML anchors to docs on dataset layers. (#2181)
- Enable SQLite WAL mode for to fix database locking issues in Azure ML. (#2131)
- Replace `flake8`, `isort`, `pylint` and `black` by `ruff`. (#2149)
- Refactor `DatasetStatsHook` to avoid showing error when dataset doesn't have file size info. (#2174)
- Refactor `node-list-tree` component. (#2193)
- Refactor response classes. (#2113)
- Refactor flowchart models into separate files. (#2144)
- Standardized `z-index` values using variables for easier maintenance. (#2095)
- Fix 404 error when accessing the experiment tracking page on the demo site. (#2179)
- Update Kedro-viz architecture diagram. (#2183)
- Replace CircleCI badge in readme with GitHub actions. (#2124)
- Add troubleshooting note in CONTRIBUTING.md. (#2110)

## Community contributions

Many thanks to the following Kedroids for contributing PR to this release:
* [Yury Fedotov](https://github.com/yury-fedotov)


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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quantumblack/kedro-viz",
"version": "10.0.0",
"version": "10.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 Expand Up @@ -172,4 +172,4 @@
"not op_mini all"
],
"snyk": true
}
}
2 changes: 1 addition & 1 deletion package/kedro_viz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
import warnings

__version__ = "10.0.0"
__version__ = "10.1.0"


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

Large diffs are not rendered by default.

0 comments on commit eac8d39

Please sign in to comment.