Skip to content

Commit 58d9968

Browse files
3.7.0 (#300)
# Release 3.7.0 ## Major features and improvements - Finish and release the new pipeline selector, which allows you to switch between different modular pipelines - Add phase 1 of the new node metadata panel front-end - behind a feature flag, for now - Improve SVG rendering performance ## Bug fixes and other changes - Fix JS bug in Safari - Fix failing CI - Don't run eslint against .json files on pre-commit - Use the same JSON mock data files for JS+Python end unit/e2e tests
1 parent 897feb1 commit 58d9968

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

RELEASE.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,28 @@ Please follow the established format:
1717

1818
<!-- Add release notes for the upcoming release here -->
1919

20+
# Release 3.7.0
21+
22+
## Major features and improvements
23+
24+
- Finish and release the new pipeline selector, which allows you to switch between different modular pipelines (#286, #294, #296, #297, #302, #303)
25+
- Add phase 1 of the new node metadata panel front-end - behind a feature flag, for now (#276, #303)
26+
- Improve SVG rendering performance (#290)
27+
28+
## Bug fixes and other changes
29+
30+
- Fix JS bug in Safari (#306)
31+
- Fix failing CI (#304, #305)
32+
- Don't run eslint against .json files on pre-commit (#292)
33+
- Use the same JSON mock data files for JS+Python end unit/e2e tests (#279)
34+
2035
# Release 3.6.0
2136

2237
## Major features and improvements
2338

2439
- Redesign main sidebar (#236, #283)
2540
- Drop Kedro 0.14.* support (#277)
2641

27-
2842
## Bug fixes and other changes
2943

3044
- 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)

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.6.0",
3+
"version": "3.7.0",
44
"main": "lib/components/app/index.js",
55
"files": [
66
"lib"
@@ -117,4 +117,4 @@
117117
"not op_mini all"
118118
],
119119
"snyk": true
120-
}
120+
}

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.6.0"
31+
__version__ = "3.7.0"
3232

3333

3434
from kedro_viz.server import format_pipeline_data # noqa

0 commit comments

Comments
 (0)