Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 7, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@stacksjs/clarity ^0.3.6 -> ^0.3.9 age adoption passing confidence
@types/node (source) ^22.14.0 -> ^22.14.1 age adoption passing confidence
bun-git-hooks ^0.1.0 -> ^0.2.12 age adoption passing confidence
eslint (source) ^9.24.0 -> ^9.25.0 age adoption passing confidence
lint-staged ^15.5.0 -> ^15.5.1 age adoption passing confidence
node-modules-inspector ^0.6.2 -> ^0.6.6 age adoption passing confidence
pnpm (source) ^10.7.1 -> ^10.8.1 age adoption passing confidence
pnpm (source) 10.7.1 -> 10.8.1 age adoption passing confidence

Release Notes

stacksjs/clarity (@​stacksjs/clarity)

v0.3.9

Compare Source

No significant changes

    View changes on GitHub

v0.3.8

Compare Source

compare changes

📖 Documentation
🏡 Chore
❤️ Contributors

v0.3.7

Compare Source

compare changes

🩹 Fixes
  • Enhance terminal timestamp (94f3f40)
🏡 Chore
❤️ Contributors

v0.3.6

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.3.5

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.3.4

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.3.3

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.3.2

Compare Source

compare changes

🩹 Fixes
❤️ Contributors

v0.3.1

Compare Source

compare changes

🏡 Chore
  • Improve logger save path (ca5d7f7)
❤️ Contributors

v0.3.0

Compare Source

compare changes

🏡 Chore
❤️ Contributors
stacksjs/bun-git-hooks (bun-git-hooks)

v0.2.12

Compare Source

No significant changes

    View changes on GitHub

v0.2.11

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.2.10

Compare Source

compare changes

v0.2.9

Compare Source

compare changes

v0.2.8

Compare Source

compare changes

v0.2.7

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.2.6

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.2.5

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.2.4

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.2.3

Compare Source

compare changes

🏡 Chore
  • Add debugging console for testing (086ee43)
❤️ Contributors

v0.2.1

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.2.0

Compare Source

compare changes

🏡 Chore
❤️ Contributors
eslint/eslint (eslint)

v9.25.0

Compare Source

v9.24.0

Compare Source

v9.23.0

Compare Source

lint-staged/lint-staged (lint-staged)

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    
antfu/node-modules-inspector (node-modules-inspector)

v0.6.6

Compare Source

   🚀 Features
  • Exclude optional packages in the filters by default  -  by @​antfu (40482)
   🐞 Bug Fixes
    View changes on GitHub

v0.6.5

Compare Source

   🚀 Features
    View changes on GitHub

v0.6.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.6.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.6.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.6.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
pnpm/pnpm (pnpm)

v10.8.1

Compare Source

Patch Changes
  • Removed bright white highlighting, which didn't look good on some light themes #​9389.
  • If there is no pnpm related configuration in package.json, onlyBuiltDependencies will be written to pnpm-workspace.yaml file #​9404.

v10.8.0

Compare Source

Minor Changes
  • Experimental. A new hook is supported for updating configuration settings. The hook can be provided via .pnpmfile.cjs. For example:

    module.exports = {
      hooks: {
        updateConfig: (config) => ({
          ...config,
          nodeLinker: "hoisted",
        }),
      },
    };
  • Now you can use the pnpm add command with the --config flag to install new configurational dependencies #​9377.

Patch Changes
  • Do not hang indefinitely, when there is a glob that starts with !/ in pnpm-workspace.yaml. This fixes a regression introduced by #​9169.
  • pnpm audit --fix should update the overrides in pnpm-workspace.yaml.
  • pnpm link should update overrides in pnpm-workspace.yaml, not in package.json #​9365.

v10.7.1: pnpm 10.7.1

Compare Source

Patch Changes

  • pnpm config set should convert the settings to their correct type before adding them to pnpm-workspace.yaml #​9355.
  • pnpm config get should read auth related settings via npm CLI #​9345.
  • Replace leading ~/ in a path in .npmrc with the home directory #​9217.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz

v10.7.0

Compare Source

Minor Changes
  • pnpm config get and list also show settings set in pnpm-workspace.yaml files #​9316.

  • It should be possible to use env variables in pnpm-workspace.yaml setting names and value.

  • Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range * is the same as name-only, except that patch application failure will not be ignored.

    For example:

    patchedDependencies:
      foo: patches/foo-1.patch
      foo@^2.0.0: patches/foo-2.patch
      [email protected]: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to [email protected], patches/foo-2.patch to all foo versions which satisfy ^2.0.0 except 2.1.0, and patches/foo-1.patch to the remaining foo versions.

    [!WARNING]
    The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example:

    # pnpm-workspace.yaml
    patchedDependencies:
      # the specialized sub range
      '[email protected]': patches/foo.2.2.0-2.8.0.patch
      # the more general patch, excluding the sub range above
      'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch

    In most cases, however, it's sufficient to just define an exact version to override the range.

  • pnpm config set --location=project saves the setting to a pnpm-workspace.yaml file if no .npmrc file is present in the directory #​9316.

  • Rename pnpm.allowNonAppliedPatches to pnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message.

  • Add pnpm.ignorePatchFailures to manage whether pnpm would ignore patch application failures.

    If ignorePatchFailures is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.

    If ignorePatchFailures is explicitly set to false, pnpm would throw an error when any type of patch fails to apply.

    If ignorePatchFailures is explicitly set to true, pnpm would print a warning when any type of patch fails to apply.

Patch Changes
  • Remove dependency paths from audit output to prevent out-of-memory errors #​9280.

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, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Contributor Author

renovate bot commented Apr 7, 2025

⚠️ 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
Progress: resolved 1, reused 0, downloaded 0, added 0
Progress: resolved 20, reused 0, downloaded 0, added 0
Progress: resolved 40, reused 0, downloaded 0, added 0
Progress: resolved 59, reused 0, downloaded 0, added 0
Progress: resolved 82, reused 0, downloaded 0, added 0
 ERR_PNPM_NO_MATCHING_VERSION  No matching version found for @stacksjs/[email protected] while fetching it from https://registry.npmjs.org/

This error happened while installing the dependencies of @stacksjs/[email protected]

The latest release of @stacksjs/desktop is "0.70.16".

If you need the full list of all 168 published versions run "$ pnpm view @stacksjs/desktop versions".

@netlify
Copy link

netlify bot commented Apr 7, 2025

Deploy Preview for stacks-everything ready!

Name Link
🔨 Latest commit c71e955
🔍 Latest deploy log https://app.netlify.com/sites/stacks-everything/deploys/6802b7a6cae6cd0008264ece
😎 Deploy Preview https://deploy-preview-11--stacks-everything.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 90e4969 to 5441220 Compare April 8, 2025 05:18
@renovate renovate bot changed the title chore(deps): update pnpm.catalog.unrelated pnpm to v10.8.0 chore(deps): update all non-major dependencies Apr 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from e88a55f to f70a684 Compare April 14, 2025 17:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f70a684 to c71e955 Compare April 18, 2025 20:35
@chrisbbreuer chrisbbreuer merged commit b080449 into main Apr 18, 2025
4 of 6 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch April 18, 2025 21:10
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.

2 participants