Releases: microsoft/Power-Fx
Releases · microsoft/Power-Fx
1.2.0 Release
GA build on Nuget.org: https://www.nuget.org/packages/Microsoft.PowerFx.Core/1.2.0
1.1.0 release
GA build on Nuget.org: https://www.nuget.org/packages/Microsoft.PowerFx.Core/1.1.0
Release notes; https://github.com/microsoft/Power-Fx/blob/main/releasenotes/releasenotes-1.1.0.md
0.2.6-preview
Allow Void expressions to be used within ForAll (#1527) If a ForAll expression is used within a context where its result is not needed, then it should be able to use void expressions, like in the example below. This change allows it, making the entire result of the ForAll expression a void result. ForAll( Sequence(4), If( Mod(Value, 2) = 1, Patch( table, Index(table, Value), { IsOdd: true } ), // this returns a record, incompatible with tables Collect( table, { Value: Value, IsOdd: false }, { Value: Value + 1, IsOdd: true } // this returns a table ) )
0.2.2-preview Release
Many improvements, including:
- Updates namespaces (see #361) - this is a breaking change from 0.2.1-preview.
- More control over configuration and adding custom functions and optionsets.
- publicly expose the syntax tree from the parser.
- More functions implemented in interpreter.
- Better config story for adding custom functions
- Better host marshalling, including add virtual RecordValues and ITypeMarshallers for marshalling .net objects.
- OptionSet support
- Improved error handling.
- DisplayName support
- ParseJson support.