Update module github.com/pelletier/go-toml/v2 to v2.3.0 #2

Open
renovate-bot wants to merge 1 commit from renovate/github.com-pelletier-go-toml-v2-2.x into master
Collaborator

This PR contains the following updates:

Package Change Age Confidence
github.com/pelletier/go-toml/v2 v2.2.4v2.3.0 age confidence

Release Notes

pelletier/go-toml (github.com/pelletier/go-toml/v2)

v2.3.0

Compare Source

This is the first release built largely with the help of AI coding agents. Highlights include the complete removal of the unsafe package. go-toml is now fully safe Go code, with a geomean overhead of only ~1.4% vs v2.2.4 and zero additional allocations on benchmarks. This release also adds omitzero struct tag support, improves UnmarshalText/Unmarshaler handling for tables and array tables, and fixes several bugs including nil pointer marshaling, leap second handling, and datetime unmarshaling panics.

What's Changed

What's new
Fixed bugs
Documentation
Other changes

New Contributors

Full Changelog: https://github.com/pelletier/go-toml/compare/v2.2.4...v2.3.0


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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/pelletier/go-toml/v2](https://github.com/pelletier/go-toml) | `v2.2.4` → `v2.3.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fpelletier%2fgo-toml%2fv2/v2.3.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fpelletier%2fgo-toml%2fv2/v2.2.4/v2.3.0?slim=true) | --- ### Release Notes <details> <summary>pelletier/go-toml (github.com/pelletier/go-toml/v2)</summary> ### [`v2.3.0`](https://github.com/pelletier/go-toml/releases/tag/v2.3.0) [Compare Source](https://github.com/pelletier/go-toml/compare/v2.2.4...v2.3.0) This is the first release built largely with the help of AI coding agents. Highlights include the complete removal of the unsafe package. go-toml is now fully safe Go code, with a geomean overhead of only \~1.4% vs v2.2.4 and zero additional allocations on benchmarks. This release also adds omitzero struct tag support, improves UnmarshalText/Unmarshaler handling for tables and array tables, and fixes several bugs including nil pointer marshaling, leap second handling, and datetime unmarshaling panics. <!-- Release notes generated using configuration in .github/release.yml at v2.3.0 --> #### What's Changed ##### What's new - marshal: don't escape quotes unnecessarily by [@&#8203;virtuald](https://github.com/virtuald) in [#&#8203;991](https://github.com/pelletier/go-toml/pull/991) - Add `omitzero` tag support by [@&#8203;NathanBaulch](https://github.com/NathanBaulch) in [#&#8203;998](https://github.com/pelletier/go-toml/pull/998) - Support custom IsZero() methods with omitzero tag by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1020](https://github.com/pelletier/go-toml/pull/1020) - UnmarshalText fallbacks to struct unmarshaling for tables and arrays by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1026](https://github.com/pelletier/go-toml/pull/1026) - \[unstable] Support Unmarshaler interface for tables and array tables by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1027](https://github.com/pelletier/go-toml/pull/1027) ##### Fixed bugs - Add missing UnmarshalTOML call by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;996](https://github.com/pelletier/go-toml/pull/996) - Handle array table into an empty slice by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;997](https://github.com/pelletier/go-toml/pull/997) - Unwrap strict errors by [@&#8203;bersace](https://github.com/bersace) in [#&#8203;1012](https://github.com/pelletier/go-toml/pull/1012) - Fix leap second handling found by fuzz by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1019](https://github.com/pelletier/go-toml/pull/1019) - Fix nil pointer map values not being marshaled by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1025](https://github.com/pelletier/go-toml/pull/1025) - Fix panic when unmarshaling datetime values to incompatible types ([#&#8203;1028](https://github.com/pelletier/go-toml/issues/1028)) by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1029](https://github.com/pelletier/go-toml/pull/1029) - Fix parser error pointing to wrong line at EOF without trailing newline by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1041](https://github.com/pelletier/go-toml/pull/1041) ##### Documentation - Improve Unmarshaling README by [@&#8203;heckelson](https://github.com/heckelson) in [#&#8203;1016](https://github.com/pelletier/go-toml/pull/1016) - Create AGENTS.md guidelines file by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1017](https://github.com/pelletier/go-toml/pull/1017) ##### Other changes - Unsafe package removal by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1021](https://github.com/pelletier/go-toml/pull/1021) - Bump CI and test scripts to Go 1.26 by [@&#8203;pelletier](https://github.com/pelletier) in [#&#8203;1030](https://github.com/pelletier/go-toml/pull/1030) #### New Contributors - [@&#8203;virtuald](https://github.com/virtuald) made their first contribution in [#&#8203;991](https://github.com/pelletier/go-toml/pull/991) - [@&#8203;NathanBaulch](https://github.com/NathanBaulch) made their first contribution in [#&#8203;999](https://github.com/pelletier/go-toml/pull/999) - [@&#8203;bersace](https://github.com/bersace) made their first contribution in [#&#8203;1012](https://github.com/pelletier/go-toml/pull/1012) - [@&#8203;flyn-org](https://github.com/flyn-org) made their first contribution in [#&#8203;1013](https://github.com/pelletier/go-toml/pull/1013) - [@&#8203;heckelson](https://github.com/heckelson) made their first contribution in [#&#8203;1016](https://github.com/pelletier/go-toml/pull/1016) **Full Changelog**: <https://github.com/pelletier/go-toml/compare/v2.2.4...v2.3.0> </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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43MS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNzEuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119-->
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/github.com-pelletier-go-toml-v2-2.x:renovate/github.com-pelletier-go-toml-v2-2.x
git switch renovate/github.com-pelletier-go-toml-v2-2.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff renovate/github.com-pelletier-go-toml-v2-2.x
git switch renovate/github.com-pelletier-go-toml-v2-2.x
git rebase master
git switch master
git merge --ff-only renovate/github.com-pelletier-go-toml-v2-2.x
git switch renovate/github.com-pelletier-go-toml-v2-2.x
git rebase master
git switch master
git merge --no-ff renovate/github.com-pelletier-go-toml-v2-2.x
git switch master
git merge --squash renovate/github.com-pelletier-go-toml-v2-2.x
git switch master
git merge --ff-only renovate/github.com-pelletier-go-toml-v2-2.x
git switch master
git merge renovate/github.com-pelletier-go-toml-v2-2.x
git push origin master
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
JustScreaMy/warpssh!2
No description provided.