.NET Core 2.2 OpenWhisk Runtime Container

1.15

Changes:

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

1.14

Changes:

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

1.13

Changes:

  • Initial release