Skip to content

Commit 3b35012

Browse files
3.5.0 (#265)
1 parent 14aa9aa commit 3b35012

File tree

4 files changed

+34
-10
lines changed

4 files changed

+34
-10
lines changed

RELEASE.md

+29-5
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,39 @@ Please follow the established format:
1313

1414
<!-- Add release notes for the upcoming release here -->
1515

16-
- Rename default endpoint from `/api/nodes.json` to `/api/main` (#239)
17-
1816
## Bug fixes and other changes
1917

2018
<!-- Add release notes for the upcoming release here -->
2119

22-
- Move data source loading into standalone-app entry point (#215)
23-
- Allow an argument to be passed to loadJsonData (#215)
24-
- Add information for multiple pipelines in `nodes.json` (#192)
20+
# Release 3.5.0
21+
22+
## Major features and improvements
23+
24+
- **BREAKING CHANGE:** Rename default endpoint from `/api/nodes.json` to `/api/main`. This should only affect local JS development. (#239, #259)
25+
- Add an interactive minimap to the toolbar (#203, #238, #247)
26+
- 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)
27+
- Focus search bar with Cmd+F/Ctrl+F keyboard shortcuts (#261)
28+
- Allow an argument to be passed to loadJsonData, for external use if needed (#215)
29+
- 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)
30+
- Save disabled state of individual nodes in localStorage (#220)
31+
- Add automated testing for npm package import (#222)
32+
- Rename master branch to main ✊🏿 and deprecate develop (#248)
33+
34+
## Bug fixes and other changes
35+
36+
- Fix prepublishOnly task by changing from parallel jobs to sequential (#264)
37+
- Refactor layer visibility state (#253)
38+
- Expose an endpoint to query pipeline-specific node (#252)
39+
- Reduce toolbar-button height on smaller screens (#251)
40+
- Delete duplicate icon-button component (#250)
41+
- Fix mispelling in demo dataset (#249)
42+
- Improve performance of `getLinkedNodes` (#235)
43+
- Expose node and dataset metadata in "api/nodes/" endpoint (#231)
44+
- Move react-redux from peerDependencies to regular dependencies, and move react-scripts from dependencies to devDependencies (#223)
45+
- Refactor initial state setup (#220)
46+
- Enable Windows CI (#218, #241)
47+
- Increase width of layer rects (#209)
48+
- Update various dependency versions via Snyk/Dependabot (#262, #258, #257, #219, #246, #245, #244, #243, #242, #240, #237, #234, #233, #232, #230, #228, #227, #226, #225, #224, #214, #213, #212, #211, #210, #208, #207, #206, #205, #204)
2549

2650
# Release 3.4.0
2751

package-lock.json

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

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@quantumblack/kedro-viz",
3-
"version": "3.4.0",
3+
"version": "3.5.0",
44
"main": "lib/components/app/index.js",
55
"files": [
66
"lib"
@@ -118,4 +118,4 @@
118118
"not op_mini all"
119119
],
120120
"snyk": true
121-
}
121+
}

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.4.0"
31+
__version__ = "3.5.0"
3232

3333

3434
from kedro_viz.server import format_pipeline_data # noqa

0 commit comments

Comments
 (0)