chore(deps): update dependency hairyhenderson/gomplate to v3.10.0 #37

Merged
renovator merged 1 commits from renovate/docker-helper-tools into main 2021-09-25 01:02:18 +02:00
Member

This PR contains the following updates:

Package Update Change
hairyhenderson/gomplate minor v3.9.0 -> v3.10.0

Release Notes

hairyhenderson/gomplate

v3.10.0

Compare Source

🥳 It's high time for another gomplate release! This release contains quite a few
bug fixes and improvements.

Some packaging updates:

  • There is now a binary built for macOS on the Apple Silicon (M1/etc - darwin-arm64) platform!
  • For Windows users, there is now a Chocolatey package available!
  • Docker images are now also pushed to GitHub Container Registry

Be sure to also check out the multi-platform Docker images available at hairyhenderson/gomplate.

If you've gained value out of gomplate and want to find a way to encourage development, please consider sponsoring gomplate!

v3.10.0 (2021-09-24)

Full Changelog

Release Notes
New features and changes
New functions
Bug fixes
  • #​1217 Support git repos with default branches other than master (fixes #​1049)
  • #​1210 Fix CONSUL_HTTP_ADDR parsing (fixes #​1209)
  • #​1199 Fix a few filehandle leaks (fixes #​995)
  • #​1128 Fix data race in random functions
  • #​1127 Fix data race when gomplate is used programatically - fixed by removing use of globals in func namespaces (fixes #​1126)
  • #​1104 Stop emitting ANSI colour codes on Windows in unsupported terminals (partial fix for #​1095)
  • #​1082 Fix error when using --input-dir=. (found in #​1081)
  • #​1063 Fix difficulty in using gomplate programatically - bumped k8s.io/client-go to valid semver (fixes #​1061)
Documentation fixes/updates

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [hairyhenderson/gomplate](https://github.com/hairyhenderson/gomplate) | minor | `v3.9.0` -> `v3.10.0` | --- ### Release Notes <details> <summary>hairyhenderson/gomplate</summary> ### [`v3.10.0`](https://github.com/hairyhenderson/gomplate/releases/v3.10.0) [Compare Source](https://github.com/hairyhenderson/gomplate/compare/v3.9.0...v3.10.0) 🥳 It's high time for another gomplate release! This release contains quite a few bug fixes and improvements. Some packaging updates: - There is now a binary built for macOS on the **Apple Silicon** (M1/etc - `darwin-arm64`) platform! - For Windows users, there is now a [Chocolatey package](https://community.chocolatey.org/packages/gomplate) available! - Docker images are now also pushed to [GitHub Container Registry](https://ghcr.io/hairyhenderson/gomplate) Be sure to also check out the multi-platform Docker images available at [`hairyhenderson/gomplate`](https://hub.docker.com/r/hairyhenderson/gomplate). *If you've gained value out of gomplate and want to find a way to encourage development, please consider [sponsoring gomplate](https://github.com/sponsors/hairyhenderson)!* ##### [v3.10.0](https://github.com/hairyhenderson/gomplate/tree/v3.10.0) (2021-09-24) [Full Changelog](https://github.com/hairyhenderson/gomplate/compare/v3.9.0...v3.10.0) ##### Release Notes ##### New features and changes - [#&#8203;1216](https://github.com/hairyhenderson/gomplate/pull/1216) [`conv.ToInt`](https://docs.gomplate.ca/functions/conv/#conv-toint) now returns `-1` instead of overflowing on 32-bit systems to protect against [CWE-190](https://cwe.mitre.org/data/definitions/190.html) and [CWE-681](https://cwe.mitre.org/data/definitions/681.html) - [#&#8203;1214](https://github.com/hairyhenderson/gomplate/pull/1214) The [`crypto.RSAGenerateKey`](https://docs.gomplate.ca/functions/crypto/#crypto-rsageneratekey) function now enforces a minimum key size of 2048 bits to protect against [CWE-326](https://cwe.mitre.org/data/definitions/326.html). - [#&#8203;1195](https://github.com/hairyhenderson/gomplate/pull/1195) Now built with Go 1.17 - [#&#8203;1083](https://github.com/hairyhenderson/gomplate/pull/1083) New `darwin-arm64` binary - [#&#8203;1058](https://github.com/hairyhenderson/gomplate/pull/1058) [#&#8203;1092](https://github.com/hairyhenderson/gomplate/pull/1092) Stop printing newline on stderr when outputting to stdout ##### New functions - [#&#8203;1197](https://github.com/hairyhenderson/gomplate/pull/1197) New IP/CIDR parsing functions: [`net.ParseIP`](https://docs.gomplate.ca/functions/net/#net-parseip), [`net.ParseIPPrefix`](https://docs.gomplate.ca/functions/net/#net-parseiprefix), and [`net.ParseIPRange`](https://docs.gomplate.ca/functions/net/#net-parseiprange) ##### Bug fixes - [#&#8203;1217](https://github.com/hairyhenderson/gomplate/pull/1217) Support git repos with default branches other than `master` (fixes [#&#8203;1049](https://github.com/hairyhenderson/gomplate/pull/1049)) - [#&#8203;1210](https://github.com/hairyhenderson/gomplate/pull/1210) Fix `CONSUL_HTTP_ADDR` parsing (fixes [#&#8203;1209](https://github.com/hairyhenderson/gomplate/pull/1209)) - [#&#8203;1199](https://github.com/hairyhenderson/gomplate/pull/1199) Fix a few filehandle leaks (fixes [#&#8203;995](https://github.com/hairyhenderson/gomplate/issues/995)) - [#&#8203;1128](https://github.com/hairyhenderson/gomplate/pull/1128) Fix data race in `random` functions - [#&#8203;1127](https://github.com/hairyhenderson/gomplate/pull/1127) Fix data race when gomplate is used programatically - fixed by removing use of globals in func namespaces (fixes [#&#8203;1126](https://github.com/hairyhenderson/gomplate/issues/1126)) - [#&#8203;1104](https://github.com/hairyhenderson/gomplate/pull/1104) Stop emitting ANSI colour codes on Windows in unsupported terminals (partial fix for [#&#8203;1095](https://github.com/hairyhenderson/gomplate/issues/1095)) - [#&#8203;1082](https://github.com/hairyhenderson/gomplate/pull/1082) Fix error when using `--input-dir=.` (found in [#&#8203;1081](https://github.com/hairyhenderson/gomplate/issues/1081)) - [#&#8203;1063](https://github.com/hairyhenderson/gomplate/pull/1063) Fix difficulty in using gomplate programatically - bumped `k8s.io/client-go` to valid semver (fixes [#&#8203;1061](https://github.com/hairyhenderson/gomplate/issues/1061)) ##### Documentation fixes/updates - [#&#8203;1136](https://github.com/hairyhenderson/gomplate/pull/1136) Fix `files.IsDir` typo in doc example (fixes [#&#8203;1133](https://github.com/hairyhenderson/gomplate/pull/1133)) - [#&#8203;1120](https://github.com/hairyhenderson/gomplate/pull/1120) Add chocolatey package badges (thanks to [@&#8203;adriens](https://github.com/adriens)!) - [#&#8203;1121](https://github.com/hairyhenderson/gomplate/pull/1121) Explain how to install gomplate on Windows (thanks to [@&#8203;adriens](https://github.com/adriens)!) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovator added 1 commit 2021-09-25 00:02:01 +02:00
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
18174c2339
chore(deps): update dependency hairyhenderson/gomplate to v3.10.0
renovator merged commit 18174c2339 into main 2021-09-25 01:02:18 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: container/nginx#37
No description provided.