Skip to content

v0.9.11

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Jun 18:04
· 71 commits to master since this release
ff46602

CLI Commands and Options

  • GitHub API response is cached to prevent API rate limit exceeded error (resolves #131)
  • New feature: custom naming templates (#126) via the --namingTemplate <template.json>. It allows to define the name of Azure Resources.
    It requires you always specify the --resourceGroup option. The format of the template file is
{
  "ResourceGroupPrefix": "...",
  "ResourceGroupSuffix": "...",
  "FunctionAppPrefix": "...",
  "FunctionAppSuffix": "...",
  "HostingPlanPrefix": "...",
  "HostingPlanSuffix": "...",
  "AppInsightPrefix": "...",
  "AppInsightSuffix": "...",
  "StorageAccountPrefix": "...",
  "StorageAccountSuffix": "..."
}

Rule Language

No changes.

Build & Test

  • Improved Integration tests