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 (major) #226

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

fix(deps): update all (major) #226

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@actions/github (source) ^5.0.0 -> ^6.0.0 age adoption passing confidence dependencies major
@types/node (source) ^16.11.12 -> ^20.0.0 age adoption passing confidence devDependencies major
actions/checkout v2 -> v4 age adoption passing confidence action major
actions/setup-node v2.4.1 -> v4.0.2 age adoption passing confidence action major
codecov/codecov-action v2.1.0 -> v4.3.0 age adoption passing confidence action major
eslint (source) ^8.4.1 -> ^9.0.0 age adoption passing confidence devDependencies major
eslint-config-prettier ^8.3.0 -> ^9.0.0 age adoption passing confidence devDependencies major
eslint-plugin-jest ^25.3.0 -> ^28.0.0 age adoption passing confidence devDependencies major
husky ^7.0.4 -> ^9.0.0 age adoption passing confidence devDependencies major
lint-staged ^12.1.2 -> ^15.0.0 age adoption passing confidence devDependencies major
node (source) 14 -> 20 age adoption passing confidence major
pinst ^2.1.6 -> ^3.0.0 age adoption passing confidence devDependencies major
prettier (source) ^2.5.1 -> ^3.0.0 age adoption passing confidence devDependencies major
rimraf ^3.0.2 -> ^5.0.0 age adoption passing confidence devDependencies major
typescript (source) ^4.5.3 -> ^5.0.0 age adoption passing confidence devDependencies major

Release Notes

actions/toolkit (@​actions/github)

v6.0.0

v5.1.1

  • Export default octokit options #​1188

v5.1.0

  • Add additionalPlugins parameter to getOctokit method #​1181
  • Dependency updates #​1180

v5.0.3

    • Update to v2.0.1 of @actions/http-client #​1087

v5.0.2

  • Update to v2.0.0 of @actions/http-client

v5.0.1

actions/checkout (actions/checkout)

v4

Compare Source

v3

Compare Source

actions/setup-node (actions/setup-node)

v4.0.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/setup-node@v4.0.1...v4.0.2

v4.0.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/setup-node@v4...v4.0.1

v4.0.0

Compare Source

What's Changed

In scope of this release we changed version of node runtime for action from node16 to node20 and updated dependencies in https://github.com/actions/setup-node/pull/866

Besides, release contains such changes as:

New Contributors

Full Changelog: actions/setup-node@v3...v4.0.0

v3.8.2

Compare Source

What's Changed

Full Changelog: actions/setup-node@v3...v3.8.2

v3.8.1

Compare Source

What's Changed

In scope of this release, the filter was removed within the cache-save step by @​dmitry-shibanov in https://github.com/actions/setup-node/pull/831. It is filtered and checked in the toolkit/cache library.

Full Changelog: actions/setup-node@v3...v3.8.1

v3.8.0

Compare Source

What's Changed
Bug fixes:
Feature implementations:
Documentation changes:
Update dependencies:
New Contributors

Full Changelog: actions/setup-node@v3...v3.8.0

v3.7.0

Compare Source

What's Changed

In scope of this release we added a logic to save an additional cache path for yarn 3 (related pull request and feature request). Moreover, we added functionality to use all the sub directories derived from cache-dependency-path input and add detect all dependencies directories to cache (related pull request and feature request).

Besides, we made such changes as:

New Contributors

Full Changelog: actions/setup-node@v3...v3.7.0

v3.6.0: Add Support for Nightly, Canary and RC builds for Node.js

Compare Source

In scope of this release we added support to download nightly, rc (https://github.com/actions/setup-node/pull/611) and canary (https://github.com/actions/setup-node/pull/619) Node.js distributions.

For nightly versions:
jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16-nightly'
      - run: npm ci
      - run: npm test
For canary versions:
jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16-v8-canary’
      - run: npm ci
      - run: npm test
For rc versions:
jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16.0.0-rc.1’
      - run: npm ci
      - run: npm test

Note: For more examples please refer to documentation.

Besides, we added the following changes as:

v3.5.1: Update @​actions/core and Print Node, Npm, Yarn versions

Compare Source

In scope of this release we updated actions/core to 1.10.0. Moreover, we added logic to print Nodejs, Npm, Yarn versions after installation.

v3.5.0: Add support for engines.node and Volta

Compare Source

In scope of this release we add support for engines.node. The action will be able to grab the version form package.json#engines.node. https://github.com/actions/setup-node/pull/485. Moreover, we added support for Volta

Besides, we updated @​actions/core to 1.9.1 and @​actions/cache to 3.0.4

v3.4.1: Fix pnpm output and node-version output issues

Compare Source

In scope of this release we fixed bugs related to the pnpm 7.5.1 output issue from pnpm store path https://github.com/actions/setup-node/pull/545. Moreover we fixed the issue with falling on node-version output https://github.com/actions/setup-node/pull/540.

v3.4.0: Add support for asdf format and update actions/cache version to 3.0.0

Compare Source

In scope of this release we updated actions/cache package as the new version contains fixes for caching error handling. Moreover, we added support for asdf format as Node.js version file https://github.com/actions/setup-node/pull/373. Besides, we introduced new output node-version and added npm-shrinkwrap.json to dependency file patterns: https://github.com/actions/setup-node/pull/439

v3.3.0: Add support for lts/-n aliases

Compare Source

In scope of this release we added support for lts/-n aliases, improve logic for current, latest and node aliases to handle them from toolcache, update ncc package.

Support of lts/-n aliases
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
  with:
    node-version: lts/-1
- run: npm ci
- run: npm test
Minor improvements

v3.2.0: Add current, node, latest aliases

Compare Source

In scope of this release we added new aliases to install the latest Node.js version. https://github.com/actions/setup-node/pull/483

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
  with:
    node-version: current
- run: npm ci
- run: npm test

v3.1.1: Update actions/cache version to 2.0.2

Compare Source

In scope of this release we updated actions/cache package as the new version contains fixes related to GHES 3.5 (https://github.com/actions/setup-node/pull/460)

v3.1.0: Add caching support on GHES 3.5

Compare Source

In scope of this release we added support for caching from GHES 3.5 and fixed download issue for files > 2GB during restore. Besides, we updated actions/cache dependency to 2.0.0 version.

v3.0.0

Compare Source

In scope of this release we changed version of the runtime Node.js for the setup-node action and updated package-lock.json file to v2.

Breaking Changes

v2.5.2: Update @​actions/core for v2

Compare Source

In scope of this release we updated actions/core to 1.10.0 and actions/tool-cache to 1.7.2 for v2: https://github.com/actions/setup-node/pull/713

v2.5.1: Fix logic of error handling for npm warning and uncaught exception

Compare Source

In scope of this release we fix logic of error handling related to caching (https://github.com/actions/setup-node/pull/358) and (https://github.com/actions/setup-node/pull/359).

In the previous behaviour we relied on stderr output to throw error. The warning messages from package managers can be written to the stderr's output. For now the action will throw an error only if exit code differs from zero. Besides, we add logic to сatch and log unhandled exceptions.

v2.5.0: Adding Node.js version file support

Compare Source

In scope of this release we add the node-version-file input and update actions/cache dependency to the latest version.

Adding Node.js version file support

The new input (node-version-file) provides functionality to specify the path to the file containing Node.js's version with such behaviour:

  • If the file does not exist the action will throw an error.
  • If you specify both node-version and node-version-file inputs, the action will use value from the node-version input and throw the following warning: Both node-version and node-version-file inputs are specified, only node-version will be used.
  • For now the action does not support all of the variety of values for Node.js version files. The action can handle values according to the documentation and values with v prefix (v14)
steps:
  - uses: actions/checkout@v2
  - name: Setup node from node version file
    uses: actions/setup-node@v2
    with:
      node-version-file: '.nvmrc'
  - run: npm install
  - run: npm test
Update actions/cache dependency to 1.0.8 version.

We updated actions/cache dependency to the latest version (1.0.8). For more information please refer to the toolkit/cache.

codecov/codecov-action (codecov/codecov-action)

v4.3.0

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.2.0...v4.3.0

v4.2.0

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.1.1...v4.2.0

v4.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: codecov/codecov-action@v4.1.0...v4.1.1

v4.1.0

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.0.2...v4.1.0

v4.0.2

Compare Source

What's Changed
New Contributors

Full Changelog: codecov/codecov-action@v4.0.1...v4.0.2

v4.0.1

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.0.0...v4.0.1

v4.0.0

Compare Source

v4 of the Codecov Action uses the CLI as the underlying upload. The CLI has helped to power new features including local upload, the global upload token, and new upcoming features.

Breaking Changes
  • The Codecov Action runs as a node20 action due to node16 deprecation. See this post from GitHub on how to migrate.
  • Tokenless uploading is unsupported. However, PRs made from forks to the upstream public repos will support tokenless (e.g. contributors to OS projects do not need the upstream repo's Codecov token). This doc shows instructions on how to add the Codecov token.
  • OS platforms have been added, though some may not be automatically detected. To see a list of platforms, see our CLI download page
  • Various arguments to the Action have been changed. Please be aware that the arguments match with the CLI's needs

v3 versions and below will not have access to CLI features (e.g. global upload token, ATS).

What's Changed

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Berlin, 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 changed the title chore(deps): update dependency eslint to v8 chore(deps): update all (major) Oct 10, 2021
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from ab91786 to f623e21 Compare November 13, 2021 20:24
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update node.js to v16 Dec 11, 2021
@renovate renovate bot changed the title chore(deps): update node.js to v16 chore(deps): update all (major) Jan 24, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 0487f17 to 9f33786 Compare August 17, 2023 15:58
@renovate renovate bot changed the title chore(deps): update all (major) fix(deps): update all (major) Oct 10, 2023
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from edec1a0 to c2897da Compare October 24, 2023 01:42
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from 48cc304 to f0dcc34 Compare January 31, 2024 19:07
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 346726e to 5d8818c Compare February 7, 2024 06:20
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from e7d056b to c394534 Compare February 26, 2024 21:10
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from a7750ef to 367faba Compare April 6, 2024 09:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant