Skip to content

Releases: TIBCOSoftware/flogo

1.6.+

27 Jun 19:39
f36104f
Compare
Choose a tag to compare

newer releases can be found here:
https://github.com/project-flogo

this Repo is just the pointer to the quickly growing Flogo project that got splitter up into a number of Repos under a separated GitHub Org.

v0.5.8

06 Feb 22:42
Compare
Choose a tag to compare
v0.5.8 Pre-release
Pre-release
Update Showcase Receive Azure IOT HUB message (#454)

* updates the showcase to point to azureiot

* updates the Author name to iSteer Technologies

* resolves merge conflcits

* Updates the list to work with send data to Azure IOT HUB

* updates the showcase data for new activity that receives messages from Azure IotHub

v0.5.7

12 Nov 23:04
d4e640d
Compare
Choose a tag to compare
v0.5.7 Pre-release
Pre-release
Merge pull request #427 from mmussett/patch-6

Update items.toml

v0.5.6

13 Aug 19:47
2e09fea
Compare
Choose a tag to compare
Merge pull request #339 from TIBCOSoftware/pubnub-demo

Adding a sample app for PubNub

v0.5.5

30 Jun 04:33
Compare
Choose a tag to compare

This release focuses on on squashing bugs, as well as the introduction of the Golang API.

Features Added

  • Golang API: Enables Go developers to leverage activities, triggers and flows within their own Go applications. (#289)
  • Array length function for conditions (#282)

Flogo Flows Web UI

  • Trigger configurations now support referencing of $property & $env
  • Build and target shim triggers from UI (#252)

Bugs Squashed

v0.5.4

18 May 19:35
ff83069
Compare
Choose a tag to compare

This release is a minor release focusing on squashing bugs. No new major features have been added.

Bugs Squashed

  • Array input to flow throwing a conversion error (#212)
  • Cannot iterate over an output array from a previous activity (#213)
  • Lambda trigger does not return proper payload on APIGW request (#249)
  • Remove Reply (Legacy) (#219)
  • Iterator: unable to evaluate path (#272)
  • Iterator does not recognize my map attribute (#273)
  • Flogo webui reports successful install when logs show fail (#195)
  • Flogo Web: If activity/trigger fails to install web ui does not recover from failure (#114)
  • Fix an issue to recongnize boolean in expression condition (TIBCOSoftware/flogo-lib#152)

Features Added

v0.5.3

30 Mar 03:06
ba92bf9
Compare
Choose a tag to compare

This release is a minor release focusing just on squashing bugs. No new features have been added.

Bugs Squashed

v0.5.2

22 Mar 03:28
895f145
Compare
Choose a tag to compare

This release captures a number of core changes and enhancements. Backward compatibility has been maintained.

Key Changes/Features

  • Subflows: The ability to invoke a flow within the same application scope as the current flow, enabling app devs to distribute app logic into logical functions/flows within the application scope.
  • Additional mapping types: Additional mapping types have been exposed to enable function-level invocation within mappings (for example, contact). *Note, the function support is not exposed via the Web UI, but is available when building your app models directly.
  • New application model: The Flogo application model has been cleaned up and simplified to expose a more intuitive format for manual editing and consumption.
  • New activity: AWS SNS
  • As always, general bug fixes and enhancements

v0.5.1

05 Feb 22:13
fe27c2a
Compare
Choose a tag to compare

As always, we’re out to squash bugs and enhance the developer experience.

Key changes/features:

  • Iterators: Support for iterating over an array or n times and invoking a single activity.
  • Native support for AWS Lambda. A Flow can now be built to target running as a function within AWS Lambda using native Golang support.
  • Support for referencing $env & $properties for trigger settings (for example, defining the port via an environment variable)
  • CLI switch to go dep from gb. This has an impact on users of the CLI. Note the updated documentation to reflect the changes (https://tibcosoftware.github.io/flogo/flogo-cli/flogo-cli/). Any current project will need to be upgraded using the supplied CLI commands.

v0.5.0

22 Nov 01:00
Compare
Choose a tag to compare

As always, we’re out to squash bugs and enhance the developer experience.

Key changes/features:

  • Triggers and flows have now been decoupled. Meaning that multiple triggers can be mapped to a single flow enabling a single flow to process logic from multiple sources (HTTP, Kafka, MQTT, an as an example).
  • Flows as Functions: A flow exposes function-like constructs. A flow can define input and output parameters. This allows the flow to operate without any dependency on the trigger(s).
  • Shim-style triggers. These are triggers that override the entry point of the framework.
  • First-class support for AWS Lambda. A Flow can now be built to target running as a function within AWS Lambda.
  • Native Google TensorFlow activity used to inference data against a tf.estimator protobuf model.
  • Revised evaluation syntax. A simplified and revised syntax for evaluation mapping expressions.
  • Object-type mapping. This enables a flow developer to construct a JSON response object with values from the flow context.