From 6dedc5f6656b37a38b0e180a0b96c1f26b5b0c3d Mon Sep 17 00:00:00 2001 From: Brendan Smith Date: Tue, 21 Jul 2026 17:01:06 -0400 Subject: [PATCH 1/2] Add CHANGELOG entry for addon container naming fix --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3343d0..4db2e13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Removed support for EOL `heroku-20` builds +### Fixed + +* Builds that use an in-dyno test database or Redis add-on (`heroku-postgresql:in-dyno`, + `heroku-redis:in-dyno`) could intermittently fail during the pre-build phase with an + error like `The container name "/db" is already in use`. These add-on containers now + start with unique names, so a build no longer collides with a leftover container from + a previous run. + ## [2.5.0] - 2025-10-21 ### Added From 1e4e8aedf12f39006924e1dec6d780b4b8b3229f Mon Sep 17 00:00:00 2001 From: Brendan Smith Date: Tue, 21 Jul 2026 19:01:37 -0400 Subject: [PATCH 2/2] Cut 2.6.0 release in CHANGELOG --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4db2e13..e05e6ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.6.0] - 2026-07-21 + ### Changed * Removed support for EOL `heroku-20` builds