Skip to content

Releases: gruntwork-io/boilerplate

v0.2.15

17 Jul 13:46
Compare
Choose a tag to compare

#38: You can now conditionally enable or disable dependencies using the skip attribute.

v0.2.14

14 Jul 01:12
Compare
Choose a tag to compare

#37: For map variables, render the key in addition to the value.

v0.2.13

13 Jul 23:05
Compare
Choose a tag to compare

#36: Fix reference lookup so it works with dependencies.

v0.2.12

13 Jul 17:17
Compare
Choose a tag to compare

#35: Add support for variable references

v0.2.11

13 Jul 15:17
Compare
Choose a tag to compare

#34: You can now use Go templating syntax in variable values.

v0.2.10

13 Jul 13:45
Compare
Choose a tag to compare

#33: You can now use interpolations in the template-folder and output-folder params of dependencies.

v0.2.9

09 Mar 12:43
Compare
Choose a tag to compare

#32: Add support for an env helper that allows you to look up environment variables in your boilerplate templates.

v0.2.8

08 Mar 13:52
Compare
Choose a tag to compare

#31: The shell helper and hooks now allow you to specify environment variables to pass to your scripts.

v0.2.7

02 Feb 22:02
Compare
Choose a tag to compare
  • NEW FEATURE: Boilerplate now supports the following new helpers:
    • boilerplateConfigDeps DEPENDENCY_NAME PROPERTY: Return the value of the given property for the given Dependency
    • boilerplateConfigVars VAR_NAME PROPERTY: Return the value of the given property for the given Variable
  • NEW FEATURE: Boilerplate now exposes the following global template variables. See the docs for more information on how to use them:
    • BoilerplateConfigVars: A map of all variables defined in the root boilerplate.yml.
    • BoilerplateConfigDeps: A map of all dependencies defined in the root boilerplate.yml.
      • This: A map of the current boilerplate.yml being processed.
      • This.Config: A map of the Boilerplate configuration in use.
      • This.Options: A map of the Boilerplate options in use.
      • This.CurrentDep: A map of the Boilerplate Dependency currently being processed.

v0.2.6

18 Jan 00:25
Compare
Choose a tag to compare
  • Boilerplate will now correctly run before hooks before processing any dependencies.