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

fix(deps): update all #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

fix(deps): update all #63

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Aug 2, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
alex (source) 9.1.0 -> 9.1.1 age adoption passing confidence dependencies patch
alpine 3.16.0 -> 3.21.3 age adoption passing confidence final minor
github.com/BurntSushi/toml v0.3.1 -> v0.4.1 age adoption passing confidence require minor
github.com/stretchr/testify v1.7.0 -> v1.10.0 age adoption passing confidence require minor
github.com/tailscale/depaware 720c4b4 -> b748de0 age adoption passing confidence require digest
github.com/urfave/cli v1.22.5 -> v1.22.16 age adoption passing confidence require patch
golang 1.19.0-alpine -> 1.24.1-alpine age adoption passing confidence stage minor
golang.org/x/tools v0.1.5 -> v0.31.0 age adoption passing confidence require minor
markdownlint-cli 0.28.1 -> 0.44.0 age adoption passing confidence dependencies minor

Release Notes

get-alex/alex (alex)

v9.1.1

Compare Source

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

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

New 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

New 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

New 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

New 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.


  • 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 August 2, 2021 08:53
@auto-add-label auto-add-label bot added the bug label Aug 2, 2021
@trafico-bot trafico-bot bot added the 🔍 Ready for Review Pull Request is not reviewed yet label Aug 2, 2021
@codecov
Copy link

codecov bot commented Aug 2, 2021

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 81.05%. Comparing base (7b13e7d) to head (b0e3f9d).
Report is 8 commits behind head on master.

Current head b0e3f9d differs from pull request most recent head 951a0f8

Please upload reports for the commit 951a0f8 to get more accurate results.

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           
Flag Coverage Δ
unittests 81.05% <ø> (ø)

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 changed the title fix(deps): update module github.com/burntsushi/toml to v0.4.0 fix(deps): update module github.com/burntsushi/toml to v0.4.1 Aug 5, 2021
@renovate renovate bot changed the title fix(deps): update module github.com/burntsushi/toml to v0.4.1 fix(deps): update all Aug 17, 2021
@renovate renovate bot changed the title fix(deps): update all chore(deps): update golang docker tag to v1.17 Aug 30, 2021
@auto-add-label auto-add-label bot added dependencies and removed bug labels Aug 30, 2021
@renovate renovate bot changed the title chore(deps): update golang docker tag to v1.17 fix(deps): update all Aug 30, 2021
@auto-add-label auto-add-label bot added bug and removed dependencies labels Aug 30, 2021
@renovate renovate bot changed the title fix(deps): update all chore(deps): update golang docker tag to v1.17 Aug 31, 2021
@auto-add-label auto-add-label bot added dependencies and removed bug labels Aug 31, 2021
@renovate renovate bot changed the title chore(deps): update golang docker tag to v1.17 fix(deps): update all Aug 31, 2021
@auto-add-label auto-add-label bot added bug and removed dependencies labels Aug 31, 2021
@renovate renovate bot force-pushed the renovate/all branch from 2838fb4 to 27ae354 Compare May 15, 2022 18:28
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from d76cce7 to 6865199 Compare May 24, 2022 10:43
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ef8ab00 to 54871fc Compare June 6, 2022 13:35
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 2ecec95 to 0f7c2a0 Compare November 8, 2024 19:04
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 6759acd to 94aa047 Compare November 23, 2024 13:31
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 58cb554 to 2713ef2 Compare December 6, 2024 02:41
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from b43a41a to 66b8ed3 Compare January 12, 2025 18:16
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from da12148 to f9af74c Compare January 28, 2025 11:36
Copy link
Author

renovate bot commented Jan 28, 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):

  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.15 -> 1.24.1

@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from f69b35c to 4002b91 Compare February 4, 2025 23:14
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 8795906 to 4fe0338 Compare February 14, 2025 20:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🔍 Ready for Review Pull Request is not reviewed yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants