Skip to content

Releases: JamesRandall/FunctionMonkey

Output bindings on timer triggers

05 Jun 19:45
Compare
Choose a tag to compare

Now supported. Had overlooked this on the output binding release.

Custom claims binding

12 May 10:52
Compare
Choose a tag to compare

A custom claims binder can now be registered to support, for example, claims binding based on external runtime metadata.

OpenAPI route prefix bug fix

09 May 11:27
Compare
Choose a tag to compare
  • Fixed the issues with API prefixes and the OpenAPI definitions

Routeless HTTP function support

05 Apr 11:16
Compare
Choose a tag to compare

Added support for HTTP triggers with no route in order to support Logic App integrations. To use simply don't use a path on the .HttpRoute and .HttpFunction methods. The function will be given the name of your command.

Output bindings and SignalR support

26 Mar 11:23
Compare
Choose a tag to compare
  • Output bindings now supported
  • SignalR now supported
  • Auto discovery of commands and handlers
  • Default connection string support

Minor breaking change to the builder. The .Functions() call has to be the last method that is called so I've made its return type void.

GUIDs supported in route parameters

17 Mar 20:22
Compare
Choose a tag to compare

There is a bug in Azure Functions that prevents GUIDs from working as route parameters - you'll get a bug as the runtime processes your route.

I've added a workaround within Function Monkey so that GUIDs are accepted as strings on the route then internally parse them into GUIDs for binding to commands.

v1.1.1

17 Mar 13:10
Compare
Choose a tag to compare
  • Startup structure improvements to support better testing
  • Includes v2.0.0 of the test framework with better end to end support for HTTP triggers

Interim Test Framework Update Release v1.1.3

16 Mar 13:26
Compare
Choose a tag to compare
  • The acceptance test framework now includes validators in the dispatch pipeline

v1.0.0 - Out of beta release!

15 Mar 12:27
Compare
Choose a tag to compare
  • Proxies no longer required
  • Validation responses can be customised
  • Route parameters can be optional
  • Integration test suite

Some easy to fix breaking changes - see migration guide here:

https://functionmonkey.azurefromthetrenches.com/guides/upgradingTo1.0.html

Bug fixes and validation improvement

12 Mar 20:11
Compare
Choose a tag to compare
  • Resolved issue #33
  • Resolved issue #27
  • Improved validation registration as per enhancement #43