Releases: gruntwork-io/boilerplate
v0.3.7: Support for not_path in skip
#77: Implemented support for not_path
configuration for skip
directive. You can now specify which files should be kept when the skip
condition is true. All files that do NOT match the not_path
configuration will be skipped.
v0.3.6: var_files for dependencies
v0.3.6-alpha.1
DO NOT USE: integration testing release
v0.3.5: jsonnet support
#72: We now support rendering jsonnet files as an alternative to go templating. See the updated README for more details.
v0.3.4: skip_files for conditionally skipping files
#71: This release introduces skip_files
in the configuration, which can be used to conditionally skip files in the template folder. Refer to the relevant section in the README for more info.
v0.3.3: Add `toYaml` function
This release adds a new helper function called toYaml
that will render a given input variable to a YAML string. This is similar to the toJson
sprig function.
v0.3.2: Support rendering variable inputs to json
This release fixes an issue with using toJson
and related sprig functions within Boilerplate templates. It's now possible to read variable inputs from Boilerplate YML files and render those to JSON.
See related PR.
v0.3.1: Add partials feature
Adds the new partials
feature for better template reuse.