Skip to content

Commit 67ae599

Browse files
committed
minor dep updates, changelog & setup.py cleanup, and rebuild
1 parent 4126adf commit 67ae599

17 files changed

+10032
-1044
lines changed

CHANGELOG.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [UNRELEASED]
88

9+
### Removed
10+
* [#202](https://github.com/plotly/dash-cytoscape/pull/202) Drop support for Python 3.7 and below. New minimum Python version is 3.8
11+
912
### Added
10-
* `prettier` and `black` lint/format scripts have been added.
11-
* React 18 job has been added to circleCI workflow.
13+
* [#203](https://github.com/plotly/dash-cytoscape/pull/203) Add `wheelSensitivity` prop to control the speed of scroll wheel interactions
14+
* [#200](https://github.com/plotly/dash-cytoscape/pull/200) Add `CyLeaflet` all-in-one component for network graphs overlaid on Leaflet maps. Requires the `dash-leaflet` package, which can be installed as an extra with this package: `pip install dash-cytoscape[leaflet]`.
15+
* [#196](https://github.com/plotly/dash-cytoscape/pull/196) and [#201](https://github.com/plotly/dash-cytoscape/pull/201) Add context menu support: `contextMenu` prop for configuration and `contextMenuData` prop for event handling
1216
* [#195](https://github.com/plotly/dash-cytoscape/pull/195)
1317
- Add `clearOnUnhover` property.
1418
- Add timestamp to `tapNodeData`, `tapEdgeData`, `mouseoverNodeData`, and `mouseoverEdgeData` properties.
19+
* [#147](https://github.com/plotly/dash-cytoscape/pull/147) Add `fcose` layout
1520

1621
### Changed
17-
* Dash has been upgraded to 2.* in requirements.txt and tests/requirements.txt.
18-
* Dependencies have been upgraded to lastest versions.
19-
* CircleCI workflow has been updated to version 2.1.
20-
* Python version in CircleCI workflow has been updated to 3.11.
21-
* Node version in CircleCI workflow has been updated to 20.5.1.
2222
* [#195](https://github.com/plotly/dash-cytoscape/pull/195) Update `elements` positions when nodes are dragged.
23+
* [#193](https://github.com/plotly/dash-cytoscape/pull/193) and [#202](https://github.com/plotly/dash-cytoscape/pull/202) Upgrade JS dependencies
2324

2425
### Fixed
25-
* CircleCI workflow has been fixed.
26+
* [#147](https://github.com/plotly/dash-cytoscape/pull/147) Fix `cose-bilkent` layout
2627

27-
## [0.3.0] - 2021-05-19
28+
## [0.3.0] - 2021-05-19
2829

2930
### Added
3031
* Contributed initial build of Julia package.
@@ -45,7 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4546
* Contributed initial build of R package.
4647
* Added access to cytoscape.js PNG and JPG image generation API through `generateImage` and
4748
`imageData` properties (PR [#88](https://github.com/plotly/dash-cytoscape/pull/88)).
48-
* Added ability to download image files generated with `generateImage` client-side without sending
49+
* Added ability to download image files generated with `generateImage` client-side without sending
4950
data to the server (PR [#88](https://github.com/plotly/dash-cytoscape/pull/88)).
5051
* Used the newly added `generateImage` and `imageData` properties to enable svg generation using [cytoscape-svg](https://github.com/kinimesi/cytoscape-svg).
5152
* Added responsive cytoscape.js graph feature toggled using the `responsive` property (PR [#93](https://github.com/plotly/dash-cytoscape/pull/92)).
@@ -65,7 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6566
* Upgrade `react-cytoscape.js` to latest.
6667

6768
### Fixed
68-
* `setup.py`: Use `packages=find_packages(include=[package_name, package_name + ".*"])` so that all
69+
* `setup.py`: Use `packages=find_packages(include=[package_name, package_name + ".*"])` so that all
6970
subpackages like `utils` will be included when you `pip install dash-cytoscape`.
7071
* Issue where `dash-cytoscape` cannot read property of 'length' of undefined when elements is not specified.
7172
* `tests.test_interactions`.
@@ -156,7 +157,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
156157
into a Cytoscape graph, with interactive features such as highlighting.
157158

158159
### Updated
159-
* React-Cytoscapejs version, from 1.0.1 to 1.1.0
160+
* React-Cytoscapejs version, from 1.0.1 to 1.1.0
160161

161162
## [0.0.2] - 2018-11-08
162163
### Added

dash_cytoscape/dash_cytoscape.dev.js

Lines changed: 644 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_cytoscape/dash_cytoscape.min.js

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

dash_cytoscape/dash_cytoscape_extra.dev.js

Lines changed: 31 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_cytoscape/dash_cytoscape_extra.min.js

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

dash_cytoscape/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
"uuid": "^9.0.1"
5454
},
5555
"devDependencies": {
56-
"@babel/core": "^7.23.7",
57-
"@babel/eslint-parser": "^7.23.3",
58-
"@babel/preset-env": "^7.23.8",
56+
"@babel/core": "^7.23.9",
57+
"@babel/eslint-parser": "^7.23.9",
58+
"@babel/preset-env": "^7.23.9",
5959
"@babel/preset-react": "^7.23.3",
6060
"babel-loader": "^9.1.3",
6161
"copyfiles": "^2.4.1",

deps/dash_cytoscape.dev.js

Lines changed: 644 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deps/dash_cytoscape.min.js

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

deps/dash_cytoscape_extra.dev.js

Lines changed: 31 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deps/dash_cytoscape_extra.min.js

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

0 commit comments

Comments
 (0)