-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
fix(deps): update all #63
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #63 +/- ##
=======================================
Coverage 81.05% 81.05%
=======================================
Files 2 2
Lines 95 95
=======================================
Hits 77 77
Misses 13 13
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. |
6d859ee
to
40c8972
Compare
40c8972
to
2469819
Compare
2469819
to
06172db
Compare
06172db
to
e1f8ffd
Compare
e1f8ffd
to
2794630
Compare
2794630
to
b0e3f9d
Compare
b0e3f9d
to
2838fb4
Compare
2838fb4
to
27ae354
Compare
d76cce7
to
6865199
Compare
ef8ab00
to
54871fc
Compare
c1d0672
to
8df8a61
Compare
8df8a61
to
1803346
Compare
2ecec95
to
0f7c2a0
Compare
6759acd
to
94aa047
Compare
58cb554
to
2713ef2
Compare
b43a41a
to
66b8ed3
Compare
66b8ed3
to
d513e1c
Compare
da12148
to
f9af74c
Compare
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
f69b35c
to
4002b91
Compare
8795906
to
4fe0338
Compare
4fe0338
to
aa52fa1
Compare
aa52fa1
to
9d0c7c1
Compare
This PR contains the following updates:
9.1.0
->9.1.1
3.16.0
->3.21.3
v0.3.1
->v0.4.1
v1.7.0
->v1.10.0
720c4b4
->b748de0
v1.22.5
->v1.22.16
1.19.0-alpine
->1.24.1-alpine
v0.1.5
->v0.31.0
0.28.1
->0.44.0
Release Notes
get-alex/alex (alex)
v9.1.1
Compare Source
223cde1
Add lock forremark-mdx
Full Changelog: get-alex/alex@9.1.0...9.1.1
BurntSushi/toml (github.com/BurntSushi/toml)
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 supportnan
andinf
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
andUnmarshalText
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 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.
stretchr/testify (github.com/stretchr/testify)
v1.10.0
Compare Source
What's Changed
Functional Changes
Fixes
Documantation, Build & CI
New Contributors
Full Changelog: stretchr/testify@v1.9.0...v1.10.0
v1.9.0
Compare Source
What's Changed
Called
by @aud10slave in https://github.com/stretchr/testify/pull/631NotImplements
and variants by @hslatman in https://github.com/stretchr/testify/pull/1385New Contributors
Full Changelog: stretchr/testify@v1.8.4...v1.9.0
v1.8.4
Compare Source
What's Changed
New Contributors
Full Changelog: stretchr/testify@v1.8.3...v1.8.4
v1.8.3
Compare Source
What's Changed
New Contributors
Full Changelog: stretchr/testify@v1.8.2...v1.8.3
v1.8.2
Compare Source
What's Changed
CallerInfo()
source file paths by @bozaro in https://github.com/stretchr/testify/pull/1288New Contributors
Full Changelog: stretchr/testify@v1.8.1...v1.8.2
v1.8.1
Compare Source
What's Changed
Full Changelog: stretchr/testify@v1.8.0...v1.8.1
v1.8.0
Compare Source
What's Changed
CallerInfo
should print full paths to the terminal by @stdedos in https://github.com/stretchr/testify/pull/1201New Contributors
Full Changelog: stretchr/testify@v1.7.5...v1.8.0
v1.7.5
Compare Source
What's Changed
New Contributors
Full Changelog: stretchr/testify@v1.7.4...v1.7.5
v1.7.4
Compare Source
What's Changed
New Contributors
Full Changelog: stretchr/testify@v1.7.3...v1.7.4
v1.7.3
Compare Source
What's Changed
Full Changelog: stretchr/testify@v1.7.2...v1.7.3
v1.7.2
Compare Source
What's Changed
go 1.16
by @jeffwidman in https://github.com/stretchr/testify/pull/1055New Contributors
Full Changelog: stretchr/testify@v1.7.1...v1.7.2
v1.7.1
Compare Source
What's Changed
New Contributors
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.