Skip to content

Releases: gruntwork-io/boilerplate

v0.4.4

08 Jun 16:11
f1fd3a4
Compare
Choose a tag to compare

#109: Upgraded various dependencies to the latest version.

v0.4.3

04 Mar 19:09
8e17eec
Compare
Choose a tag to compare

#98: Implemented the ability to enforce boilerplate version when processing a template. You can now specify a version constraint in your boilerplate templates using the required_version config.

E.g.:

required_version: "~> 0.4.3"

v0.4.3-alpha.1

04 Mar 17:35
2e9f665
Compare
Choose a tag to compare
v0.4.3-alpha.1 Pre-release
Pre-release

Integration testing of #94

v0.4.2

01 Mar 18:15
fcb2e03
Compare
Choose a tag to compare

#95: Bump version of sprig to 3.2.1. You can now use all new functions that were introduced since 2.22.0, such as htpasswd.

v0.4.1

01 Mar 16:05
9b8b8d5
Compare
Choose a tag to compare

#92: Fixed bug where boilerplate continuously attempts to render templates defined in variable default value. This prevented rendering values that targeted go templates, like GitHub Actions.

v0.4.0

25 Feb 19:37
f03a8a9
Compare
Choose a tag to compare

#87: Updated templateFolder and outputFolder helper functions to return absolute paths instead of relative. This makes the resulting path behave as expected when they are set from relative paths in the CLI (e.g., boilerplate --template-url ./template/foo --output-folder ./out).

Backward compatibility

For almost all use cases of these functions, this should be functionally equivalent to the previous version. However, if you are reliant on the path being relative (e.g., if you are outputting the function output directly in a template), this change in behavior could break your existing templates as the absolute path will now be output.

v0.3.9

12 Oct 16:43
c6bcf4b
Compare
Choose a tag to compare

#81: Fixed bug where boilerplate did not render the path and not_path attribute of skip_files and engines as templates.

v0.3.8: Bugfix not_path on skip, and introduce pathExists helper

30 Sep 16:27
176173e
Compare
Choose a tag to compare

#79: Fixed bug where not_path on skip directive did not work correctly.

#80: Added helper function pathExists that returns whether the given path exists on the filesystem.

v0.3.7: Support for not_path in skip

21 Sep 21:31
51b047b
Compare
Choose a tag to compare

#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

08 Dec 06:20
1683033
Compare
Choose a tag to compare

#73: You can now specify var_files to render dependencies with.

#74: You can now marshal the BoilerplateConfig struct to YAML.