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 devdependencies #125

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 17, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
npm-check-updates 16.5.6 -> 16.14.20 age adoption passing confidence
prettier-config-atomic ^3.0.6 -> ^4.0.0 age adoption passing confidence
typescript (source) ^4.2.3 -> ^5.0.0 age adoption passing confidence

Release Notes

raineorshine/npm-check-updates (npm-check-updates)

v16.14.20

Compare Source

v16.14.19

Compare Source

v16.14.18

Compare Source

v16.14.17

Compare Source

v16.14.16

Compare Source

v16.14.15

Compare Source

v16.14.14

Compare Source

v16.14.13

Compare Source

v16.14.12

Compare Source

v16.14.11

Compare Source

v16.14.10

Compare Source

v16.14.9

Compare Source

v16.14.8

Compare Source

v16.14.7

Compare Source

v16.14.6

Compare Source

v16.14.5

Compare Source

v16.14.4

Compare Source

v16.14.3

Compare Source

v16.14.2

Compare Source

v16.14.1

Compare Source

v16.14.0

Compare Source

bun

Feature

  • Added experimental support for bun package manager.
  • Automatically used if bun.lockb is detected.
  • Assistance needed to test it out on different platforms.
$ ncu --packageManager bun
$ ncu -p bun

Thanks to @​ImBIOS for the PR!

v16.13.4

Compare Source

v16.13.3

Compare Source

v16.13.2

Compare Source

v16.13.1

Compare Source

v16.13.0

Compare Source

Feature

  • Added --install option to control auto-install behavior.

Usage:

ncu --install [value]

Default: prompt

Control the auto-install behavior.

alwaysRuns your package manager's install command automatically after upgrading.
neverDoes not install and does not prompt.
promptShows a message after upgrading that recommends an install, but does not install. In interactive mode, prompts for install. (default)

v16.12.3

Compare Source

v16.12.2

Compare Source

v16.12.1

Compare Source

v16.12.0

Compare Source

v16.11.2

Compare Source

v16.11.1

Compare Source

v16.11.0

Compare Source

v16.10.19

Compare Source

v16.10.18

Compare Source

v16.10.17

Compare Source

v16.10.16

Compare Source

v16.10.15

Compare Source

v16.10.14

Compare Source

v16.10.13

Compare Source

v16.10.12

Compare Source

v16.10.11

Compare Source

v16.10.10

Compare Source

v16.10.9

Compare Source

v16.10.8

Compare Source

v16.10.7

Compare Source

v16.10.6

Compare Source

v16.10.5

Compare Source

v16.10.4

Compare Source

v16.10.3

Compare Source

v16.10.2

Compare Source

v16.10.1

Compare Source

v16.10.0

Compare Source

Feature

  • Added filterResults option to filter out upgrades based on a user provided function.

filterResults runs after new versions are fetched, in contrast to filter and filterVersion, which run before. This allows you to filter out upgrades with filterResults based on how the version has changed (e.g. a major version change).

Only available in .ncurc.js or when importing npm-check-updates as a module.

/** Filter out non-major version updates.
  @​param {string} packageName               The name of the dependency.
  @​param {string} currentVersion            Current version declaration (may be range).
  @​param {SemVer[]} currentVersionSemver    Current version declaration in semantic versioning format (may be range).
  @​param {string} upgradedVersion           Upgraded version.
  @​param {SemVer} upgradedVersionSemver     Upgraded version in semantic versioning format.
  @​returns {boolean}                        Return true if the upgrade should be kept, otherwise it will be ignored.
*/
filterResults: (packageName, {currentVersion, currentVersionSemver, upgradedVersion, upgradedVersionSemver}) => {
  const currentMajorVersion = currentVersionSemver?.[0]?.major
  const upgradedMajorVersion = upgradedVersionSemver?.major
  if (currentMajorVersion && upgradedMajorVersion) {
    return currentMajorVersion < upgradedMajorVersion
  }
  return true
}

For the SemVer type definition, see: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring

Thanks to mslowiak for this enhancement!

v16.9.0

Compare Source

v16.8.2

Compare Source

v16.8.1

Compare Source

v16.8.0

Compare Source

Feature

  • Added --format lines
$ ncu --format lines
@&#8203;ava/typescript@^4.0.0
ava@^5.2.0
eslint@^8.36.0
lerna@^6.5.1
typescript@^5.0.2

This is particularly useful for upgrading global modules:

npm install -g $(ncu -g --format lines)

Thanks to @​vanodevium for the PR!

v16.7.13

Compare Source

v16.7.12

Compare Source

v16.7.11

Compare Source

v16.7.10

Compare Source

v16.7.9

Compare Source

v16.7.8

Compare Source

v16.7.7

Compare Source

v16.7.6

Compare Source

v16.7.5

Compare Source

v16.7.4

Compare Source

v16.7.3

Compare Source

v16.7.2

Compare Source

v16.7.1

Compare Source

v16.7.0

Compare Source

v16.6.5

Compare Source

v16.6.4

Compare Source

v16.6.3

Compare Source

v16.6.2

Compare Source

v16.6.1

Compare Source

v16.6.0

Compare Source

atom-community/prettier-config-atomic (prettier-config-atomic)

v4.0.0

Compare Source

What's Changed

Breaking Change

The config now supports Prettier v3.0 only. The code itself is an ESM module, so use an import instead of require.

Full Changelog: atom-community/prettier-config-atomic@v3.1.0...v4.0.0

v3.1.0

Compare Source

Bug Fixes
Features

3.0.11 (2022-07-03)

Bug Fixes

3.0.10 (2022-06-22)

Bug Fixes
  • deps: update dependency prettier to v2.7.1 (2825b26)

3.0.9 (2022-04-02)

Bug Fixes
  • deps: update dependency prettier to v2.6.2 (a55d98d)

3.0.8 (2022-03-26)

Bug Fixes
  • deps: update dependency prettier to v2.6.1 (c4f041c)

3.0.7 (2022-03-17)

Bug Fixes
  • update prettier and dependencies (f03379b)

3.0.6 (2022-03-13)

Reverts
  • Revert "fix(deps): update dependency prettier to v2.5.1" (2589e78)

3.0.5 (2022-03-12)

Bug Fixes
  • deps: update dependency prettier to v2.5.1 (f6a291e)

3.0.4 (2022-03-11)

Bug Fixes

3.0.3 (2022-01-27)

Bug Fixes

3.0.2 (2022-01-27)

Bug Fixes

3.0.1 (2021-10-02)

Bug Fixes
  • inline the plugin into a function (9ed6476)

v3.0.10

Compare Source

Bug Fixes
  • deps: update dependency prettier to v2.7.1 (2825b26)

v3.0.9

Compare Source

Bug Fixes
  • deps: update dependency prettier to v2.6.2 (a55d98d)

v3.0.8

Compare Source

Bug Fixes
  • deps: update dependency prettier to v2.6.1 (c4f041c)

v3.0.7

Compare Source

Bug Fixes
  • update prettier and dependencies (f03379b)
Microsoft/TypeScript (typescript)

v5.4.5: TypeScript 5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.4: TypeScript 5.4.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.3: TypeScript 5.4.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.2: TypeScript 5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.3.3: TypeScript 5.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.3.2: TypeScript 5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.2.2: TypeScript 5.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.1.6: TypeScript 5.1.6

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on npm

v5.1.5: TypeScript 5.1.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.1.3: TypeScript 5.1.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.0.4: TypeScript 5.0.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.0.3: TypeScript 5.0.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.0.2: TypeScript 5.0

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 npm-check-updates to v16.6.0 Update dependency npm-check-updates to v16.6.0 Dec 17, 2022
@renovate renovate bot changed the title Update dependency npm-check-updates to v16.6.0 chore(deps): update dependency npm-check-updates to v16.6.0 Dec 17, 2022
@renovate renovate bot changed the title chore(deps): update dependency npm-check-updates to v16.6.0 chore(deps): update dependency npm-check-updates to v16.6.2 Dec 21, 2022
@renovate renovate bot changed the title chore(deps): update dependency npm-check-updates to v16.6.2 chore(deps): update dependency npm-check-updates to v16.6.3 Jan 23, 2023
@renovate renovate bot changed the title chore(deps): update dependency npm-check-updates to v16.6.3 chore(deps): update dependency npm-check-updates to v16.6.4 Feb 5, 2023
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from ba7d550 to 087cecb Compare February 6, 2023 17:52
@renovate renovate bot changed the title chore(deps): update dependency npm-check-updates to v16.6.4 chore(deps): update dependency npm-check-updates to v16.6.5 Feb 6, 2023
@renovate renovate bot changed the title chore(deps): update dependency npm-check-updates to v16.6.5 chore(deps): update dependency npm-check-updates to v16.7.2 Feb 9, 2023
@renovate renovate bot force-pushed the renovate/devdependencies branch from 9749386 to b6e73ef Compare March 17, 2023 22:07
@renovate renovate bot changed the title chore(deps): update dependency npm-check-updates to v16.7.2 chore(deps): update devdependencies Mar 17, 2023
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from f4ad513 to 4999021 Compare March 22, 2023 21:14
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 7423e83 to 832f154 Compare April 3, 2023 11:23
@renovate renovate bot force-pushed the renovate/devdependencies branch from 832f154 to ff3539e Compare April 17, 2023 12:16
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from bea682b to a62f03c Compare June 1, 2023 19:56
@renovate renovate bot force-pushed the renovate/devdependencies branch from a62f03c to f33fd8b Compare June 4, 2023 14:42
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 0aae332 to 79f4071 Compare June 19, 2023 09:47
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 977d7f8 to 17127ed Compare June 29, 2023 02:51
@renovate renovate bot force-pushed the renovate/devdependencies branch from 17127ed to 6d2ae23 Compare July 6, 2023 11:29
@renovate renovate bot force-pushed the renovate/devdependencies branch from c87b438 to feb2c8b Compare August 28, 2023 17:12
@renovate renovate bot force-pushed the renovate/devdependencies branch 4 times, most recently from a53da2c to 0e8613e Compare September 13, 2023 17:20
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from b2b237a to 26f1439 Compare September 19, 2023 14:57
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from f7e8959 to 20e06fa Compare September 28, 2023 12:52
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 6271a93 to 5d83f7e Compare October 9, 2023 08:30
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from c17ab3d to b377c4a Compare October 19, 2023 16:52
Copy link
Contributor Author

renovate bot commented Nov 6, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
 WARN  The "store" setting has been renamed to "store-dir". Please use the new name.
 WARN  GET https://registry.npmjs.org/assemblyscript error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier-config-atomic error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/typescript error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@babel%2Fcore error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/coffeescript error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-22.0.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-4.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-8.4.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-wasm/-/plugin-wasm-5.1.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/array-includes-any/-/array-includes-any-2.7.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/csso-cli/-/csso-cli-4.0.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/rollup/-/rollup-2.42.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/npm-check-updates error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/assemblyscript error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prettier-config-atomic error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/typescript error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@babel%2Fcore error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/coffeescript error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-22.0.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-4.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-8.4.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@rollup/plugin-wasm/-/plugin-wasm-5.1.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/array-includes-any/-/array-includes-any-2.7.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/csso-cli/-/csso-cli-4.0.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/rollup/-/rollup-2.42.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/npm-check-updates error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/rollup-plugin-assemblyscript/-/rollup-plugin-assemblyscript-2.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams
 WARN  GET https://registry.npmjs.org/rollup-plugin-auto-external/-/rollup-plugin-auto-external-2.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/rollup-plugin-coffee-script/-/rollup-plugin-coffee-script-2.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/rollup-plugin-css-only/-/rollup-plugin-css-only-3.1.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/rollup-plugin-execute/-/rollup-plugin-execute-1.1.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.

@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 1d23caf to 9415b7a Compare November 19, 2023 22:10
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 426bf91 to a0c9b65 Compare January 26, 2024 18:03
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from cc4747c to b3c1bbd Compare March 15, 2024 22:22
@renovate renovate bot force-pushed the renovate/devdependencies branch from b3c1bbd to da5eab1 Compare March 25, 2024 19:00
@renovate renovate bot force-pushed the renovate/devdependencies branch from da5eab1 to dec942a Compare April 25, 2024 16:19
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.

None yet

0 participants