diff --git a/CHANGELOG.md b/CHANGELOG.md index c3511d48..d0a7c765 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ ## [Unreleased] -* Deprecate support for unmaintained dependency managers: `dep`, `gb`, `glide`, `godep` and `govendor`. Support for these dependency managers will be removed on March 1, 2025. Apps using these dependency managers should migrate to Go modules as soon as possible. Learn more about using Go modules on Heroku [here](https://devcenter.heroku.com/articles/go-modules). +* Deprecate support for unmaintained dependency managers: `dep`, `gb`, `glide`, `godep` and `govendor`. + Support for these dependency managers will be removed on March 1, 2025. + Apps using these dependency managers should migrate to Go modules as soon as possible. + Learn more about using Go modules on Heroku [here](https://devcenter.heroku.com/articles/go-modules). +* Add support for wwwauth[] git credential arguments ## [v195] - 2024-08-13 diff --git a/lib/common.sh b/lib/common.sh index 07b75820..62ad6b6e 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -270,6 +270,9 @@ setGitCredHelper() { password) password="${value}" ;; + wwwauth[]) + : + ;; *) echo "Unsupported key: ${key}=${value}" >&2 exit 1