Skip to content

Commit

Permalink
Merge branch 'main' into jwl/deprecate-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwlewis authored Sep 3, 2024
2 parents 04decc5 + 8f2a960 commit 1461e5a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions lib/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,9 @@ setGitCredHelper() {
password)
password="${value}"
;;
wwwauth[])
:
;;
*)
echo "Unsupported key: ${key}=${value}" >&2
exit 1
Expand Down

0 comments on commit 1461e5a

Please sign in to comment.