Skip to content

Commit 6330d1f

Browse files
3.6.0 (#287)
1 parent f1e1986 commit 6330d1f

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

RELEASE.md

+25-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,33 @@ Please follow the established format:
1010
-->
1111

1212
## Major features and improvements
13-
- Drop Kedro 0.14.* support.
13+
14+
<!-- Add release notes for the upcoming release here -->
1415

1516
## Bug fixes and other changes
1617

1718
<!-- Add release notes for the upcoming release here -->
18-
- Expose parameter metadata in "api/nodes/" endpoint (#275)
19+
20+
# Release 3.6.0
21+
22+
## Major features and improvements
23+
24+
- Redesign main sidebar (#236, #283)
25+
- Drop Kedro 0.14.* support (#277)
26+
27+
28+
## Bug fixes and other changes
29+
30+
- Continue work-in-progress on the multiple pipeline selection dropdown, which is still hidden behind a flag and disabled by default but is nearly complete. (#270, #273, #285, #289)
31+
- Continue work on new metadata panel endpoints (#275)
32+
- Fix chart rendering edge cases and hover styles (#288)
33+
- Update Python unit tests using the same json file as front-end (#281)
34+
- Improve lib-test docs (#278)
35+
- Hide random seed message unless using random data (#280)
36+
- Delete deprecated isParam and schema_id fields (#274)
37+
- Fix bug caused by typo in saveStateToLocalStorage (#271)
38+
- Fix interrupted chart transitions (#269)
39+
- Refactor and optimise flowchart performance (#268)
1940

2041
# Release 3.5.1
2142

@@ -32,7 +53,8 @@ Please follow the established format:
3253
- Add web worker to make the expensive graph layout calculation into an asynchronous action, to prevent it from blocking other tasks on the main thread. (#217)
3354
- Focus search bar with Cmd+F/Ctrl+F keyboard shortcuts (#261)
3455
- Allow an argument to be passed to loadJsonData, for external use if needed (#215)
35-
- Add support for multiple pipelines. This is a work-in-progress, and is currently disabled by default and hidden behind a flag. (#192, #215, #216, #221, #252, #254)
56+
- Add support for multiple pipelines. This is a work-in-progress, and is currently disabled by default and hidden behind a flag. (#192, #215, #216, #221, #254)
57+
- Begin adding individual node API endpoints, as a prelinary step towards full node metadata sidebars (#252)
3658
- Save disabled state of individual nodes in localStorage (#220)
3759
- Add automated testing for npm package import (#222)
3860
- Rename master branch to main ✊🏿 and deprecate develop (#248)

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@quantumblack/kedro-viz",
3-
"version": "3.5.1",
3+
"version": "3.6.0",
44
"main": "lib/components/app/index.js",
55
"files": [
66
"lib"

package/kedro_viz/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
""" Kedro plugin for vizualising a Kedro pipeline """
3030

31-
__version__ = "3.5.1"
31+
__version__ = "3.6.0"
3232

3333

3434
from kedro_viz.server import format_pipeline_data # noqa

0 commit comments

Comments
 (0)