Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Jul 19, 2021

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/cache action major v2v5 age confidence
actions/checkout action major v2v6 age confidence
actions/setup-go action major v2v6 age confidence
alex (source) dependencies major 9.1.011.0.1 age confidence
codecov/codecov-action action major v1v5 age confidence
codfish/semantic-release-action action major v1v4 age confidence
docker/build-push-action action major v3v6 age confidence
github.com/BurntSushi/toml require major v0.3.1v1.6.0 age confidence
github.com/urfave/cli require major v1.22.5v3.6.1 age confidence
golangci/golangci-lint-action action major v2v9 age confidence
goreleaser/goreleaser-action action major v2v6 age confidence

Release Notes

actions/cache (actions/cache)

v5

Compare Source

v4

Compare Source

v3

Compare Source

actions/checkout (actions/checkout)

v6

Compare Source

v5

Compare Source

v4

Compare Source

v3

Compare Source

actions/setup-go (actions/setup-go)

v6

Compare Source

v5

Compare Source

v4

Compare Source

v3

Compare Source

get-alex/alex (alex)

v11.0.1

Compare Source

Full Changelog: get-alex/alex@11.0.0...11.0.1

v11.0.0

Compare Source

  • 1b4c1be Update retext-equality, retext-profanities
  • 3b55031 Remove support for Node 12

Full Changelog: get-alex/alex@10.0.0...11.0.0

v10.0.0

Compare Source

Full Changelog: get-alex/alex@9.1.1...10.0.0

v9.1.1

Compare Source

Full Changelog: get-alex/alex@9.1.0...9.1.1

codecov/codecov-action (codecov/codecov-action)

v5

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2

v4

Compare Source

What's Changed

v3

Compare Source

#Full Changelog: codecov/codecov-action@v3.1.5...v3.1.6

v2

Compare Source

2.1.0
Features
  • #​515 Allow specifying version of Codecov uploader
Dependencies
codfish/semantic-release-action (codfish/semantic-release-action)

v4

Compare Source

v3

Compare Source

v2

Compare Source

docker/build-push-action (docker/build-push-action)

v6

Compare Source

v5

Compare Source

v4

Compare Source

BurntSushi/toml (github.com/BurntSushi/toml)

v1.6.0

Compare Source

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

Compare Source

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

Compare Source

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

Compare Source

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

Compare Source

This fixes two small bugs:

  • The BURNTSUSHI_TOML_110 environment variable would be checked on package import, rather than Decode().

    This meant that setting os.Setenv("BURNTSUSHI_TOML_110", "") had no effect, as it happens after the import.

  • Fix order of Meta.Keys() for inline tables (this has been an issue since support for inline tables was added).

v1.3.0

Compare Source

New features:

  • Support upcoming TOML 1.1

    While it looks like TOML 1.1 is mostly stable and I don't expect any further major changes, there are NO compatibility guarantees as it is NOT yet released and anything can still change.

    To use it, set the BURNTSUSHI_TOML_110 environment variable to any value, which can be done either with os.SetEnv() or by the user running a program.

    A full list is changes is available in the TOML ChangeLog; the two most notable ones are that newlines and trailing commas are now allowed in inline tables, and Unicode in bare keys can now be used – this is now a valid document:

    lëttërs = {
      ä = "a with diaeresis",
      è = "e with accent grave",
    }
    
  • Allow MarshalTOML and MarshalText to be used on the document type itself, instead of only fields (#​383).

Bufixes:

  • \ escapes at the end of line weren't processed correctly in multiline strings (#​372).

  • Read over UTF-8 BOM (#​381).

  • omitempty struct tag did not work for pointer values (#​371).

  • Fix encoding anonymous structs on 32bit systems (#​374).

v1.2.1

Compare Source

This release fixes the omitempty struct tag on an uncomparable type panicking.

v1.2.0

Compare Source

This release adds a few additional features:

  • Support encoding and decoding json.Number, making interoperability with JSON when using json.Encoder.UseNumber() easier.

  • Support time.Duration string format; an integer will be interpreted as nanoseconds (like before), but a string like "5h" will be parsed. On encoding the string format is used.

  • The omitempty struct tag now also works for structs with all zero values, for example an empty time.Time. A struct is considered "empty" when all fields (exported and private) are the zero value.

  • Allow using interface{} (or any) as the map key when decoding.

And some fixes:

  • Fix encoding.TextUnmarshaler not working for map values.

  • Make encoding.TextUnmarshaler and toml.Unmarshaler work if MarshalText() or MarshalTOML() have a pointer receiver.

  • Error out on nil returns from MarshalTOML/MarshalText; before they would get encoded as invalid TOML (keyname =).

  • Fix a panic where it would try to encode array = [{}, 0] as:

    [[array]]
    [[array]]
    

    Which isn't valid as 0 isn't a table.

  • Some better error reporting for some errors.

v1.1.0

Compare Source

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.

v1.0.0

Compare Source

This release adds much more detailed errors, support for the toml.Marshaler interface, and several fixes.

There is no special meaning in the jump to v1.0; the 0.x releases were always treated as if they're 1.x with regards to compatibility; the versioning scheme for this library predates the release of modules.

New features

  • Error reporting is much improved; the reported position of errors should now always be correct and the library can print more detailed errors (#​299, #​332)

    Decode always return a toml.ParseError, which has three methods:

    • Error() behaves as before and shows a single concise line with the error.

    • ErrorWithPosition() shows the same error, but also shows the line the error occurred at, similar to e.g. clang or the Rust compiler.

    • ErrorWithUsage() is the same as ErrorWithPosition(), but may also show a longer usage guidance message. This isn't always present (in which case it behaves identical to ErrorWithPosition()), but it should be present for most common mistakes and sources of confusion.

    Which error the correct one to use is depends on your application and preferences; in general I would recommend using at least ErrorWithPosition() for user-facing errors, as it's much more helpful for users of any skill level. If your users are likely to be non-technical then ErrorWithUsage() is probably a good idea; I did my best to avoid technical jargon such as "newline" and phrase things in a way that's understandable by most people not intimately familiar with these sort of things.

    Additionally, the TOML key that fialed should now always be reported in all errors.

  • Add toml.Marshaler interface. This can be used if you want full control over how something is marshalled as TOML, similar to json.Marshaler etc. This takes precedence over encoding.TextMarshaler. (#​327)

  • Allow TOML integers to be decoded to a Go float (#​325)

    Previously int = 42 could only be decoded to an int* type; now this can also be decoded in a float type as long as it can be represented without loss of data.

Fixes

  • Key.String() is now quoted when needed (#​333)

  • Fix decoding of nested structs on 32bit platforms (#​314)

  • Empty slices are now always []T{} rather than nil, which was the behaviour in v0.3.1 and before. While they are identical for most purposes, encoding/json encodes them different ([] vs. null), making it an (accidentally) incompatible change (#​339)

v0.4.1

Compare Source

This fixes a cyclic module dependency issue with github.com/BurntSushi/toml-test that prevented some people from updating. See #​313 for some details.

v0.4.0

Compare Source

After some time of inactivity this package is now maintained again.

This release should support alll of TOML 1.0 and has various bugfixes and a few small improvements.

This requires Go 1.13 or newer; older Go versions will no longer work.

TOML 1.0 support

Previously this library implemented TOML 0.3; now all of TOML 1.0 is supported:

  • Support dotted keys (a.b = 1, a = {b.c = 2}).

  • Mixed arrays: in previous TOML versions array values all had to be of the same type; you can now freely mix types, including inline tables.

  • Support hex (0x2f9a), binary (0b0110), and octal (0o777) literals, and support nan and inf for floats.

  • Support local datetimes, dates, and times. These are dates and times without a timezone and are parsed in the local timezone.

  • Allow accidental whitespace between backslash and newline in the line continuation operator in multi-line basic strings.

There should be no incompatibilities as such; all existing valid TOML files should continue to work. However, the parser previously allowed the following invalid values:

  • It would allow literal control characters in strings.

  • It would allow leading zeroes in decimal ints and floats.

Neither of these was ever valid TOML, and are explicitly forbidden by the specification. But the library erroneously permitted them.

Other changes

  • Set up Go modules.

  • Allow escaping the \, and allow triple-quotes strings to end with a quote (e.g. x="""x"""").

  • All control characters inside strings are properly escaped when encoding.

  • Support encoding nested anonymous structs.

  • Encode toml.Primitive values.

  • You get a more helpful error on UTF-16 files (probably the most common non-UTF-8 compatible encoding). Also read over UTF-16 BOM in UTF-8 files.

  • Call MarshalText and UnmarshalText consistently on all types; before this didn't always happen in some cases.

  • Allow empty quoted keys ("" = 1); silly, but explicitly mentioned as valid.

  • Don't panic in encoder on unsupported types; return an error instead.

  • Don't panic on unclosed inline arrays.

  • Add Decoder and deprecate DecodeReader(); this is more consistent with how other decoders tend to work and allows adding decoding options.

  • Add DecodeFS() for Go 1.16 or newer.

  • Avoid creating new functions/allocations in lexSkip; small performance improvement.

urfave/cli (github.com/urfave/cli)

v3.6.1

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.6.0...v3.6.1

v3.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.5.0...v3.6.0

v3.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.4.1...v3.5.0

v3.4.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v3.4.0...v3.4.1

v3.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.3.9...v3.4.0

v3.3.9

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.3.8...v3.3.9

v3.3.8

Compare Source

What's Changed

Full Changelog: urfave/cli@v3.3.7...v3.3.8

v3.3.7

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.3.6...v3.3.7

v3.3.6

Compare Source

What's Changed

Full Changelog: urfave/cli@v3.3.5...v3.3.6

v3.3.5

Compare Source

What's Changed

Full Changelog: urfave/cli@v3.3.4...v3.3.5

v3.3.4

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.3.3...v3.3.4

v3.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.3.2...v3.3.3

v3.3.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.3.1...v3.3.2

v3.3.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v3.3.0...v3.3.1

v3.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.2.0...v3.3.0

v3.2.0

Compare Source

Breaking change IntFlag now uses int type and not int64. Please change to using Int64Flag for int64 types. Similar behavior for UintFlag as well. See https://pkg.go.dev/github.com/urfave/cli/v3 for a full list of flag types. See #​2094 for full patch for this

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.1.1...v3.2.0

v3.1.1

Compare Source

[v3.1.0](https:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from moul as a code owner July 19, 2021 14:51
@trafico-bot trafico-bot bot added the 🔍 Ready for Review Pull Request is not reviewed yet label Jul 19, 2021
@renovate renovate bot force-pushed the renovate/major-all branch from 72805cd to 7289fac Compare July 23, 2021 15:17
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update codecov/codecov-action action to v2 Aug 30, 2021
@renovate renovate bot changed the title chore(deps): update codecov/codecov-action action to v2 chore(deps): update all (major) Aug 30, 2021
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update codecov/codecov-action action to v2 Aug 31, 2021
@renovate renovate bot changed the title chore(deps): update codecov/codecov-action action to v2 chore(deps): update all (major) Aug 31, 2021
@renovate renovate bot force-pushed the renovate/major-all branch from 7289fac to bddec85 Compare March 7, 2022 08:19
@renovate renovate bot force-pushed the renovate/major-all branch from bddec85 to 7759bbe Compare March 26, 2022 15:44
@renovate renovate bot force-pushed the renovate/major-all branch from 7759bbe to dae8975 Compare April 25, 2022 02:14
@renovate renovate bot force-pushed the renovate/major-all branch from dae8975 to 42d2bfb Compare May 22, 2022 00:26
@renovate renovate bot force-pushed the renovate/major-all branch from 42d2bfb to 7562829 Compare July 20, 2022 15:22
@renovate renovate bot force-pushed the renovate/major-all branch from 7562829 to 9c43356 Compare August 9, 2022 15:12
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update all to v3 (major) Aug 9, 2022
@renovate renovate bot changed the title chore(deps): update all to v3 (major) chore(deps): update all (major) Aug 10, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from 15c3d00 to 769005a Compare September 28, 2022 00:14
@codecov
Copy link

codecov bot commented Sep 28, 2022

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 83.22%. Comparing base (7b13e7d) to head (769005a).
Report is 8 commits behind head on master.

Current head 769005a differs from pull request most recent head 332e95b

Please upload reports for the commit 332e95b to get more accurate results.

Additional details and impacted files
@@            Coverage Diff             @@
##           master      #60      +/-   ##
==========================================
+ Coverage   81.05%   83.22%   +2.16%     
==========================================
  Files           2        2              
  Lines          95      149      +54     
==========================================
+ Hits           77      124      +47     
- Misses         13       20       +7     
  Partials        5        5              
Flag Coverage Δ
unittests 83.22% <ø> (+2.16%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/major-all branch from 769005a to e81c180 Compare September 28, 2022 04:05
@renovate renovate bot force-pushed the renovate/major-all branch from e81c180 to 47373e7 Compare November 20, 2022 20:53
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 91ed113 to 85e2138 Compare March 25, 2023 00:20
@socket-security
Copy link

socket-security bot commented Mar 25, 2023

All alerts resolved. Learn more about Socket for GitHub.

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report

@renovate renovate bot force-pushed the renovate/major-all branch from 85e2138 to 498e217 Compare March 26, 2023 17:49
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 093a29d to 8e0d23a Compare May 29, 2023 16:18
@renovate renovate bot force-pushed the renovate/major-all branch from 1413a92 to b04d8c4 Compare March 18, 2025 04:36
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from f3fca90 to 32c0df2 Compare April 1, 2025 15:32
@renovate renovate bot force-pushed the renovate/major-all branch from 32c0df2 to 54d8d75 Compare April 8, 2025 15:27
@renovate renovate bot force-pushed the renovate/major-all branch from 54d8d75 to 1968415 Compare April 20, 2025 04:34
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 115cd16 to 661d4d7 Compare April 28, 2025 14:51
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from c476219 to 3f21c6f Compare May 11, 2025 01:09
@renovate renovate bot force-pushed the renovate/major-all branch from 3f21c6f to 27990a2 Compare June 13, 2025 03:48
@renovate renovate bot force-pushed the renovate/major-all branch from 27990a2 to 9ca26fe Compare June 22, 2025 11:08
@renovate renovate bot force-pushed the renovate/major-all branch from 9ca26fe to da16762 Compare July 28, 2025 15:44
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from ff70a3c to c943b6d Compare August 12, 2025 15:03
@renovate renovate bot force-pushed the renovate/major-all branch from c943b6d to 92fe992 Compare August 19, 2025 02:37
@renovate renovate bot force-pushed the renovate/major-all branch from 92fe992 to 52ebcec Compare September 4, 2025 05:57
@renovate renovate bot force-pushed the renovate/major-all branch from 52ebcec to 6d2fec5 Compare October 22, 2025 12:01
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from a47bf93 to 983abfe Compare November 9, 2025 12:44
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from fb3a78d to 52cd5ff Compare November 20, 2025 18:14
@renovate renovate bot force-pushed the renovate/major-all branch from 52cd5ff to 60280f0 Compare December 12, 2025 03:49
@renovate
Copy link
Author

renovate bot commented Dec 12, 2025

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.15 -> 1.22
github.com/stretchr/testify v1.7.0 -> v1.11.1

@renovate renovate bot force-pushed the renovate/major-all branch from 60280f0 to ad8de76 Compare December 18, 2025 13:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies 🔍 Ready for Review Pull Request is not reviewed yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant