Version number update. Update to ChangeLog.md. Minor update to SendEmailNotification.

This commit is contained in:
NileshGhodekar 2017-07-20 19:12:41 -07:00
Родитель 8c115bf4ac
Коммит bba048620b
3 изменённых файлов: 21 добавлений и 4 удалений

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

@ -7,6 +7,22 @@ All notable changes to MIMWAL project will be documented in this file. The "Unre
* Support for multi-valued attributes in `[//Effective]` lookup in AuthZ workflows.
* Implement Approve Request Activity.
------------
### Version 2.17.0721.0
#### Added
* Support for Query and Iternation in SendEmailNotification activity.
* [DateTimeFromString][DateTimeFromStringFunction] function.
#### Fixed
* Fixed ParameterValue* functions to return attribute values in the original datatype than as string.
* Correctly setting connection timeout for ODBC connection in ExecuteSqlNonQuery and ExecuteSqlScalar functions.
------------
### Version 2.17.0414.0
#### Added
@ -18,6 +34,8 @@ All notable changes to MIMWAL project will be documented in this file. The "Unre
* New function [ExecuteSqlScalar][ExecuteSqlScalarFunction]
* New function [ValueByKey][ValueByKeyFunction]
------------
### Version 2.16.1028.0
#### Changed
@ -144,3 +162,4 @@ All notable changes to MIMWAL project will be documented in this file. The "Unre
[ExecuteSqlNonQueryFunction]: https://github.com/Microsoft/MIMWAL/wiki/ExecuteSqlNonQuery-Function
[ExecuteSqlScalarFunction]: https://github.com/Microsoft/MIMWAL/wiki/ExecuteSqlScalar-Function
[ValueByKeyFunction]: https://github.com/Microsoft/MIMWAL/wiki/ValueByKey-Function
[DateTimeFromStringFunction]: https://github.com/Microsoft/MIMWAL/wiki/DateTimeFromString-Function

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

@ -22,7 +22,7 @@ namespace MicrosoftServices.IdentityManagement.WorkflowActivityLibrary
/// Build Number (MMDD)
/// Revision (if any on the same day)
/// </summary>
internal const string Version = "2.17.0716.0";
internal const string Version = "2.17.0721.0";
/// <summary>
/// File Version information for the assembly consists of the following four values:
@ -31,6 +31,6 @@ namespace MicrosoftServices.IdentityManagement.WorkflowActivityLibrary
/// Build Number (MMDD)
/// Revision (if any on the same day)
/// </summary>
internal const string FileVersion = "2.17.0716.0";
internal const string FileVersion = "2.17.0721.0";
}
}

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

@ -469,8 +469,6 @@ namespace MicrosoftServices.IdentityManagement.WorkflowActivityLibrary.Activitie
#endregion
private ComponentActivities.ResolveLookups ResolveLookups;
private ComponentActivities.ResolveQueries ResolveQueries;
private IfElseBranchActivity QueriesDoHaveValueExpressions;
private ComponentActivities.ResolveQueries RunQueriesOnce;
private IfElseBranchActivity QueriesHaveNoValueExpressions;