All Versions
12
Latest Version
Avg Release Cycle
14 days
Latest Release
1282 days ago

Changelog History
Page 2

  • v2.0.0-beta.11 Changes

    May 20, 2020

    ๐Ÿš€ This is a small release fixing a issue when resolving files which are a symlink.

  • v2.0.0-beta.10 Changes

    May 18, 2020

    ๐Ÿš€ This release includes a new feature params. You are now able to set params without affecting a request body. Params could be used by transport implementations to set transport specific values.

    proxy "Logs" { input { header = ["Authorization"] params = "com.maestro.LogParams" } resource "policy" { request "com.maestro.Projects" "HasReadAccess" { header { Authorization = "{{ input.header:Authorization }}" } params { project\_id = "{{ input:project }}" } } } forward "com.maestro.Logs" {} }