Update releasenotes-1.3.0-rc.md (#2508)

This commit is contained in:
Anderson Silva 2024-06-26 11:43:52 -05:00 коммит произвёл GitHub
Родитель f77304a685
Коммит 3daf2eda73
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 12 добавлений и 4 удалений

Просмотреть файл

@ -8,13 +8,21 @@
- Void will accept all types, including Void.
- Void will not be accepted by any other types (except Void). Trying to use the output from Set will result in an error.
- The following functions will return Void: Set, Clear, Remove, Notify (Repl), Help (Repl), Exit (Repl). Future functions that have no return value will return Void.
- Summarize (https://github.com/microsoft/Power-Fx/pull/2317): A new Power Fx function that combines grouping and aggregation in one call.
- Summarize (https://github.com/microsoft/Power-Fx/pull/2317): A new Power Fx function that combines grouping and aggregation in one call.\
`Summarize( Table, GroupByColumn1 [, GroupByColumn2 …], AggregateExpr1 As Name [, AggregateExpr1 As Name …] )`
- Suggestions (https://github.com/microsoft/Power-Fx/pull/2365): A new Power Fx REPL function that prints suggestions based on input. Use `|` char to determine the cursor position
- Suggestions (https://github.com/microsoft/Power-Fx/pull/2365): A new Power Fx REPL function that prints suggestions based on input. Use `|` char to determine the cursor position.\
`Suggestions("Abs|(")`
- Collect / ClearCollect (https://github.com/microsoft/Power-Fx/pull/2156): The Collect and ClearCollect functions now support multiple arguments, including primitive ones.\
`Collect(collection:*[...], item1:![...]|*[...], ...)`
`ClearCollect(collection:*[...], item1:![...]|*[...], ...)`
- Patch (https://github.com/microsoft/Power-Fx/pull/2269): The Patch function now supports different overloads.\
`Patch(dataSource:*[], Record, Updates1, Updates2,…)`\
`Patch(DS, record_with_keys_and_updates)`\
`Patch(DS, table_of_rows, table_of_updates)`\
`Patch(DS, table_of_rows_with_updates)`\
`Patch(Record, Updates1, Updates2,…)`
## Other: