-
-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update all (major) #60
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
base: master
Are you sure you want to change the base?
Conversation
72805cd to
7289fac
Compare
7289fac to
bddec85
Compare
bddec85 to
7759bbe
Compare
7759bbe to
dae8975
Compare
dae8975 to
42d2bfb
Compare
42d2bfb to
7562829
Compare
7562829 to
9c43356
Compare
15c3d00 to
769005a
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
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
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
769005a to
e81c180
Compare
e81c180 to
47373e7
Compare
91ed113 to
85e2138
Compare
|
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. |
85e2138 to
498e217
Compare
093a29d to
8e0d23a
Compare
1413a92 to
b04d8c4
Compare
f3fca90 to
32c0df2
Compare
32c0df2 to
54d8d75
Compare
54d8d75 to
1968415
Compare
115cd16 to
661d4d7
Compare
c476219 to
3f21c6f
Compare
3f21c6f to
27990a2
Compare
27990a2 to
9ca26fe
Compare
9ca26fe to
da16762
Compare
ff70a3c to
c943b6d
Compare
c943b6d to
92fe992
Compare
92fe992 to
52ebcec
Compare
52ebcec to
6d2fec5
Compare
a47bf93 to
983abfe
Compare
fb3a78d to
52cd5ff
Compare
52cd5ff to
60280f0
Compare
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
60280f0 to
ad8de76
Compare
This PR contains the following updates:
v2→v5v2→v6v2→v69.1.0→11.0.1v1→v5v1→v4v3→v6v0.3.1→v1.6.0v1.22.5→v3.6.1v2→v9v2→v6Release Notes
actions/cache (actions/cache)
v5Compare Source
v4Compare Source
v3Compare Source
actions/checkout (actions/checkout)
v6Compare Source
v5Compare Source
v4Compare Source
url-helper.tsnow leverages well-known environment variables by @jww3 in #1941isGhesby @jww3 in #1946v3Compare Source
actions/setup-go (actions/setup-go)
v6Compare Source
v5Compare Source
v4Compare Source
v3Compare Source
get-alex/alex (alex)
v11.0.1Compare Source
c1779a5Addmainfield topackage.jsonby @kanadgupta in #342
Full Changelog: get-alex/alex@11.0.0...11.0.1
v11.0.0Compare Source
1b4c1beUpdateretext-equality,retext-profanities3b55031Remove support for Node 12Full Changelog: get-alex/alex@10.0.0...11.0.0
v10.0.0Compare Source
d2cd488Use ESMaffects you if you use the API. Please read this
d4833f8Add JSDoc based types86e9c9fRemove browser buildFull Changelog: get-alex/alex@9.1.1...10.0.0
v9.1.1Compare Source
223cde1Add lock forremark-mdxFull Changelog: get-alex/alex@9.1.0...9.1.1
codecov/codecov-action (codecov/codecov-action)
v5Compare Source
What's Changed
Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2
v4Compare Source
What's Changed
versionInfoby @marcobiedermann in #1407evenNamein the logs correctly by @webknjaz in #1560v3Compare Source
#Full Changelog: codecov/codecov-action@v3.1.5...v3.1.6
v2Compare Source
2.1.0
Features
Dependencies
codfish/semantic-release-action (codfish/semantic-release-action)
v4Compare Source
v3Compare Source
v2Compare Source
docker/build-push-action (docker/build-push-action)
v6Compare Source
v5Compare Source
v4Compare Source
BurntSushi/toml (github.com/BurntSushi/toml)
v1.6.0Compare 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+22is correct.Using duplicate array keys would not give an error:
This will now correctly give a "Key 'arr' has already been defined" error.
v1.5.0Compare 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
tomlvCLI.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.0Compare 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.2Compare Source
Fix reading
BURNTSUSHI_TOML_110again 😅 The fix for 1.3.1 caused a race issue with multiple decodes being run in parallel.v1.3.1Compare Source
This fixes two small bugs:
The
BURNTSUSHI_TOML_110environment 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.0Compare 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_110environment variable to any value, which can be done either withos.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:
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).
omitemptystruct tag did not work for pointer values (#371).Fix encoding anonymous structs on 32bit systems (#374).
v1.2.1Compare Source
This release fixes the
omitemptystruct tag on an uncomparable type panicking.v1.2.0Compare 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:
Which isn't valid as 0 isn't a table.
Some better error reporting for some errors.
v1.1.0Compare Source
Just a few bugfixes:
Skip fields with
toml:"-"even when they're unsupported types. Previously something like this would fail to encode due tofuncbeing an unsupported type:Multiline strings can't end with
\. This is valid:Valid
Invalid
TOMLMarshaler. Previously they would always include quoting (e.g."value"), while the entire point of this interface is to bypass that.v1.0.0Compare Source
This release adds much more detailed errors, support for the
toml.Marshalerinterface, 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 asErrorWithPosition(), but may also show a longer usage guidance message. This isn't always present (in which case it behaves identical toErrorWithPosition()), 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 thenErrorWithUsage()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.Marshalerinterface. This can be used if you want full control over how something is marshalled as TOML, similar tojson.Marshaleretc. This takes precedence overencoding.TextMarshaler. (#327)Allow TOML integers to be decoded to a Go float (#325)
Previously
int = 42could only be decoded to anint*type; now this can also be decoded in afloattype 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.1Compare 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.0Compare 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 supportnanandinffor 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
MarshalTextandUnmarshalTextconsistently 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
Decoderand deprecateDecodeReader(); 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.1Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.6.0...v3.6.1
v3.6.0Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.5.0...v3.6.0
v3.5.0Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.4.1...v3.5.0
v3.4.1Compare Source
What's Changed
v3series is recommended for new development by @meatballhat in #2186Full Changelog: urfave/cli@v3.4.0...v3.4.1
v3.4.0Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.3.9...v3.4.0
v3.3.9Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.3.8...v3.3.9
v3.3.8Compare Source
What's Changed
v3series by @meatballhat in #2155Full Changelog: urfave/cli@v3.3.7...v3.3.8
v3.3.7Compare Source
What's Changed
IsLocalfor BoolWithInverseFlag by @huiyifyj in #2151New Contributors
Full Changelog: urfave/cli@v3.3.6...v3.3.7
v3.3.6Compare Source
What's Changed
Full Changelog: urfave/cli@v3.3.5...v3.3.6
v3.3.5Compare Source
What's Changed
Full Changelog: urfave/cli@v3.3.4...v3.3.5
v3.3.4Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.3.3...v3.3.4
v3.3.3Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.3.2...v3.3.3
v3.3.2Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.3.1...v3.3.2
v3.3.1Compare Source
What's Changed
Full Changelog: urfave/cli@v3.3.0...v3.3.1
v3.3.0Compare Source
What's Changed
float32andfloat64by @ldez in #2112New Contributors
Full Changelog: urfave/cli@v3.2.0...v3.3.0
v3.2.0Compare 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.1Compare 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.
This PR was generated by Mend Renovate. View the repository job log.