Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2021

This PR contains the following updates:

Package Change Age Confidence Type Update
@actions/github (source) ^5.0.0 -> ^6.0.0 age confidence dependencies major
@types/node (source) ^16.11.12 -> ^22.0.0 age confidence devDependencies major
actions/checkout v2 -> v4 age confidence action major
actions/setup-node v2.4.1 -> v4.4.0 age confidence action major
codecov/codecov-action v2.1.0 -> v5.4.3 age confidence action major
eslint-config-prettier ^8.3.0 -> ^10.0.0 age confidence devDependencies major
eslint-plugin-jest ^25.3.0 -> ^29.0.0 age confidence devDependencies major
husky ^7.0.4 -> ^9.0.0 age confidence devDependencies major
lint-staged ^12.1.2 -> ^16.0.0 age confidence devDependencies major
node (source) 14 -> 22 age confidence major
pinst ^2.1.6 -> ^3.0.0 age confidence devDependencies major
prettier (source) ^2.5.1 -> ^3.0.0 age confidence devDependencies major
rimraf ^3.0.2 -> ^6.0.0 age confidence devDependencies major
typescript (source) ^4.5.3 -> ^5.0.0 age confidence devDependencies major

Release Notes

actions/toolkit (@​actions/github)

v6.0.1

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

Compare Source

What's Changed
Bug fixes:
Enhancement:
Dependency update:
New Contributors

Full Changelogactions/setup-node@v4...v4.4.0

v4.3.0

Compare Source

What's Changed

Dependency updates

New Contributors

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

v4.2.0

Compare Source

What's Changed

New Contributors

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

v4.1.0

Compare Source

What's Changed
New Contributors

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

v4.0.4

Compare Source

What's Changed

Documentation changes:

New Contributors

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

v4.0.3

Compare Source

What's Changed

Bug fixes:
Documentation changes:
Dependency updates:

New Contributors

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

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

Compare Source

What's Changed

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

v3.9.0

Compare Source

What's Changed

Full Changelog: actions/setup-node@v3...v3.9.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)

v5.4.3

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3

v5.4.2

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.1..v5.4.2

v5.4.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.0..v5.4.1

v5.4.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.3.1..v5.4.0

v5.3.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.3.0..v5.3.1

v5.3.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.2.0..v5.3.0

v5.2.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.1.2..v5.2.0

v5.1.2

Compare Source

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-all branch from 40438bb to a883016 Compare October 10, 2021 10:46
@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 from a883016 to 5c5f698 Compare October 26, 2021 01:19
@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 force-pushed the renovate/major-all branch from f623e21 to 3dcee94 Compare December 12, 2021 00:27
@renovate renovate bot force-pushed the renovate/major-all branch from 3dcee94 to db90e51 Compare January 24, 2022 13:25
@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 from db90e51 to 39323a2 Compare March 7, 2022 15:57
@renovate renovate bot force-pushed the renovate/major-all branch from 39323a2 to cd07692 Compare April 25, 2022 02:03
@renovate renovate bot force-pushed the renovate/major-all branch from cd07692 to a710b23 Compare May 15, 2022 23:10
@renovate renovate bot force-pushed the renovate/major-all branch from a710b23 to a3878e8 Compare June 18, 2022 20:11
@renovate renovate bot force-pushed the renovate/major-all branch from a3878e8 to 020e654 Compare September 25, 2022 11:33
@renovate renovate bot force-pushed the renovate/major-all branch from 020e654 to e18ce40 Compare March 16, 2023 13:30
@renovate renovate bot force-pushed the renovate/major-all branch from e18ce40 to d17feb5 Compare March 24, 2023 20:15
@renovate renovate bot force-pushed the renovate/major-all branch from d17feb5 to 25e5740 Compare April 17, 2023 12:36
@renovate renovate bot force-pushed the renovate/major-all branch from 25e5740 to ed4d033 Compare May 28, 2023 11:00
@renovate renovate bot force-pushed the renovate/major-all branch from ed4d033 to b16f54f Compare June 14, 2023 02:09
@renovate renovate bot force-pushed the renovate/major-all branch from b16f54f to 2c6eeb9 Compare July 5, 2023 14:48
@renovate renovate bot force-pushed the renovate/major-all branch from 2c6eeb9 to 7032059 Compare August 5, 2023 21:39
@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 force-pushed the renovate/major-all branch from 9f33786 to 8af248d Compare August 21, 2023 13:22
@renovate renovate bot force-pushed the renovate/major-all branch from 8af248d to 8377456 Compare September 4, 2023 15:55
@renovate renovate bot force-pushed the renovate/major-all branch from 8377456 to 700b4a2 Compare October 10, 2023 15:41
@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 from 700b4a2 to b625469 Compare October 14, 2023 19:28
@renovate renovate bot force-pushed the renovate/major-all branch from 78327b4 to 14a32da Compare October 29, 2024 16:34
@renovate renovate bot force-pushed the renovate/major-all branch 8 times, most recently from 2438990 to 3e7c53e Compare November 21, 2024 02:35
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 36348e2 to 9f19967 Compare December 5, 2024 22:37
@renovate renovate bot force-pushed the renovate/major-all branch from 9f19967 to ac147cc Compare December 18, 2024 19:07
@renovate renovate bot force-pushed the renovate/major-all branch from ac147cc to 485c2d0 Compare January 13, 2025 15:46
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from 1f17734 to 1bc6b0b Compare January 27, 2025 06:50
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from bf53763 to f9a9b89 Compare March 3, 2025 13:33
@renovate renovate bot force-pushed the renovate/major-all branch from f9a9b89 to 3bfc79d Compare March 17, 2025 04:59
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from f0d57d6 to 858251c Compare April 14, 2025 21:08
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from be33f16 to 4c06dd2 Compare May 15, 2025 21:29
@renovate renovate bot force-pushed the renovate/major-all branch from 4c06dd2 to 06f0c71 Compare June 18, 2025 16:04
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 606f55a to 3a85603 Compare July 31, 2025 23:13
@renovate renovate bot force-pushed the renovate/major-all branch from 3a85603 to d86d9db Compare August 3, 2025 19:15
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.

2 participants