hackernews icon indicating copy to clipboard operation
hackernews copied to clipboard

chore(deps): update all non-major dependencies

Open renovate[bot] opened this issue 3 years ago • 2 comments
trafficstars

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint (source) ^8.22.0 -> ^8.23.1 age adoption passing confidence
nuxt ^3.0.0-rc.8 -> ^3.0.0-rc.11 age adoption passing confidence
pnpm (source) 7.9.3 -> 7.12.2 age adoption passing confidence
typescript (source) ^4.7.4 -> ^4.8.3 age adoption passing confidence

Release Notes

eslint/eslint

v8.23.1

Compare Source

Bug Fixes

  • b719893 fix: Upgrade eslintrc to stop redefining plugins (#​16297) (Brandon Mills)
  • 734b54e fix: improve autofix for the prefer-const rule (#​16292) (Nitin Kumar)
  • 6a923ff fix: Ensure that glob patterns are normalized (#​16287) (Nicholas C. Zakas)
  • c6900f8 fix: Ensure globbing doesn't include subdirectories (#​16272) (Nicholas C. Zakas)

Documentation

  • 16cba3f docs: fix mobile double tap issue (#​16293) (Sam Chen)
  • e098b5f docs: keyboard control to search results (#​16222) (Shanmughapriyan S)
  • 1b5b2a7 docs: add Consolas font and prioritize resource loading (#​16225) (Amaresh S M)
  • 1ae8236 docs: copy & use main package version in docs on release (#​16252) (Jugal Thakkar)
  • 279f0af docs: Improve id-denylist documentation (#​16223) (Mert Ciflikli)

Chores

v8.23.0

Compare Source

Features

  • 3e5839e feat: Enable eslint.config.js lookup from CLI (#​16235) (Nicholas C. Zakas)
  • 30b1a2d feat: add allowEmptyCase option to no-fallthrough rule (#​15887) (Amaresh S M)
  • 43f03aa feat: no-warning-comments support comments with decoration (#​16120) (Lachlan Hunt)

Documentation

Chores

nuxt/nuxt.js

v3.0.0-rc.11

Compare Source

v3.0.0-rc.10

Compare Source

v3.0.0-rc.9

Compare Source

pnpm/pnpm

v7.12.2

Compare Source

Patch Changes

  • Don't crash when auto-install-peers is true and the project has many complex circular dependencies #​5394.
  • pnpm link --global should work with the --dir=<path> option #​5371.

Our Gold Sponsors

Our Silver Sponsors

What's Changed

New Contributors

Full Changelog: https://github.com/pnpm/pnpm/compare/v7.12.1...v7.12.2

v7.12.1

Compare Source

Patch Changes

  • Deduplicate peer dependencies when automatically installing them #​5373.

Our Gold Sponsors

Our Silver Sponsors

What's Changed

Full Changelog: https://github.com/pnpm/pnpm/compare/v7.12.0...v7.12.1

v7.12.0

Compare Source

Minor Changes

  • A new setting supported in the pnpm section of the package.json file: allowNonAppliedPatches. When it is set to true, non-applied patches will not cause an error, just a warning will be printed. For example:

    {
      "name": "foo",
      "version": "1.0.0",
      "pnpm": {
        "patchedDependencies": {
          "[email protected]": "patches/[email protected]"
        },
        "allowNonAppliedPatches": true
      }
    }
    
  • Now it is possible to exclude packages from hoisting by prepending a ! to the pattern. This works with both the hoist-pattern and public-hoist-pattern settings. For instance:

    public-hoist-pattern[]='*types*'
    public-hoist-pattern[]='!@&#8203;types/react'
    
    hoist-pattern[]='*eslint*'
    hoist-pattern[]='!*eslint-plugin*'
    

    Ref #​5272

Patch Changes

  • When the same dependency with missing peers is used in multiple workspace projects, install the missing peers in each workspace project #​4820.
  • pnpm patch should work on files that don't have an end of line #​5320.
  • Fix pnpm patch using a custom --edit-dir.

Our Gold Sponsors

Our Silver Sponsors

What's Changed

New Contributors

Full Changelog: https://github.com/pnpm/pnpm/compare/v7.11.0...v7.12.0

v7.11.0

Compare Source

Minor Changes

  • pnpm patch: edit the patched package in a directory specified by the --edit-dir option. E.g., pnpm patch [email protected] --edit-dir=/home/xxx/src/patched-express #​5304

Patch Changes

  • Auto installing a peer dependency in a workspace that also has it as a dev dependency in another project #​5144.
  • When an error happens during installation of a subdependency, print some context information in order to be able to locate that subdependency. Print the exact chain of packages that led to the problematic dependency.

Our Gold Sponsors

Our Silver Sponsors

What's Changed

New Contributors

Full Changelog: https://github.com/pnpm/pnpm/compare/v7.10.0...v7.11.0

v7.10.0

Compare Source

Minor Changes

  • New time-based resolution strategy supported.

    When resolution-mode is set to time-based, pnpm will resolve dependencies the following way:

    1. Direct dependencies will be resolved to their lowest versions. So if there is foo@^1.1.0 in the dependencies, then 1.1.0 will be installed.
    2. Subdependencies will be resolved from versions that were published before the last direct dependency was published.

    With this resolution mode installations with hot cache are faster. It also reduces the chance of subdependency hijacking as subdependencies will be updated only if direct dependencies are updated.

    This resolution mode works only with npm's full metadata. So it is slower in some scenarios. However, if you use Verdaccio v5.15.1 or newer, you may set the registry-supports-time-field setting to true, and it will be really fast.

    Related RFC.

  • Enhance pnpm env with the remove command. To remove a Node.js version installed by pnpm, run:

    pnpm env remove --global <node.js version>
    

Patch Changes

  • pnpm store prune should remove all cached metadata.
  • Don't modify the manifest of the injected workspace project, when it has the same dependency in prod and peer dependencies.

Our Gold Sponsors

Our Silver Sponsors

What's Changed

New Contributors

Full Changelog: https://github.com/pnpm/pnpm/compare/v7.9.5...v7.10.0

v7.9.5

Compare Source

Patch Changes
  • Set NODE_PATH when prefer-symlinked-executables is enabled #​5251.
  • Fail with a meaningful error when the audit endpoint doesn't exist #​5200.
  • Symlink a local dependency to node_modules, even if the target directory doesn't exist #​5219.
Our Gold Sponsors
Our Silver Sponsors
What's Changed
New Contributors

Full Changelog: https://github.com/pnpm/pnpm/compare/v7.9.4...v7.9.5

v7.9.4

Compare Source

Patch Changes

  • Auto install peer dependencies when auto-install-peers is set to true and the lockfile is up to date #​5213.
  • pnpm env: for Node.js<16 install the x64 build on Darwin ARM as ARM build is not available #​5239.
  • pnpm env: log a message when the node.js tarball starts the download #​5241.
  • Fix pnpm install --merge-git-branch-lockfile when the lockfile is up to date #​5212.

Our Gold Sponsors

Our Silver Sponsors

What's Changed

New Contributors

Full Changelog: https://github.com/pnpm/pnpm/compare/v7.9.3...v7.9.4

Microsoft/TypeScript

v4.8.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:

v4.8.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:


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, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] avatar Aug 23 '22 12:08 renovate[bot]

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
hackernews ✅ Ready (Inspect) Visit Preview Oct 3, 2022 at 11:01AM (UTC)

vercel[bot] avatar Aug 23 '22 12:08 vercel[bot]

⚠ 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
installing v2 tool node v16.17.1
linking tool node v16.17.1
node: v16.17.1 /usr/local/bin/node
npm: 8.15.0  /usr/local/bin/npm
Installed v2 /usr/local/buildpack/tools/v2/node.sh in 6 seconds
skip cleanup, not a docker build: 034b3fdd4fa2
installing v2 tool pnpm v7.13.0

added 1 package in 3s
linking tool pnpm v7.13.0
7.13.0
Installed v2 /usr/local/buildpack/tools/v2/pnpm.sh in 4 seconds
skip cleanup, not a docker build: 034b3fdd4fa2
Progress: resolved 1, reused 0, downloaded 0, added 0
Progress: resolved 5, reused 0, downloaded 0, added 0
Progress: resolved 25, reused 0, downloaded 3, added 0
Progress: resolved 34, reused 0, downloaded 14, added 0
Progress: resolved 49, reused 0, downloaded 29, added 0
Progress: resolved 63, reused 0, downloaded 42, added 0
Progress: resolved 77, reused 0, downloaded 53, added 0
Progress: resolved 93, reused 0, downloaded 65, added 0
Progress: resolved 106, reused 0, downloaded 74, added 0
Progress: resolved 111, reused 0, downloaded 90, added 0
Progress: resolved 113, reused 0, downloaded 96, added 0
Progress: resolved 121, reused 0, downloaded 102, added 0
Progress: resolved 130, reused 0, downloaded 106, added 0
Progress: resolved 144, reused 0, downloaded 115, added 0
Progress: resolved 160, reused 0, downloaded 125, added 0
Progress: resolved 178, reused 0, downloaded 145, added 0
Progress: resolved 193, reused 0, downloaded 160, added 0
Progress: resolved 211, reused 0, downloaded 179, added 0
Progress: resolved 231, reused 0, downloaded 196, added 0
Progress: resolved 238, reused 0, downloaded 205, added 0
Progress: resolved 261, reused 0, downloaded 226, added 0
Progress: resolved 278, reused 0, downloaded 242, added 0
Progress: resolved 304, reused 0, downloaded 260, added 0
Progress: resolved 314, reused 0, downloaded 277, added 0
Progress: resolved 329, reused 0, downloaded 282, added 0
Progress: resolved 348, reused 0, downloaded 289, added 0
Progress: resolved 355, reused 0, downloaded 297, added 0
Progress: resolved 366, reused 0, downloaded 308, added 0
Progress: resolved 380, reused 0, downloaded 317, added 0
Progress: resolved 399, reused 0, downloaded 333, added 0
Progress: resolved 409, reused 0, downloaded 340, added 0
Progress: resolved 415, reused 0, downloaded 351, added 0
Progress: resolved 419, reused 0, downloaded 358, added 0
Progress: resolved 429, reused 0, downloaded 366, added 0
Progress: resolved 446, reused 0, downloaded 381, added 0
Progress: resolved 463, reused 0, downloaded 398, added 0
Progress: resolved 486, reused 0, downloaded 413, added 0
Progress: resolved 501, reused 0, downloaded 424, added 0
Progress: resolved 524, reused 0, downloaded 449, added 0
Progress: resolved 546, reused 0, downloaded 466, added 0
Progress: resolved 569, reused 0, downloaded 490, added 0
Progress: resolved 596, reused 0, downloaded 513, added 0
Progress: resolved 619, reused 0, downloaded 537, added 0
.                                        |  WARN  deprecated @jridgewell/[email protected]
Progress: resolved 640, reused 0, downloaded 554, added 0
.                                        |  WARN  deprecated [email protected]
Progress: resolved 662, reused 0, downloaded 580, added 0
Progress: resolved 691, reused 0, downloaded 612, added 0
Progress: resolved 697, reused 0, downloaded 622, added 0
Progress: resolved 699, reused 0, downloaded 648, added 0
Progress: resolved 708, reused 0, downloaded 675, added 0
Progress: resolved 719, reused 0, downloaded 689, added 0
Progress: resolved 737, reused 0, downloaded 702, added 0
Progress: resolved 768, reused 0, downloaded 734, added 0
Progress: resolved 773, reused 0, downloaded 746, added 0
Progress: resolved 773, reused 0, downloaded 748, added 0
Progress: resolved 773, reused 0, downloaded 749, added 0
Progress: resolved 773, reused 0, downloaded 750, added 0
Progress: resolved 773, reused 0, downloaded 751, added 0
undefined
 ERR_PNPM_PEER_DEP_ISSUES  Unmet peer dependencies

.
└─┬ postcss-nested 5.0.6
  └── ✕ missing peer postcss@^8.2.14
Peer dependencies that should be installed:
  postcss@^8.2.14

hint: If you want peer dependencies to be automatically installed, add "auto-install-peers=true" to an .npmrc file at the root of your project.
hint: If you don't want pnpm to fail on peer dependency issues, add "strict-peer-dependencies=false" to an .npmrc file at the root of your project.


renovate[bot] avatar Aug 26 '22 02:08 renovate[bot]