[PR #443] [MERGED] fix(deps): update module github.com/wneessen/go-mail to v0.6.2 #4212

Closed
opened 2026-04-16 12:54:25 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-vikunja/vikunja/pull/443
Author: @renovate[bot]
Created: 3/31/2025
Status: Merged
Merged: 3/31/2025
Merged by: @kolaente

Base: mainHead: renovate/github.com-wneessen-go-mail-0.x


📝 Commits (1)

  • ac0196a fix(deps): update module github.com/wneessen/go-mail to v0.6.2

📊 Changes

2 files changed (+8 additions, -1 deletions)

View changed files

📝 go.mod (+1 -1)
📝 go.sum (+7 -0)

📄 Description

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/wneessen/go-mail v0.6.1 -> v0.6.2 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

wneessen/go-mail (github.com/wneessen/go-mail)

v0.6.2: : Bugfix release

Compare Source

Welcome to go-mail v0.6.2! This release fixes some bugs and makes go-mail ready for Go 1.24.

Fix regression of custom SMTP authentication handling

PR #​429 fixes a regression in the handling of custom smtp.Auth methods that was introduced with the v0.6.0 release. Basically, if a custom SMTP auth method was provided, it was simply ignored. Thanks to @​james-d-elliott of the Authelia project for reporting this.

Fix possible nil pointer derefernece in SendWithSMTPClient

With commit https://github.com/wneessen/go-mail/commit/4641da450f5e3b3726e01b1cf03c88361cf49c8f we fixed a possible nil pointer dereference in the SendWithSMTPClient method. This would happen if a nil message would be provided to the method. This bug was reported using Github's private vulnerability reporting feature by @​younes199511. Thanks for the report!

Header count logic improvements

PR #​421 fixed an issue in the header count logic that is used for S/MIME signing. If a header was broken into mutliple lines due to its lenght, the count logic was giving false results, resulting into false content for the S/MIME signature. Thanks to @​theexiile1305 for reporting the issue and helping to debug the issue!

Go 1.24 readiness

The PRs #​431 and #​433 make go-mail and its CI ready for Go 1.24.

What's Changed

CI/CD maintenance changes

Full Changelog: https://github.com/wneessen/go-mail/compare/v0.6.1...v0.6.2


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 was generated by Mend Renovate. View the repository job log.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-vikunja/vikunja/pull/443 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 3/31/2025 **Status:** ✅ Merged **Merged:** 3/31/2025 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `renovate/github.com-wneessen-go-mail-0.x` --- ### 📝 Commits (1) - [`ac0196a`](https://github.com/go-vikunja/vikunja/commit/ac0196a56269a81f33644f47dac8b6b9a7598cfc) fix(deps): update module github.com/wneessen/go-mail to v0.6.2 ### 📊 Changes **2 files changed** (+8 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+7 -0) </details> ### 📄 Description This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/wneessen/go-mail](https://redirect.github.com/wneessen/go-mail) | `v0.6.1` -> `v0.6.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fwneessen%2fgo-mail/v0.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fwneessen%2fgo-mail/v0.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fwneessen%2fgo-mail/v0.6.1/v0.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fwneessen%2fgo-mail/v0.6.1/v0.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>wneessen/go-mail (github.com/wneessen/go-mail)</summary> ### [`v0.6.2`](https://redirect.github.com/wneessen/go-mail/releases/tag/v0.6.2): : Bugfix release [Compare Source](https://redirect.github.com/wneessen/go-mail/compare/v0.6.1...v0.6.2) Welcome to go-mail v0.6.2! This release fixes some bugs and makes go-mail ready for Go 1.24. #### Fix regression of custom SMTP authentication handling PR [#&#8203;429](https://redirect.github.com/wneessen/go-mail/issues/429) fixes a regression in the handling of custom `smtp.Auth` methods that was introduced with the v0.6.0 release. Basically, if a custom SMTP auth method was provided, it was simply ignored. Thanks to [@&#8203;james-d-elliott](https://redirect.github.com/james-d-elliott) of the [Authelia](https://redirect.github.com/authelia/authelia) project for reporting this. #### Fix possible nil pointer derefernece in SendWithSMTPClient With commit https://github.com/wneessen/go-mail/commit/4641da450f5e3b3726e01b1cf03c88361cf49c8f we fixed a possible nil pointer dereference in the `SendWithSMTPClient` method. This would happen if a nil message would be provided to the method. This bug was reported using Github's private vulnerability reporting feature by [@&#8203;younes199511](https://redirect.github.com/younes199511). Thanks for the report! #### Header count logic improvements PR [#&#8203;421](https://redirect.github.com/wneessen/go-mail/issues/421) fixed an issue in the header count logic that is used for S/MIME signing. If a header was broken into mutliple lines due to its lenght, the count logic was giving false results, resulting into false content for the S/MIME signature. Thanks to [@&#8203;theexiile1305](https://redirect.github.com/theexiile1305) for reporting the issue and helping to debug the issue! #### Go 1.24 readiness The PRs [#&#8203;431](https://redirect.github.com/wneessen/go-mail/issues/431) and [#&#8203;433](https://redirect.github.com/wneessen/go-mail/issues/433) make go-mail and its CI ready for Go 1.24. #### What's Changed - Refactor header count logic for accurate line tracking by [@&#8203;wneessen](https://redirect.github.com/wneessen) in [https://github.com/wneessen/go-mail/pull/421](https://redirect.github.com/wneessen/go-mail/pull/421) - chore: improve tests for multipart messages by [@&#8203;wneessen](https://redirect.github.com/wneessen) in [https://github.com/wneessen/go-mail/pull/422](https://redirect.github.com/wneessen/go-mail/pull/422) - Add tests for handling nil messages in email client by [@&#8203;wneessen](https://redirect.github.com/wneessen) in [https://github.com/wneessen/go-mail/pull/427](https://redirect.github.com/wneessen/go-mail/pull/427) - Fix regression of custom smtp.Auth not working by [@&#8203;wneessen](https://redirect.github.com/wneessen) in [https://github.com/wneessen/go-mail/pull/429](https://redirect.github.com/wneessen/go-mail/pull/429) - Skip tests for broken rand.Reader on Go 1.24+. by [@&#8203;wneessen](https://redirect.github.com/wneessen) in [https://github.com/wneessen/go-mail/pull/433](https://redirect.github.com/wneessen/go-mail/pull/433) - chore: update CI to Go 1.24 by [@&#8203;wneessen](https://redirect.github.com/wneessen) in [https://github.com/wneessen/go-mail/pull/431](https://redirect.github.com/wneessen/go-mail/pull/431) - Update version to 0.6.2 and fix typo in documentation by [@&#8203;wneessen](https://redirect.github.com/wneessen) in [https://github.com/wneessen/go-mail/pull/434](https://redirect.github.com/wneessen/go-mail/pull/434) #### CI/CD maintenance changes - Bump golang.org/x/text from 0.21.0 to 0.22.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [https://github.com/wneessen/go-mail/pull/425](https://redirect.github.com/wneessen/go-mail/pull/425) - Bump golang.org/x/crypto from 0.32.0 to 0.33.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [https://github.com/wneessen/go-mail/pull/426](https://redirect.github.com/wneessen/go-mail/pull/426) **Full Changelog**: https://github.com/wneessen/go-mail/compare/v0.6.1...v0.6.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/go-vikunja/vikunja). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-16 12:54:25 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vikunja#4212