Releases: apache/openwhisk-runtime-dotnet
Releases · apache/openwhisk-runtime-dotnet
1.18.0
1.17.0
1.16.0
.NET Core 3.1 OpenWhisk Runtime v1.15.0
Changes:
- Increased MaxRequestBodySize, so larger zip files can be uploaded (#33)
- Get the latest security fixes (apk upgrade) with every build.
.NET Core 2.2 OpenWhisk Runtime v1.15.0
Changes:
- Increased MaxRequestBodySize, so larger zip files can be uploaded (#33)
- Get the latest security fixes (apk upgrade) with every build.
.NET Core 3.1 OpenWhisk Runtime v1.14.0
- Initial release of .NET Core 3.1 support
- Support for async methods. Example:
public async Task<JObject> MainAsync(JObject args)
{
await Task.Delay(10); // Just do a delay to have an async/await process occur.
return (args);
}
.NET Core 2.2 OpenWhisk Runtime v1.14.0
Changes since 1.13.0
- Support for async methods. Example:
public async Task<JObject> MainAsync(JObject args)
{
await Task.Delay(10); // Just do a delay to have an async/await process occur.
return (args);
}