Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump github.com/BurntSushi/toml from 1.0.0 to 1.1.0 #390

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 5, 2022

Bumps github.com/BurntSushi/toml from 1.0.0 to 1.1.0.

Release notes

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

v1.1.0

Just a few bugfixes:

  • Skip fields with toml:"-" even when they're unsupported types. Previously something like this would fail to encode due to func being an unsupported type:

    struct {
        Str  string `toml:"str"
        Func func() `toml:"-"`
    }
    
  • Multiline strings can't end with \. This is valid:

    # Valid
    key = """ foo \
    """
    

    Invalid

    key = """ foo \ """

  • Don't quote values in TOMLMarshaler. Previously they would always include quoting (e.g. "value"), while the entire point of this interface is to bypass that.

Commits
  • 891d261 Don't error out if a multiline string ends with an incomplete UTF-8 sequence
  • ef65e34 Don't run Unmarshal() through Decode()
  • 573cad4 Merge pull request #347 from zhsj/fix-32
  • f3633f4 Fix test on 32 bit arch
  • 551f4a5 Merge pull request #344 from lucasbutn/hotfix-341-marshaler-shouldnot-writequ...
  • dec5825 Removed write quote in marshal to allow write other types than strings
  • 2249a9c Multiline strings can't end with ""
  • 51b22f2 Fix README
  • 01e5516 Skip fields with toml:"-", even when they're unsupported types
  • 87b9f05 Fix tests for older Go versions
  • See full diff in compare view

Dependabot compatibility score

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 commands and options

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 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)

@dependabot dependabot bot requested review from Kynea0b, torao and tnasu as code owners April 5, 2022 11:10
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 5, 2022
@torao torao self-assigned this Apr 5, 2022
@torao
Copy link
Contributor

torao commented Apr 5, 2022

Thanks for the report, Bot. I've checked the source diff of BurntSushi/toml and seems not to be affected. I'll merge this PR.

Bumps [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) from 1.0.0 to 1.1.0.
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.0.0...v1.1.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@torao torao force-pushed the dependabot/go_modules/github.com/BurntSushi/toml-1.1.0 branch from 7822044 to cfc60ad Compare April 6, 2022 11:40
@codecov
Copy link

codecov bot commented Apr 6, 2022

Codecov Report

Merging #390 (cfc60ad) into main (6069aff) will increase coverage by 0.19%.
The diff coverage is 68.32%.

@@            Coverage Diff             @@
##             main     #390      +/-   ##
==========================================
+ Coverage   65.15%   65.35%   +0.19%     
==========================================
  Files         278      278              
  Lines       37743    37871     +128     
==========================================
+ Hits        24590    24749     +159     
+ Misses      11370    11323      -47     
- Partials     1783     1799      +16     
Impacted Files Coverage Δ
cmd/ostracon/commands/reset_priv_validator.go 37.86% <31.57%> (+26.32%) ⬆️
crypto/secp256k1/secp256k1.go 69.56% <75.67%> (+2.89%) ⬆️
consensus/state.go 73.85% <93.18%> (+0.62%) ⬆️
consensus/reactor.go 74.75% <100.00%> (+2.00%) ⬆️
crypto/bls/bls.go 45.45% <0.00%> (-2.80%) ⬇️
p2p/conn/connection.go 80.00% <0.00%> (-0.58%) ⬇️
crypto/vrf/vrf_libsodium.go 78.57% <0.00%> (ø)
blockchain/v0/pool.go 79.84% <0.00%> (+0.25%) ⬆️
p2p/pex/addrbook.go 72.03% <0.00%> (+0.50%) ⬆️
... and 9 more

@torao
Copy link
Contributor

torao commented Apr 6, 2022

The following compile error was introduced by the latest go 1.18 release that CI action selected. This has been fixed in #389 and I've rebased to the main.

# github.com/line/ostracon/crypto/xchacha20poly1305
Error: crypto/xchacha20poly1305/xchachapoly_test.go:28:4: (*testing.common).Errorf does not support error-wrapping directive %w
Error: crypto/xchacha20poly1305/xchachapoly_test.go:32:4: (*testing.common).Errorf does not support error-wrapping directive %w
Error: crypto/xchacha20poly1305/xchachapoly_test.go:36:4: (*testing.common).Errorf does not support error-wrapping directive %w
Error: crypto/xchacha20poly1305/xchachapoly_test.go:40:4: (*testing.common).Errorf does not support error-wrapping directive %w

@torao
Copy link
Contributor

torao commented Apr 6, 2022

Ready for reviewing @tnasu @kokeshiM0chi

@Kynea0b Kynea0b merged commit 0029ec3 into main Apr 11, 2022
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/BurntSushi/toml-1.1.0 branch April 11, 2022 04:16
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.

3 participants