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

chore(deps): update all #27

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

chore(deps): update all #27

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 8, 2021

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/cache action minor v3.0.7 -> v3.3.3 age adoption passing confidence
actions/checkout action minor v2.4.0 -> v2.7.0 age adoption passing confidence
github.com/stretchr/testify require minor v1.8.0 -> v1.9.0 age adoption passing confidence
go.uber.org/zap require minor v1.19.1 -> v1.27.0 age adoption passing confidence
golangci/golangci-lint-action action minor v3.2.0 -> v3.7.1 age adoption passing confidence
markdownlint-cli dependencies minor 0.28.1 -> 0.39.0 age adoption passing confidence

Release Notes

actions/cache (actions/cache)

v3.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.3.3

v3.3.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.3.2

v3.3.1

Compare Source

What's Changed

Full Changelog: actions/cache@v3...v3.3.1

v3.3.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.3.0

v3.2.6

Compare Source

What's Changed

Full Changelog: actions/cache@v3...v3.2.6

v3.2.5

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.2.5

v3.2.4

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.2.4

v3.2.3

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.2.3

v3.2.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3.2.1...v3.2.2

v3.2.1

Compare Source

What's Changed

Full Changelog: actions/cache@v3.2.0...v3.2.1

v3.2.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.2.0

v3.0.11

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.0.11

v3.0.10

Compare Source

  • Fix a bug with sorting inputs.
  • Update definition for restore-keys in README.md

v3.0.9

Compare Source

  • Enhanced the warning message for cache unavailability in case of GHES.

v3.0.8

Compare Source

What's Changed

  • Fix zstd not working for windows on gnu tar in issues.
  • Allow users to provide a custom timeout as input for aborting cache segment download using the environment variable SEGMENT_DOWNLOAD_TIMEOUT_MIN. Default is 60 minutes.
actions/checkout (actions/checkout)

v2.7.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2.6.0...v2.7.0

v2.6.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2.5.0...v2.6.0

v2.5.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2...v2.5.0

v2.4.2

Compare Source

What's Changed

Full Changelog: actions/checkout@v2...v2.4.2

v2.4.1

Compare Source

  • Fixed an issue where checkout failed to run in container jobs due to the new git setting safe.directory
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

uber-go/zap (go.uber.org/zap)

v1.27.0

Compare Source

Enhancements:

  • #​1378: Add WithLazy method for SugaredLogger.
  • #​1399: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #​1406: Add Log, Logw, Logln methods for SugaredLogger.
  • #​1416: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

v1.26.0

Compare Source

Enhancements:

  • #​1297: Add Dict as a Field.
  • #​1319: Add WithLazy method to Logger which lazily evaluates the structured
    context.
  • #​1350: String encoding is much (~50%) faster now.

Thanks to @​hhk7734, @​jquirke, @​cdvr1993 for their contributions to this release.

v1.25.0

Compare Source

This release contains several improvements including performance, API additions,
and two new experimental packages whose APIs are unstable and may change in the
future.

Enhancements:

  • #​1246: Add zap/exp/zapslog package for integration with slog.
  • #​1273: Add Name to Logger which returns the Logger's name if one is set.
  • #​1281: Add zap/exp/expfield package which contains helper methods
    Str and Strs for constructing String-like zap.Fields.
  • #​1310: Reduce stack size on Any.

Thanks to @​knight42, @​dzakaammar, @​bcspragu, and @​rexywork for their contributions
to this release.

v1.24.0

Compare Source

Enhancements:

  • #​1148: Add Level to both Logger and SugaredLogger that reports the
    current minimum enabled log level.
  • #​1185: SugaredLogger turns errors to zap.Error automatically.

Thanks to @​Abirdcfly, @​craigpastro, @​nnnkkk7, and @​sashamelentyev for their
contributions to this release.

v1.23.0

Compare Source

Enhancements:

  • #​1147: Add a zapcore.LevelOf function to determine the level of a
    LevelEnabler or Core.
  • #​1155: Add zap.Stringers field constructor to log arrays of objects
    that implement String() string.

v1.22.0

Compare Source

Enhancements:

  • #​1071: Add zap.Objects and zap.ObjectValues field constructors to log
    arrays of objects. With these two constructors, you don't need to implement
    zapcore.ArrayMarshaler for use with zap.Array if those objects implement
    zapcore.ObjectMarshaler.
  • #​1079: Add SugaredLogger.WithOptions to build a copy of an existing
    SugaredLogger with the provided options applied.
  • #​1080: Add *ln variants to SugaredLogger for each log level.
    These functions provide a string joining behavior similar to fmt.Println.
  • #​1088: Add zap.WithFatalHook option to control the behavior of the
    logger for Fatal-level log entries. This defaults to exiting the program.
  • #​1108: Add a zap.Must function that you can use with NewProduction or
    NewDevelopment to panic if the system was unable to build the logger.
  • #​1118: Add a Logger.Log method that allows specifying the log level for
    a statement dynamically.

Thanks to @​cardil, @​craigpastro, @​sashamelentyev, @​shota3506, and @​zhupeijun
for their contributions to this release.

v1.21.0

Compare Source

1.21.0 (7 Feb 2022)

Enhancements:

  • #​1047: Add zapcore.ParseLevel to parse a Level from a string.
  • #​1048: Add zap.ParseAtomicLevel to parse an AtomicLevel from a
    string.

Bugfixes:

  • #​1058: Fix panic in JSON encoder when EncodeLevel is unset.

Other changes:

  • #​1052: Improve encoding performance when the AddCaller and
    AddStacktrace options are used together.

Thanks to @​aerosol and @​Techassi for their contributions to this release.

v1.20.0

Compare Source

Enhancements:

  • #​989: Add EncoderConfig.SkipLineEnding flag to disable adding newline
    characters between log statements.
  • #​1039: Add EncoderConfig.NewReflectedEncoder field to customize JSON
    encoding of reflected log fields.

Bugfixes:

  • #​1011: Fix inaccurate precision when encoding complex64 as JSON.
  • #​554, #​1017: Close JSON namespaces opened in MarshalLogObject
    methods when the methods return.
  • #​1033: Avoid panicking in Sampler core if thereafter is zero.

Other changes:

Thanks to @​psrajat, @​lruggieri, @​sammyrnycreal for their contributions to this release.

golangci/golangci-lint-action (golangci/golangci-lint-action)

v3.7.1

Compare Source

v3.7.0

Compare Source

What's Changed

Changes
Documentation
Dependencies

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 September 8, 2021 22:04
@auto-add-label auto-add-label bot added the bug Something isn't working label Sep 8, 2021
@trafico-bot trafico-bot bot added the 🔍 Ready for Review Pull Request is not reviewed yet label Sep 8, 2021
@codecov
Copy link

codecov bot commented Sep 8, 2021

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 89.85%. Comparing base (e7492db) to head (fcd094e).

❗ Current head fcd094e differs from pull request most recent head ecc8282. Consider uploading reports for the commit ecc8282 to get more accurate results

Additional details and impacted files
@@           Coverage Diff           @@
##           master      #27   +/-   ##
=======================================
  Coverage   89.85%   89.85%           
=======================================
  Files           1        1           
  Lines          69       69           
=======================================
  Hits           62       62           
  Misses          5        5           
  Partials        2        2           
Flag Coverage Δ
unittests 89.85% <ø> (ø)

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 go.uber.org/zap to v1.19.1 chore(deps): update all Sep 13, 2021
@auto-add-label auto-add-label bot added dependencies Pull requests that update a dependency file and removed bug Something isn't working labels Sep 13, 2021
@renovate renovate bot changed the title chore(deps): update all fix(deps): update module go.uber.org/zap to v1.19.1 Sep 23, 2021
@auto-add-label auto-add-label bot added bug Something isn't working and removed dependencies Pull requests that update a dependency file labels Sep 23, 2021
@renovate renovate bot changed the title fix(deps): update module go.uber.org/zap to v1.19.1 fix(deps): update all Oct 5, 2021
@renovate renovate bot changed the title fix(deps): update all chore(deps): update all Oct 15, 2021
@auto-add-label auto-add-label bot added dependencies Pull requests that update a dependency file and removed bug Something isn't working labels Oct 15, 2021
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 1ac2fad to 6b47402 Compare October 21, 2021 08:24
@renovate renovate bot changed the title chore(deps): update all fix(deps): update dependency markdownlint-cli to v0.29.0 Nov 19, 2021
@auto-add-label auto-add-label bot added bug Something isn't working and removed dependencies Pull requests that update a dependency file labels Nov 19, 2021
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from cb76800 to 3322092 Compare November 20, 2021 08:13
@renovate renovate bot changed the title fix(deps): update dependency markdownlint-cli to v0.29.0 fix(deps): update dependency markdownlint-cli to v0.30.0 Nov 20, 2021
@renovate renovate bot changed the title fix(deps): update dependency markdownlint-cli to v0.30.0 chore(deps): update all Nov 23, 2021
@auto-add-label auto-add-label bot added dependencies Pull requests that update a dependency file and removed bug Something isn't working labels Nov 23, 2021
@socket-security
Copy link

socket-security bot commented Mar 24, 2023

👍 Dependency issues cleared. 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/all branch 3 times, most recently from 848e9a6 to 82a51e4 Compare June 2, 2023 12:36
@socket-security
Copy link

socket-security bot commented Jun 12, 2023

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/markdownlint-cli@0.39.0 Transitive: environment, filesystem, shell +40 5.02 MB davidanson

🚮 Removed packages: npm/markdownlint-cli@0.28.1

View full report↗︎

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file 🔍 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