Skip to content

Releases: chrisjpatty/flume

🚀 v0.6.3 Add support for React 17

01 Feb 01:26
Compare
Choose a tag to compare
  • 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.2...v0.6.3-0

v0.6.3-2

01 Feb 01:27
Compare
Choose a tag to compare
v0.6.3-2 Pre-release
Pre-release
v0.6.3-2

🐛 Repairing new deploy script

01 Feb 01:07
Compare
Choose a tag to compare
Pre-release
  • 🐛 Package.json in dist now points to root 41262ec
  • 🐛 Removed dist prefixes for module resolution entries a9d7295

v0.6.3-0...v0.6.3-1

v0.6.3-0

01 Feb 00:45
Compare
Choose a tag to compare
v0.6.3-0 Pre-release
Pre-release
v0.6.3-0

🐛 v0.6.2

13 Nov 18:36
Compare
Choose a tag to compare

🐛 Fixes a bug which could cause the context menu options to compress themselves in Safari. 👋 Thanks @numso!

🤖 v0.6.1 Support for non-browser environments

26 Oct 19:32
Compare
Choose a tag to compare

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

21 Oct 23:40
Compare
Choose a tag to compare

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

21 Oct 23:36
Compare
Choose a tag to compare

Context menu no longer crashes when testing for an outside click after closing.

🐛 v0.5.1

17 Aug 20:38
Compare
Choose a tag to compare

🐛 The node editor now fully supports server-side rendering by reconciling server-rendered default node ids when hydrating. Big thanks to @numso for this fix!

🚀 v0.5.0 Circular logic graph warnings

08 Aug 20:14
Compare
Choose a tag to compare

🚀 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.