Skip to content

Commit 8e1a751

Browse files
build(deps): Bump github.com/BurntSushi/toml from 1.3.2 to 1.4.0 (#1711)
Bumps [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) from 1.3.2 to 1.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/BurntSushi/toml/releases">github.com/BurntSushi/toml's releases</a>.</em></p> <blockquote> <h2>v1.4.0</h2> <p>This version requires Go 1.18</p> <ul> <li> <p>Add toml.Marshal() (<a href="https://redirect.github.com/BurntSushi/toml/issues/405">#405</a>)</p> </li> <li> <p>Require 2-digit hour (<a href="https://redirect.github.com/BurntSushi/toml/issues/320">#320</a>)</p> </li> <li> <p>Wrap UnmarshalTOML() and UnmarshalText() return values in ParseError for position information (<a href="https://redirect.github.com/BurntSushi/toml/issues/398">#398</a>)</p> </li> <li> <p>Fix inline tables with dotted keys inside inline arrays (e.g. <code>k=[{a.b=1}]</code>) (<a href="https://redirect.github.com/BurntSushi/toml/issues/400">#400</a>)</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/BurntSushi/toml/commit/1e2c053f442c0ac99df1f5b56bae3feab98caa4f"><code>1e2c053</code></a> Undeprecate PrimitiveDecode and MetaData.PrimitiveDecode()</li> <li><a href="https://github.com/BurntSushi/toml/commit/f8f7e48d515c7f9cfb9a1f142da425598afc136c"><code>f8f7e48</code></a> Update toml-test</li> <li><a href="https://github.com/BurntSushi/toml/commit/9a8066765d83926207bf134b065a95766f7b2f7f"><code>9a80667</code></a> Add -json flag to tomlv</li> <li><a href="https://github.com/BurntSushi/toml/commit/3203540e6e1b096e45b3f614caccb7560be1a87c"><code>3203540</code></a> fuzz: move fuzz_targets from oss-fuzz (<a href="https://redirect.github.com/BurntSushi/toml/issues/406">#406</a>)</li> <li><a href="https://github.com/BurntSushi/toml/commit/77ce8589413d1fc280be524c8992599c42027c61"><code>77ce858</code></a> Add Marshal Function (<a href="https://redirect.github.com/BurntSushi/toml/issues/405">#405</a>)</li> <li><a href="https://github.com/BurntSushi/toml/commit/0e879cbdab1075e5622c5c91581eb5e417e6fc1a"><code>0e879cb</code></a> Fix panic when trying to set subkey for a value that's not a table</li> <li><a href="https://github.com/BurntSushi/toml/commit/c299e750ad124b0d1d9700d1fedb4e1a27f5336d"><code>c299e75</code></a> Update toml-test</li> <li><a href="https://github.com/BurntSushi/toml/commit/4223137ff1f96bc65e65b11b6deff32052b127bb"><code>4223137</code></a> Fix inline tables with dotted keys inside inline arrays (<a href="https://redirect.github.com/BurntSushi/toml/issues/400">#400</a>)</li> <li><a href="https://github.com/BurntSushi/toml/commit/45e7e490beef5f26441bd594860a2d760b1c38ad"><code>45e7e49</code></a> Update toml-test</li> <li><a href="https://github.com/BurntSushi/toml/commit/c320c2d09774325e4cadbcfbe76a6d23935bd0e2"><code>c320c2d</code></a> Fix utf8.RuneError test</li> <li>Additional commits viewable in <a href="https://github.com/BurntSushi/toml/compare/v1.3.2...v1.4.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/BurntSushi/toml&package-manager=go_modules&previous-version=1.3.2&new-version=1.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 096bc5d commit 8e1a751

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ require (
3535
)
3636

3737
require (
38-
github.com/BurntSushi/toml v1.3.2
38+
github.com/BurntSushi/toml v1.4.0
3939
github.com/celestiaorg/go-header v0.6.1
4040
github.com/ipfs/go-ds-badger4 v0.1.5
4141
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg6
8181
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
8282
github.com/BurntSushi/toml v0.4.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
8383
github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
84-
github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8=
85-
github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
84+
github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0=
85+
github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
8686
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
8787
github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
8888
github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=

0 commit comments

Comments
 (0)