Merged
Conversation
✅ Deploy Preview for lando-mailpit ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
This comment has been minimized.
This comment has been minimized.
ad2f4e6 to
d92696b
Compare
|
Bugbot Autofix prepared fixes for 3 of the 3 bugs found in the latest run.
Or push these changes by commenting: Preview (b985d49979)diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
-* Added Mailpit v1.28 and v1.29 support.
-* Set default Mailpit version to v1.29.
+- Added Mailpit v1.28 and v1.29 support.
+- Set default Mailpit version to v1.29.
## v1.0.1 - [June 29, 2025](https://github.com/lando/mailpit/releases/tag/v1.0.1)
diff --git a/builders/mailpit.js b/builders/mailpit.js
--- a/builders/mailpit.js
+++ b/builders/mailpit.js
@@ -32,7 +32,7 @@
*/
const defaultConfig = {
version: '1.29',
- supported: ['1.25', '1.26', '1.27', '1.28', '1.29'],
+ supported: ['1.26', '1.27', '1.28', '1.29'],
mailFrom: ['appserver'],
maxMessages: 500,
port: 1025,
diff --git a/docs/index.md b/docs/index.md
--- a/docs/index.md
+++ b/docs/index.md
@@ -74,5 +74,4 @@
- [1.28](https://hub.docker.com/r/axllent/mailpit/)
- [1.27](https://hub.docker.com/r/axllent/mailpit/)
- [1.26](https://hub.docker.com/r/axllent/mailpit/)
-- [1.25](https://hub.docker.com/r/axllent/mailpit/)
- [custom](https://docs.lando.dev/services/lando-3.html#overrides)
diff --git a/test/mailpit.spec.js b/test/mailpit.spec.js
--- a/test/mailpit.spec.js
+++ b/test/mailpit.spec.js
@@ -13,7 +13,7 @@
* @requires builders/mailpit
*/
-const DEFAULT_MAILPIT_VERSION = '1.27';
+const DEFAULT_MAILPIT_VERSION = '1.29';
const chai = require('chai');
const expect = chai.expect; |
414338a to
3481f90
Compare
- Added support for Mailpit v1.28 and v1.29 - Set default version to v1.29 - Updated supported versions to 1.26, 1.27, 1.28, 1.29 - Dropped v1.25 from supported versions - Updated examples and documentation
3481f90 to
e9ad2cb
Compare
This was referenced Feb 23, 2026
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Summary
Closes the gap from all those patch-version PRs that were clogging things up. This is what the auto-updater should have produced over time if it had been filtering to minor versions only.
Changes
['1.25', '1.26', '1.27']→['1.26', '1.27', '1.28', '1.29']Closed PRs
Closed 19 stale patch-version PRs (#16-#40) that were created by the broken auto-update workflow (now fixed in #45).
Note
Low Risk
Primarily version bumps and workflow automation changes; risk is limited to potential mistakes in the auto-updater’s regex/rewrite logic when editing
builders/mailpit.jsand docs.Overview
Updates the Mailpit plugin to default to
1.29, expands the supported minor versions list, and introduces alegacyversion list (e.g. demoting1.25).Refactors the
auto-update-versionsGitHub Action to only consider minor tags from Docker Hub (avoiding patch-version churn), maintain up to 6 supported minors while overflowing older ones intolegacy, and propagate the version bump across docs/examples/tests plus an UNRELEASED changelog entry (including a legacy warning section indocs/index.md).Written by Cursor Bugbot for commit e9ad2cb. This will update automatically on new commits. Configure here.