Releases: chrisjpatty/flume
🚀 v0.6.3 Add support for React 17
- Removed outdated prepare and predeploy scripts 2e28024
- Added np script settings 8ed4449
- 🚀 Added np release script 9829482
- 🐛 Added install step to the CI test for example folder 645e3e0
- 🐛 Adds wait-on module to the CI test 355a2dc
- 🐛 Repairs Github test.yml 11161a3
- Merge pull request #72 from chrisjpatty/features/react-17-support ad5b75c
- Removes cypress video folder a3b22bd
- 🐛 Fixes tests and adds CI action 699b010
- 🚀 Adds support for React 17+ 17d9df8
v0.6.3-2
v0.6.3-2
🐛 Repairing new deploy script
v0.6.3-0
v0.6.3-0
🐛 v0.6.2
🤖 v0.6.1 Support for non-browser environments
The dependency on nanoid
has been updated to use the cross-environment export. This means Flume can be used more easily in Node and non-Webpack bundlers like Snowpack. Thanks @PhilGarb for this!
🎉 v0.6.0 Dynamic Ports
Dynamic Ports
Ports may now change over the lifecycle of the node editor by passing a curried function to the inputs
and outputs
keys. Huge thanks to @numso for the idea, code, tests, and documentation for this feature. Extended documentation for this feature is available at flume.dev/docs/dynamic-nodes
🔥 Hotfix for context menu crashes
Context menu no longer crashes when testing for an outside click after closing.
🐛 v0.5.1
🚀 v0.5.0 Circular logic graph warnings
🚀 Circular connections are now detected when attempting to connect nodes. By default these connections will be rejected, and a warning message will be displayed. This behavior may be overriden by a new NodeEditor prop.
🚀 New toast notification system. Toast notifications come in 4 types: info, warning, danger, and success.
🚀 New NodeEditor prop: circularBehavior with 3 possible values:
allow
: Circular connections are allowed with no warning.warn
: Circular connections are allowed but with a warning.prevent
: Circular connections are not allowed, and a warning is shown if attempted. This is the default.
🐛 Corrects an issue where in some cases connections could be made by dropping on an output port.
🐛 All stage state changes now trigger connection recalculations.