Skip to content

Commit eac8d39

Browse files
authored
Release v10.1.0 (#2199)
* Release Kedro-viz 10.1.0 Signed-off-by: Jitendra Gundaniya <jitendra_gundaniya@mckinsey.com> * v10.1.0 * Bump the release version number to 10.1.0 Signed-off-by: Jitendra Gundaniya <jitendra_gundaniya@mckinsey.com> * update-reminder-content updated Signed-off-by: Jitendra Gundaniya <jitendra_gundaniya@mckinsey.com> * Review suggestions Signed-off-by: Jitendra Gundaniya <jitendra_gundaniya@mckinsey.com> * Release note and update reminder updated Signed-off-by: Jitendra Gundaniya <jitendra_gundaniya@mckinsey.com> * Reorder release notes Signed-off-by: Jitendra Gundaniya <jitendra_gundaniya@mckinsey.com> --------- Signed-off-by: Jitendra Gundaniya <jitendra_gundaniya@mckinsey.com>
1 parent 4cc41d4 commit eac8d39

File tree

7 files changed

+60
-37
lines changed

7 files changed

+60
-37
lines changed

RELEASE.md

Lines changed: 29 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,38 @@ Please follow the established format:
1111
## Major features and improvements
1212

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

1719
## Bug fixes and other changes
18-
- Improve `kedro viz build` usage documentation (#2126)
19-
- Fix unserializable parameters value (#2122)
20-
- Replace `watchgod` library with `watchfiles` and improve autoreload file watching filter (#2134)
21-
- Display full dataset type with library prefix in metadata panel (#2136)
22-
- Enable SQLite WAL mode for Azure ML to fix database locking issues (#2131)
23-
- Replace `flake8`, `isort`, `pylint` and `black` by `ruff` (#2149)
24-
- Refactor `DatasetStatsHook` to avoid showing error when dataset doesn't have file size info (#2174)
25-
- Refactor `node-list-tree` component. (#2193)
26-
- Fix 404 error when accessing the experiment tracking page on the demo site (#2179)
27-
- Add check for port availability before starting Kedro Viz to prevent unintended browser redirects when the port is already in use (#2176)
20+
- Fix tag being undefined when pipeline are ordered differently (#2162, #2146)
21+
- Fix unserializable parameters value. (#2122)
2822
- Update kedro-viz lite banner icon and message. (#2196)
29-
- Include Kedro Viz version in telemetry.. (#2194)
23+
- Display full dataset type with library prefix in metadata panel. (#2136)
24+
- Introduce `behaviour` prop object with `reFocus` prop. (#2161)
25+
- Include Kedro Viz version in telemetry. (#2194)
26+
- Update Kedro-Viz telemetry for opt-out model (#2022)
27+
- Improve `kedro viz build` usage documentation. (#2126)
28+
- Updated documentation to include Python version policies and made minor improvements. (#2139)
29+
- Add a tip on YAML anchors to docs on dataset layers. (#2181)
30+
- Enable SQLite WAL mode for to fix database locking issues in Azure ML. (#2131)
31+
- Replace `flake8`, `isort`, `pylint` and `black` by `ruff`. (#2149)
32+
- Refactor `DatasetStatsHook` to avoid showing error when dataset doesn't have file size info. (#2174)
33+
- Refactor `node-list-tree` component. (#2193)
34+
- Refactor response classes. (#2113)
35+
- Refactor flowchart models into separate files. (#2144)
36+
- Standardized `z-index` values using variables for easier maintenance. (#2095)
37+
- Fix 404 error when accessing the experiment tracking page on the demo site. (#2179)
38+
- Update Kedro-viz architecture diagram. (#2183)
39+
- Replace CircleCI badge in readme with GitHub actions. (#2124)
40+
- Add troubleshooting note in CONTRIBUTING.md. (#2110)
41+
42+
## Community contributions
43+
44+
Many thanks to the following Kedroids for contributing PR to this release:
45+
* [Yury Fedotov](https://github.com/yury-fedotov)
3046

3147

3248
# Release 10.0.0

demo-project/.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.0.0
1+
10.1.0

demo-project/lightsail.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"serviceName": "kedro-viz-live-demo",
33
"containers": {
44
"kedro-viz-live-demo": {
5-
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:10.0.0",
5+
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:10.1.0",
66
"ports": {
77
"4141": "HTTP"
88
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@quantumblack/kedro-viz",
3-
"version": "10.0.0",
3+
"version": "10.1.0",
44
"description": "Kedro-Viz is an interactive development tool for building data science pipelines with Kedro.",
55
"main": "lib/components/app/index.js",
66
"files": [
@@ -172,4 +172,4 @@
172172
"not op_mini all"
173173
],
174174
"snyk": true
175-
}
175+
}

package/kedro_viz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
import warnings
55

6-
__version__ = "10.0.0"
6+
__version__ = "10.1.0"
77

88

99
class KedroVizPythonVersionWarning(UserWarning):

src/components/update-reminder/update-reminder-content.js

Lines changed: 25 additions & 18 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)