Openwhisk Runtime Dotnet Versions Save

Apache OpenWhisk Runtime .Net supports Apache OpenWhisk functions written in .Net languages

[email protected]

1 year ago

.NET 6.0

  • Initial release

.NET 3.1

  • Support array result include sequence action (#65)

[email protected]

2 years ago

.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)

[email protected]

3 years ago

Changes:

  • Increased MaxRequestBodySize, so larger zip files can be uploaded (#33)
  • Get the latest security fixes (apk upgrade) with every build.

[email protected]

3 years ago

Changes:

  • Increased MaxRequestBodySize, so larger zip files can be uploaded (#33)
  • Get the latest security fixes (apk upgrade) with every build.

[email protected]

4 years ago
  • 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);
        }

[email protected]

4 years ago

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