Skip to content

fix(renovate): Update minor (fp-ts-template) (minor) #42

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

Open
wants to merge 1 commit into
base: fp-ts-template
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 15, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
node (source) minor 22.14.0 -> 22.15.0 age adoption passing confidence
pnpm (source) packageManager minor 10.6.5 -> 10.10.0 age adoption passing confidence
vite-bundle-analyzer devDependencies minor ^0.17.3 -> ^0.20.1 age adoption passing confidence

Release Notes

nodejs/node (node)

v22.15.0

Compare Source

pnpm/pnpm (pnpm)

v10.10.0

Compare Source

Minor Changes
  • Allow loading the preResolution, importPackage, and fetchers hooks from local pnpmfile.
Patch Changes
  • Fix cd command, when shellEmulator is true #​7838.
  • Sort keys in pnpm-workspace.yaml #​9453.
  • Pass the npm_package_json environment variable to the executed scripts #​9452.
  • Fixed a mistake in the description of the --reporter=silent option.

v10.9.0

Compare Source

Minor Changes
  • Added support for installing JSR packages. You can now install JSR packages using the following syntax:

    pnpm add jsr:<pkg_name>
    

    or with a version range:

    pnpm add jsr:<pkg_name>@&#8203;<range>
    

    For example, running:

    pnpm add jsr:@&#8203;foo/bar
    

    will add the following entry to your package.json:

    {
      "dependencies": {
        "@&#8203;foo/bar": "jsr:^0.1.2"
      }
    }

    When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:

    {
      "dependencies": {
        "@&#8203;foo/bar": "npm:@&#8203;jsr/foo__bar@^0.1.2"
      }
    }

    Related issue: #​8941.

    Note: The @jsr scope defaults to https://npm.jsr.io/ if the @jsr:registry setting is not defined.

  • Added a new setting, dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this to pnpm-workspace.yaml:

    neverBuiltDependencies: []

    dangerouslyAllowAllBuilds has the same effect but also allows to be set globally via:

    pnpm config set dangerouslyAllowAllBuilds true
    

    It can also be set when running a command:

    pnpm install --dangerously-allow-all-builds
    
Patch Changes
  • Fix a false negative in verifyDepsBeforeRun when nodeLinker is hoisted and there is a workspace package without dependencies and node_modules directory #​9424.
  • Explicitly drop verifyDepsBeforeRun support for nodeLinker: pnp. Combining verifyDepsBeforeRun and nodeLinker: pnp will now print a warning.

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.
nonzzz/vite-bundle-analyzer (vite-bundle-analyzer)

v0.20.1

Compare Source

  • Remove unnecessary logic.

v0.20.0

Compare Source

  • Add rolldown adapter
// rolldown.config.mts
import { analyzer, unstableRolldownAdapter } from 'vite-bundle-analyzer'

unstableRolldownAdapter(analyzer())

v0.19.0

Compare Source

  • Static resources output.
  • The fileName option now supports passing a function to dynamically generate output filenames. This function receives the build metadata and should return a string.
  • Support Rolldown. (And Rolldown Vite)
import path from 'path'
analyzer({
  fileName: (outputDir) => path.join(outputDir, 'report.html')
})

v0.18.1

Compare Source

  • Reduce installer size.

v0.18.0

Compare Source

  • Use mri to replace commander.js

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.

Copy link

coderabbitai bot commented Mar 15, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Join our Discord community for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch from 9d73539 to a5cbf13 Compare March 15, 2025 09:24
@renovate renovate bot changed the title fix(renovate): Update dependency @antfu/eslint-config to ^4.9.0 (fp-ts-template) fix(renovate): Update dependency @antfu/eslint-config to ^4.10.0 (fp-ts-template) Mar 15, 2025
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch from a5cbf13 to 71bb54f Compare March 15, 2025 17:40
@renovate renovate bot changed the title fix(renovate): Update dependency @antfu/eslint-config to ^4.10.0 (fp-ts-template) fix(renovate): Update dependency @antfu/eslint-config to ^4.10.1 (fp-ts-template) Mar 15, 2025
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch from 71bb54f to 3fdfe60 Compare March 17, 2025 12:29
@renovate renovate bot changed the title fix(renovate): Update dependency @antfu/eslint-config to ^4.10.1 (fp-ts-template) fix(renovate): Update dependency vite-bundle-analyzer to ^0.18.0 (fp-ts-template) Mar 17, 2025
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch 2 times, most recently from 050ce49 to 6735c90 Compare March 23, 2025 02:06
@renovate renovate bot changed the title fix(renovate): Update dependency vite-bundle-analyzer to ^0.18.0 (fp-ts-template) fix(renovate): Update minor (fp-ts-template) (minor) Mar 23, 2025
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch 2 times, most recently from 2d64d0e to be297fe Compare March 24, 2025 10:44
@renovate renovate bot changed the title fix(renovate): Update minor (fp-ts-template) (minor) fix(renovate): Update dependency vite-bundle-analyzer to ^0.18.1 (fp-ts-template) Mar 24, 2025
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch from be297fe to 86f8dbb Compare March 27, 2025 23:44
@renovate renovate bot changed the title fix(renovate): Update dependency vite-bundle-analyzer to ^0.18.1 (fp-ts-template) fix(renovate): Update minor (fp-ts-template) (minor) Mar 27, 2025
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch 4 times, most recently from 7ed6c0e to 070f861 Compare April 4, 2025 19:35
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch 6 times, most recently from 0586f74 to 08e7239 Compare April 13, 2025 13:57
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch 3 times, most recently from d6433fa to f07f967 Compare April 17, 2025 19:28
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch 10 times, most recently from 54734a8 to af34b65 Compare April 24, 2025 19:30
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch 7 times, most recently from 8769bb5 to 3d1a94b Compare May 1, 2025 02:11
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch from 3d1a94b to 5db54cd Compare May 2, 2025 15:40
@renovate renovate bot force-pushed the renovate/fp-ts-template-minor branch from 5db54cd to 1890658 Compare May 3, 2025 13:58
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.

0 participants