Skip to content

chore(deps): bump github.com/BurntSushi/toml from 0.3.1 to 1.6.0 in /QSDM/source#8

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/QSDM/source/github.com/BurntSushi/toml-1.6.0
Open

chore(deps): bump github.com/BurntSushi/toml from 0.3.1 to 1.6.0 in /QSDM/source#8
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/QSDM/source/github.com/BurntSushi/toml-1.6.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 22, 2026

Copy link
Copy Markdown
Contributor

Bumps github.com/BurntSushi/toml from 0.3.1 to 1.6.0.

Release notes

Sourced from github.com/BurntSushi/toml's releases.

v1.6.0

TOML 1.1 is now enabled by default. The TOML changelog has an overview of changes: https://github.com/toml-lang/toml/blob/main/CHANGELOG.md

Also two small fixes:

  • Encode large floats as exponent syntax so that round-tripping things like 5e+22 is correct.

  • Using duplicate array keys would not give an error:

    arr = [1]
    arr = [2]
    

    This will now correctly give a "Key 'arr' has already been defined" error.

v1.5.0

Mostly some small bugfixes, with a few small new features:

  • Add Position.Col, to mark the column an error occurred (#410)

  • Print more detailed errors in the tomlv CLI.

  • Ensure ParseError.Message is always set (#411)

  • Allow custom string types as map keys (#414)

  • Mark meta keys as decoded when using Unmarshaler interface (#426)

  • Fix encoding when nested inline table ends with map (#438)

  • Fix encoding of several layers of embedded structs (#430)

  • Fix ErrorWithPosition panic when there is no newline in the TOML document (#433)

v1.4.0

This version requires Go 1.18

  • Add toml.Marshal() (#405)

  • Require 2-digit hour (#320)

  • Wrap UnmarshalTOML() and UnmarshalText() return values in ParseError for position information (#398)

  • Fix inline tables with dotted keys inside inline arrays (e.g. k=[{a.b=1}]) (#400)

v1.3.2

Fix reading BURNTSUSHI_TOML_110 again 😅 The fix for 1.3.1 caused a race issue with multiple decodes being run in parallel.

v1.3.1

This fixes two small bugs:

... (truncated)

Commits
  • 5253492 Enable TOML 1.1 by default (#457)
  • e954445 Reject duplicate arrays (#455)
  • 6b16cbd Update toml-test test cases from upstream (#456)
  • 011fa2b Ensure constant format strings in wf calls
  • 4b439bf Remove itemNil
  • a473c12 Add test for out of range float64
  • b535ff8 Add some boring tests for lex.go
  • 6011ef0 Remove unreachable condition in lexTableNameStart
  • c8ca9e6 Remove unreachable condition
  • 1121f81 Make tomlv read from stdin
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Apr 22, 2026
@blackbeardONE

Copy link
Copy Markdown
Owner

@dependabot rebase

Bumps [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) from 0.3.1 to 1.6.0.
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v0.3.1...v1.6.0)

---
updated-dependencies:
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump github.com/BurntSushi/toml from 0.3.1 to 1.6.0 in /QSDM/source chore(deps): bump github.com/BurntSushi/toml from 0.3.1 to 1.6.0 in /QSDM/source May 11, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/QSDM/source/github.com/BurntSushi/toml-1.6.0 branch from dfdf524 to bbefc6d Compare May 11, 2026 08:48
blackbeardONE pushed a commit that referenced this pull request May 11, 2026
…ld queue

The macos-build.yml workflow had never actually completed a run end-to-end
because the hosted macOS pool was queue-limited and concurrency.cancel-in-progress
only cancels runs in the same head-ref group. 14h of backlog + 6 dependabot
PRs sitting queued kept everything from ever reaching a runner.

Cancelled 10 stale queued runs via the REST API (kept the latest v0.3.0
run). On the first run that actually got a runner, the no-CGO macos-14
job failed within 0.4s with:

  go: cannot find main module, but found .git/config in /Users/runner/work/QSDM/QSDM

Root cause: build_macos.sh runs from working-directory=QSDM (the
macos-build.yml convention), but go.mod lives at QSDM/source/go.mod.
The CGO branch already handled the source/-indirection. The no-CGO
branch did not -- it just called go build directly against the QSDM
root, which has no go.mod.

Fix: mirror the same `if [[ -f source/go.mod ]]; cd source` guard
into the no-CGO branch.

Also in this session:
  * Merged dependabot PR #11 (libp2p-pubsub 0.15.0 -> 0.16.0) after
    confirming all 24 PR-CI checks were green across build-test,
    govulncheck, trivy, docker, trustcheck, and wasm.
  * PR #12 (mattn/go-sqlite3 1.14.28 -> 1.14.44) hit a go.sum conflict
    after PR #11 merged -- triggered @dependabot rebase.
  * Posted @dependabot rebase on #1, #5, #6, #7, #8, #10 so they pick
    up the session-75 ripgrep fix and re-run cleanly.
  * Deferred PR #2 (login-action 3->4) and PR #13 (build-push-action
    6->7): PR CI doesn't trigger release-container.yml (which runs
    only on push: tags: v*), so merging risks re-breaking the release
    pipeline we just stabilised in sessions 75-78. Path forward
    documented in RELEASE_NOTES_v0.3.0.md.

Co-authored-by: Cursor <cursoragent@cursor.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant