Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: BurntSushi/toml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.0
Choose a base ref
...
head repository: BurntSushi/toml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.0
Choose a head ref
  • 13 commits
  • 671 files changed
  • 3 contributors

Commits on Apr 3, 2025

  1. decode: mark nested fields as decoded as well (#440)

    This commit is a small followup for PR#426 to handle another case
    with the custom unmarshal. This was found in a complex TOML based
    image customization "blueprint".
    mvo5 authored Apr 3, 2025
    Configuration menu
    Copy the full SHA
    3d3abc2 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2025

  1. Encode large floats as exponent syntax (#441)

    Otherwise round-tripping something like 5e+22 won't work.
    arp242 authored Apr 15, 2025
    Configuration menu
    Copy the full SHA
    10fb0a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f225e86 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2025

  1. Make tomlv read from stdin

    arp242 committed Apr 16, 2025
    Configuration menu
    Copy the full SHA
    1121f81 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2025

  1. Remove unreachable condition

    lexNumberOrDateStart() is only called from lexValue() on isDigit(r),
    so !isDigit(r) in there can never happen.
    arp242 committed Apr 19, 2025
    Configuration menu
    Copy the full SHA
    c8ca9e6 View commit details
    Browse the repository at this point in the history
  2. Remove unreachable condition in lexTableNameStart

    It has lx.skip(isWhitespace), so the isWhitespace(r) can never be true.
    arp242 committed Apr 19, 2025
    Configuration menu
    Copy the full SHA
    6011ef0 View commit details
    Browse the repository at this point in the history
  3. Add some boring tests for lex.go

    This doesn't really need tests IMO, but easy enough to write. The end
    goal is to have 100% test coverage at least for lex.go and parse.go,
    which is helpful for finding new test cases for toml-test.
    arp242 committed Apr 19, 2025
    Configuration menu
    Copy the full SHA
    b535ff8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a473c12 View commit details
    Browse the repository at this point in the history
  5. Remove itemNil

    Never referenced; not sure what it was used for in the past, but it's no
    longer.
    arp242 committed Apr 19, 2025
    Configuration menu
    Copy the full SHA
    4b439bf View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2025

  1. Ensure constant format strings in wf calls

    Fixes:
    
    	./encode.go:231:11: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
    	./encode.go:233:11: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
    	./encode.go:282:10: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
    	./encode.go:284:10: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
    	./encode.go:286:10: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
    	./encode.go:300:11: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
    	./encode.go:315:11: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
    
    Fixes #445
    arp242 committed Jun 6, 2025
    Configuration menu
    Copy the full SHA
    011fa2b View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2025

  1. Configuration menu
    Copy the full SHA
    6b16cbd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e954445 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2025

  1. Configuration menu
    Copy the full SHA
    5253492 View commit details
    Browse the repository at this point in the history
Loading