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

Update external minor dep #92

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 1, 2022

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action minor v2.3.4 -> v2.7.0 age adoption passing confidence
actions/setup-python action minor v2.2.2 -> v2.3.4 age adoption passing confidence
crazy-max/ghaction-github-labeler action minor v3.1.1 -> v3.2.0 age adoption passing confidence
helm/chart-releaser-action action minor v1.2.1 -> v1.7.0 age adoption passing confidence
helm/chart-testing-action action minor v2.1.0 -> v2.7.0 age adoption passing confidence
minitest (changelog) minor "5.14.4" -> "5.25.5" age adoption passing confidence
minitest-reporters minor "1.4.3" -> "1.7.1" age adoption passing confidence
pry minor "0.14.1" -> "0.15.2" age adoption passing confidence

Release Notes

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

v2.4.0

Compare Source

  • Convert SSH URLs like org-<ORG_ID>@&#8203;github.com: to https://github.com/ - pr

v2.3.5

Compare Source

Update dependencies

actions/setup-python (actions/setup-python)

v2.3.4

Compare Source

What's Changed

In the scope of this patch release, the warning for deprecating Python 2.x was added in https://github.com/actions/setup-python/pull/675 by @​dmitry-shibanov

For more information, check out https://github.com/actions/setup-python/issues/672

Full Changelog: actions/setup-python@v2...v2.3.4

v2.3.3: Update actions/core to 1.10.0 for v2

Compare Source

In scope of this release we update actions/core to 1.10.0 for v2 major tag: https://github.com/actions/setup-python/pull/533.

v2.3.2: Update primary and restore keys for pip

Compare Source

In scope of this release we include a version of python in restore and primary cache keys for pip. Besides, we add temporary fix for Windows caching issue, that the pip cache dir command returns non zero exit code or writes to stderr. Moreover we updated node-fetch dependency.

v2.3.1: Update actions/cache version to 1.0.8

Compare Source

We have updated actions/cache dependency version to 1.0.8 to support 10GB cache upload

v2.3.0: Support caching dependencies

Compare Source

This release introduces dependency caching support (https://github.com/actions/setup-python/pull/266)

Caching dependencies.

The action has a built-in functionality for caching and restoring pip/pipenv dependencies. The cache input is optional, and caching is turned off by default.

Besides, this release introduces dependency caching support for mono repos and repositories with complex structure.

By default, the action searches for the dependency file (requirements.txt for pip or Pipfile.lock for pipenv) in the whole repository. Use the cache-dependency-path input for cases when you want to override current behaviour and use different file for hash generation (for example requirements-dev.txt). This input supports wildcards or a list of file names for caching multiple dependencies.

Caching pip dependencies:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pip'
- run: pip install -r requirements.txt
- run: pip test
Caching pipenv dependencies:
steps:
- uses: actions/checkout@v2
- name: Install pipenv
  run: pipx install pipenv
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pipenv'
- run: pipenv install
- run: pipenv test
Change dependency file:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pip'
    cache-dependency-path: '**/requirements-dev.txt'
- run: pip install -r subdirectory/requirements-dev.txt
- run: pip test
crazy-max/ghaction-github-labeler (crazy-max/ghaction-github-labeler)

v3.2.0

Compare Source

helm/chart-releaser-action (helm/chart-releaser-action)

v1.7.0

Compare Source

For cr changes see https://github.com/helm/chart-releaser/releases/tag/v1.7.0

What's Changed

New Contributors

Full Changelog: helm/chart-releaser-action@v1...v1.7.0

v1.6.0

Compare Source

What's Changed
New Contributors

Full Changelog: helm/chart-releaser-action@v1.5.0...v1.6.0

v1.5.0

Compare Source

What's Changed
New Contributors

Full Changelog: helm/chart-releaser-action@v1...v1.5.0

v1.4.1

Compare Source

What's Changed

Full Changelog: helm/chart-releaser-action@v1.4.0...v1.4.1

v1.4.0

Compare Source

What's Changed

Full Changelog: helm/chart-releaser-action@v1.3.0...v1.4.0

v1.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: helm/chart-releaser-action@v1.2.1...v1.3.0

helm/chart-testing-action (helm/chart-testing-action)

v2.7.0

Compare Source

For ct change see https://github.com/helm/chart-testing/releases/tag/v3.12.0

What's Changed
New Contributors

Full Changelog: helm/chart-testing-action@v2.6.1...v2.7.0

v2.6.1

Compare Source

What's Changed

Full Changelog: helm/chart-testing-action@v2...v2.6.1

v2.6.0

Compare Source

What's Changed

Full Changelog: helm/chart-testing-action@v2...v2.6.0

v2.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: helm/chart-testing-action@v2.4.0...v2.5.0

v2.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: helm/chart-testing-action@v2...v2.4.0

v2.3.1

Compare Source

What's Changed

Full Changelog: helm/chart-testing-action@v2.3.0...v2.3.1

v2.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: helm/chart-testing-action@v2.2.1...v2.3.0

v2.2.1

Compare Source

What's Changed
New Contributors

Full Changelog: helm/chart-testing-action@v2.2.0...v2.2.1

v2.2.0

Compare Source

What's Changed
New Contributors

Full Changelog: helm/chart-testing-action@v2.1.0...v2.2.0

minitest/minitest (minitest)

v5.25.5

Compare Source

v5.25.4

Compare Source

v5.25.3

Compare Source

v5.25.2

Compare Source

v5.25.1

Compare Source

v5.25.0

Compare Source

v5.24.1

Compare Source

v5.24.0

Compare Source

v5.23.1

Compare Source

v5.23.0

Compare Source

v5.22.3

Compare Source

v5.22.2

Compare Source

v5.22.1

Compare Source

v5.22.0

Compare Source

v5.21.2

Compare Source

v5.21.1

Compare Source

v5.21.0

Compare Source

v5.20.0

Compare Source

v5.19.0

Compare Source

v5.18.1

Compare Source

v5.18.0

Compare Source

v5.17.0

Compare Source

v5.16.3

Compare Source

v5.16.2

Compare Source

v5.16.1

Compare Source

v5.16.0

Compare Source

v5.15.0

Compare Source

CapnKernul/minitest-reporters (minitest-reporters)

v1.7.1

Compare Source

  • Fixed logic of new suppress_inline_failure_output. This option was doing the opposite of what it intended to do.
    #​354

v1.7.0

Compare Source

  • Minor documentation improvements #​343
  • Fixed homepage link in gemspec #​333 contributed by andyw8
  • Added Ruby 3.2 to the CI matrix #​335 contributed by petergoldstein
  • Updated JUnitReporter to output a failure screenshot path when included in the minitest result #​346 contributed by matteeyah
  • Fixed backwards fraction in ProgressReporter default format #​348 contributed by notEthan
  • Added option suppress_inline_failure_output to SpecReporter to provide an explicit switch, separate from print_failure_summary, for suppressing inline failure messages. Until this change, the print_failure_summary would do both: print a failure/error summary after all tests run and suppress the inline failure messages. With this change print_failure_summary will just add a summary at the end of a test run, and it will no longer suppress the inline failure messages. #​352 contributed by rthbound

v1.6.1

Compare Source

  • Replaced use of MiniTest constant with Minitest #​345 contributed by istana

v1.6.0

Compare Source

  • Switched to Github actions #​324 petergoldstein
  • Fixed misspelled method name in HTML reporter (percent_skipps -> percent_skips) #​326 contributed by andyw8
  • Removed deprecated call to Object#=~ #​318 contributed by etiennebarrie
  • Added option print_failure_summary to SpecReporter which causes failures and errors to print at the end of the test suite instead of inline
    as they happen #​306 contributed by picandocodigo

v1.5.0

Compare Source


Configuration

📅 Schedule: Branch creation - "every 2 months on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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 nicholaswilde as a code owner May 1, 2022 00:09
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 2 times, most recently from 1733320 to 45c2e75 Compare June 23, 2022 21:56
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from 45c2e75 to f532554 Compare September 25, 2022 12:21
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from f532554 to e8ec918 Compare November 20, 2022 19:50
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from e8ec918 to 6ed1410 Compare March 16, 2023 11:59
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 2 times, most recently from a13f142 to c57313c Compare March 24, 2023 14:58
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from c57313c to d0dfc5f Compare May 30, 2023 14:01
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from d0dfc5f to 2640478 Compare June 16, 2023 19:30
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from 2640478 to f30d979 Compare July 26, 2023 19:57
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 5 times, most recently from b07ead1 to 49844c1 Compare November 6, 2023 06:16
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 3 times, most recently from 8ae416a to 3ce5679 Compare January 18, 2024 09:33
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 3 times, most recently from 1a397a7 to 9c1e214 Compare February 7, 2024 22:36
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from 9c1e214 to 321dfa5 Compare March 13, 2024 23:11
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 2 times, most recently from e1c1605 to 424ec28 Compare May 22, 2024 11:29
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 2 times, most recently from 584ba47 to d0e278d Compare June 20, 2024 03:56
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from d0e278d to 482f457 Compare June 29, 2024 22:38
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 2 times, most recently from e5a73d2 to cb2ead3 Compare August 16, 2024 19:48
@renovate renovate bot force-pushed the renovate/external-minor-dep branch 2 times, most recently from b17ac4c to 2a1e068 Compare November 21, 2024 20:45
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from 8cd4d25 to d2b4aef Compare December 6, 2024 02:56
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from d2b4aef to 3fb4c1f Compare December 24, 2024 16:44
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from 3fb4c1f to c49a377 Compare January 20, 2025 14:07
@renovate renovate bot force-pushed the renovate/external-minor-dep branch from c49a377 to 05bbbf5 Compare March 12, 2025 21:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant