Skip to content

Commit 825a6a5

Browse files
Bump github.com/BurntSushi/toml from 1.5.0 to 1.6.0 (#4165)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) from 1.5.0 to 1.6.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.6.0</h2> <p>TOML 1.1 is now enabled by default. The TOML changelog has an overview of changes: <a href="https://github.com/toml-lang/toml/blob/main/CHANGELOG.md">https://github.com/toml-lang/toml/blob/main/CHANGELOG.md</a></p> <p>Also two small fixes:</p> <ul> <li> <p>Encode large floats as exponent syntax so that round-tripping things like <code>5e+22</code> is correct.</p> </li> <li> <p>Using duplicate array keys would not give an error:</p> <pre><code>arr = [1] arr = [2] </code></pre> <p>This will now correctly give a &quot;Key 'arr' has already been defined&quot; error.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/BurntSushi/toml/commit/52534926c55b4cd85b05aee90569dd0668b8cf30"><code>5253492</code></a> Enable TOML 1.1 by default (<a href="https://redirect.github.com/BurntSushi/toml/issues/457">#457</a>)</li> <li><a href="https://github.com/BurntSushi/toml/commit/e954445330492727c18483838a15f88a4fc2d03a"><code>e954445</code></a> Reject duplicate arrays (<a href="https://redirect.github.com/BurntSushi/toml/issues/455">#455</a>)</li> <li><a href="https://github.com/BurntSushi/toml/commit/6b16cbdb0f5a152aad1a6b89798a89655b84150d"><code>6b16cbd</code></a> Update toml-test test cases from upstream (<a href="https://redirect.github.com/BurntSushi/toml/issues/456">#456</a>)</li> <li><a href="https://github.com/BurntSushi/toml/commit/011fa2bc64cec3bb4ec450d11984f5e87b8e158c"><code>011fa2b</code></a> Ensure constant format strings in wf calls</li> <li><a href="https://github.com/BurntSushi/toml/commit/4b439bf5c6ef125a94df7a136733df5ba37d4c16"><code>4b439bf</code></a> Remove itemNil</li> <li><a href="https://github.com/BurntSushi/toml/commit/a473c125bce7078efea98a29698b7c1eb453ff0b"><code>a473c12</code></a> Add test for out of range float64</li> <li><a href="https://github.com/BurntSushi/toml/commit/b535ff89e48996de98ace1301decf94a3a480aa8"><code>b535ff8</code></a> Add some boring tests for lex.go</li> <li><a href="https://github.com/BurntSushi/toml/commit/6011ef0c32b214ac134b8228af2a667e171dad6e"><code>6011ef0</code></a> Remove unreachable condition in lexTableNameStart</li> <li><a href="https://github.com/BurntSushi/toml/commit/c8ca9e6c2d5987a6c23f89d13987ac335aad90c3"><code>c8ca9e6</code></a> Remove unreachable condition</li> <li><a href="https://github.com/BurntSushi/toml/commit/1121f81c60f5947e13057fa5efecbf21369c651e"><code>1121f81</code></a> Make tomlv read from stdin</li> <li>Additional commits viewable in <a href="https://github.com/BurntSushi/toml/compare/v1.5.0...v1.6.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.5.0&new-version=1.6.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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6e0bb13 commit 825a6a5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.25.5
66

77
require (
88
dario.cat/mergo v1.0.2 // BSD 3-Clause
9-
github.com/BurntSushi/toml v1.5.0 // MIT
9+
github.com/BurntSushi/toml v1.6.0 // MIT
1010
github.com/Masterminds/semver/v3 v3.4.0 // MIT
1111
github.com/briandowns/spinner v1.23.1 // Apache 2.0
1212
github.com/databricks/databricks-sdk-go v0.94.0 // Apache 2.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ cloud.google.com/go/compute/metadata v0.8.4 h1:oXMa1VMQBVCyewMIOm3WQsnVd9FbKBtm8
66
cloud.google.com/go/compute/metadata v0.8.4/go.mod h1:E0bWwX5wTnLPedCKqk3pJmVgCBSM6qQI1yTBdEb3C10=
77
dario.cat/mergo v1.0.2 h1:85+piFYR1tMbRrLcDwR18y4UKJ3aH1Tbzi24VRW1TK8=
88
dario.cat/mergo v1.0.2/go.mod h1:E/hbnu0NxMFBjpMIE34DRGLWqDy0g5FuKDhCb31ngxA=
9-
github.com/BurntSushi/toml v1.5.0 h1:W5quZX/G/csjUnuI8SUYlsHs9M38FC7znL0lIO+DvMg=
10-
github.com/BurntSushi/toml v1.5.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
9+
github.com/BurntSushi/toml v1.6.0 h1:dRaEfpa2VI55EwlIW72hMRHdWouJeRF7TPYhI+AUQjk=
10+
github.com/BurntSushi/toml v1.6.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
1111
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
1212
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
1313
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=

0 commit comments

Comments
 (0)