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

Mend Renovate

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.20.0 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.9.0 age adoption passing confidence require minor
github.com/urfave/cli v1.22.5 -> v1.22.15 age adoption passing confidence require patch
golang 1.19.0-alpine -> 1.22.3-alpine age adoption passing confidence stage minor
golang.org/x/tools v0.1.5 -> v0.22.0 age adoption passing confidence require minor
markdownlint-cli 0.28.1 -> 0.41.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.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.8.4...v1.9.0

v1.8.4

Compare Source

v1.8.3

Compare Source

v1.8.2

Compare Source

v1.8.1

Compare Source

v1.8.0

Compare Source

v1.7.5

Compare Source

v1.7.4

Compare Source

v1.7.3

Compare Source

v1.7.2

Compare Source

v1.7.1

Compare Source

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

v1.22.15

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.14...v1.22.15

v1.22.14

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.13...v1.22.14

v1.22.13

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.12...v1.22.13

v1.22.12

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.11...v1.22.12

v1.22.11

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.10...v1.22.11

v1.22.10

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.9...v1.22.10

v1.22.9

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.8...v1.22.9

v1.22.8

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.7...v1.22.8

v1.22.7: Release 1.22.7

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.6...v1.22.7

v1.22.6: Release 1.22.6

Compare Source

What's Changed

Full Changelog: urfave/cli@v1.22.5...v1.22.6

igorshubovych/markdownlint-cli (markdownlint-cli)

v0.41.0: 0.41.0

Compare Source

  • Change TOML parser to smol-toml which supports v1.0.0 of the specification
  • Update all dependencies via Dependabot

v0.40.0: 0.40.0

Compare Source

  • Update markdownlint dependency to 0.34.0
    • Use micromark in MD027/MD028/MD036/MD040/MD041/MD046/MD048
    • Improve MD013/MD034/MD049/MD050/MD051
  • Add support for TOML configuration files via --config
  • Add --configPointer argument for nested configuration
  • Update --ignore for directories to ignore all files within
  • Update all dependencies via Dependabot

v0.39.0: 0.39.0

Compare Source

  • Update markdownlint dependency to 0.33.0
    • Add MD055/table-pipe-style, MD056/table-column-count
    • Improve MD005/MD007/MD024/MD026/MD038
    • Incorporate micromark-extension-directive
    • Improve JSON schema, document validation
  • Handle trailing commas in JSONC configuration
  • Update all dependencies via Dependabot

v0.38.0: 0.38.0

Compare Source

  • Update markdownlint dependency to 0.32.1
    • Remove deprecated MD002/MD006
    • Remove rule aliases for "header"
    • Add MD054/link-image-style
    • Use micromark in MD005/MD007/MD030
    • Improve MD022/MD026/MD034/MD037/MD038/MD045/MD051
  • Remove support for end-of-life Node version 16
  • Update all dependencies via Dependabot

v0.37.0: 0.37.0

Compare Source

  • Update markdownlint dependency to 0.31.1
    • Improve MD032/MD034/MD037/MD043/MD044/MD051/MD052
    • Improve performance
  • Update all dependencies via Dependabot

v0.36.0: 0.36.0

Compare Source

  • Update markdownlint dependency to 0.30.0
    • Use micromark in MD022/MD026/MD032/MD037/MD045/MD051
    • Incorporate micromark-extension-math for math syntax
    • Allow custom rules to override information URL
  • Update all dependencies via Dependabot

v0.35.0: 0.35.0

Compare Source

  • Update markdownlint dependency to 0.29.0
    • Update micromark parser dependencies for better performance
    • Use micromark in MD049/MD050
    • Improve MD034/MD037/MD044/MD049/MD050
  • Update all dependencies via Dependabot

v0.34.0: 0.34.0

Compare Source

  • Update markdownlint dependency to 0.28.2
    • Introduce micromark parser for better positional data (internal only)
    • Use micromark in MD013/MD033/MD034/MD035/MD038/MD044/MD052/MD053
  • Update all dependencies via Dependabot

v0.33.0: 0.33.0

Compare Source

  • Update markdownlint dependency to 0.27.0
    • Improve MD011/MD013/MD022/MD031/MD032/MD033/MD034/MD040/MD043/MD051/MD053
    • Generate/separate documentation
    • Improve documentation
  • Publish Docker container images for both linux/amd64 and linux/arm64
  • Support JSONC and YAML inside markdownlint-configure-file comments
  • Update all dependencies via Dependabot

v0.32.2: 0.32.2

Compare Source

  • Update markdownlint dependency to 0.26.2
    • Improve MD037/MD051/MD053
  • Update all dependencies via Dependabot

v0.32.1: 0.32.1

Compare Source

  • Update markdownlint dependency to 0.26.1
    • Improve MD051
  • Update all dependencies via Dependabot

v0.32.0: 0.32.0

Compare Source

  • Update markdownlint dependency to 0.26.0
    • Add MD051/link-fragments: Link fragments should be valid
    • Add MD052/reference-links-images: Reference links and images should use a label that is defined
    • Add MD053/link-image-reference-definitions: Link and image reference definitions should be needed (auto-fixable)
    • Improve MD010/MD031/MD035/MD039/MD042/MD044/MD049/MD050
    • Add markdownlint-disable-line inline comment
    • Support ~ paths in configuration files
    • Improve performance
  • Add .markdownlint.jsonc to list of supported configuration files
  • Remove support for end-of-life Node version 12
  • Update all dependencies via Dependabot

v0.31.1: 0.31.1

Compare Source

  • Automatically publish Docker container image to GitHub Packages
  • Update all dependencies via Dependabot

v0.31.0: 0.31.0

Compare Source

  • Update markdownlint dependency to 0.25.0
    • Add MD049/MD050 for consistent emphasis/strong style (both auto-fixable)
    • Improve MD007/MD010/MD032/MD033/MD035/MD037/MD039
    • Support asynchronous custom rules
    • Improve performance
  • Update all dependencies via Dependabot

v0.30.0: 0.30.0

Compare Source

  • Add --enable/--disable params
  • Add --quiet param
  • Throw for bad config file
  • Update all dependencies via Dependabot

v0.29.0: 0.29.0

Compare Source

  • Update markdownlint dependency to 0.24.0
    • Improve MD010/MD011/MD037/MD043/MD044
  • Remove support for end-of-life Node version 10
  • Update all dependencies via Dependabot

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 has been generated by Mend Renovate. View repository job log here.

@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 ea0b175

Please upload reports for the commit ea0b175 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 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 b36ff8e to 6ba5f6a Compare October 10, 2023 22:47
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from d549e65 to 985a3a1 Compare November 9, 2023 01:21
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from f602350 to 4d7c430 Compare December 1, 2023 01:37
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from be8498a to 11192d6 Compare December 9, 2023 06:57
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 6ea5b56 to c86eff0 Compare January 12, 2024 01:41
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from fd34efd to 34aade0 Compare January 28, 2024 22:47
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from cafd527 to 3e4a1be Compare February 13, 2024 01:14
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from b45ea33 to b33f7d7 Compare March 5, 2024 21:46
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 893cf58 to 9bb7a37 Compare April 4, 2024 23:44
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ac15f4c to 3aff5b5 Compare April 30, 2024 04:59
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from e88e01b to e93c803 Compare May 7, 2024 19:16
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 0ea3809 to e52fd4b Compare May 26, 2024 01:22
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.

None yet

0 participants