Skip to content

Releases: apache/openwhisk-runtime-dotnet

1.18.0

13 Sep 22:55
[email protected]
a9706af
Compare
Choose a tag to compare
  • Upgrade gradle to 6.9.3 (#85)
  • Drop support for dotnet3.1 (EOL) (#83)

1.17.0

15 May 16:29
[email protected]
f0f4466
Compare
Choose a tag to compare

.NET 6.0

  • Initial release

.NET 3.1

  • Support array result include sequence action (#65)

1.16.0

11 Aug 15:49
[email protected]
8de8f31
Compare
Choose a tag to compare

.NET 2.2

  • Fix Akka version ($55)
  • Init json quickstart updates (#50)
  • Export init args to environment. (#44)

.NET 3.1

  • Fix Akka version ($55)
  • Init json quickstart updates (#50)
  • Export init args to environment. (#44)
  • Upgrade dotnet sdk packages (removed 2.2 references) (#42)

.NET Core 3.1 OpenWhisk Runtime v1.15.0

05 Aug 18:15
[email protected]
5c23d6c
Compare
Choose a tag to compare

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

05 Aug 18:14
[email protected]
5c23d6c
Compare
Choose a tag to compare

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

07 Jan 19:23
[email protected]
a9b70ca
Compare
Choose a tag to compare
  • 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

07 Jan 19:21
[email protected]
a9b70ca
Compare
Choose a tag to compare

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);
        }