Skip to content

chore(deps): update all non-major dependencies #927

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: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 17, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@fluent/bundle (source) ~0.18.0 -> ~0.19.1 age adoption passing confidence devDependencies minor
@ls-lint/ls-lint ^2.2.3 -> ^2.3.0 age adoption passing confidence devDependencies minor
@types/node (source) ^22.13.10 -> ^22.15.15 age adoption passing confidence devDependencies minor
@vitest/coverage-istanbul (source) ^3.0.8 -> ^3.1.3 age adoption passing confidence devDependencies minor
actions/setup-node v4.2.0 -> v4.4.0 age adoption passing confidence action minor
happy-dom ^17.4.4 -> ^17.4.6 age adoption passing confidence devDependencies patch
lint-staged ^15.5.0 -> ^15.5.2 age adoption passing confidence devDependencies patch
pnpm (source) 10.6.3+sha512.bb45e34d50a9a76e858a95837301bfb6bd6d35aea2c5d52094fa497a467c43f5c440103ce2511e9e0a2f89c3d6071baac3358fc68ac6fb75e2ceb3d2736065e6 -> 10.10.0 age adoption passing confidence packageManager minor
release-it ^19.0.1 -> ^19.0.2 age adoption passing confidence devDependencies patch
typescript (source) ^5.8.2 -> ^5.8.3 age adoption passing confidence devDependencies patch
vite (source) ^6.2.2 -> ^6.3.5 age adoption passing confidence devDependencies minor
vitest (source) ^3.0.8 -> ^3.1.3 age adoption passing confidence devDependencies minor

Release Notes

projectfluent/fluent.js (@​fluent/bundle)

v0.19.1: 2025-04-02

Compare Source

@​fluent/bundle 0.19.1

  • Fix FluentDateTime and FluentNumber primitive conversions (#​641)

v0.19.0: 2025-03-25

Compare Source

@​fluent/bundle 0.19.0

  • Add Temporal support (#​636)
  • Require Node.js 18 or later
loeffel-io/ls-lint (@​ls-lint/ls-lint)

v2.3.0

Compare Source

Please see the v2.3.0 announcement for more informations: https://ls-lint.org/blog/announcements/v2.3.0.html

What's Changed

New Contributors

Full Changelog: loeffel-io/ls-lint@v2.2.3...v2.3.0

vitest-dev/vitest (@​vitest/coverage-istanbul)

v3.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.1.2

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v3.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.1.0

Compare Source

🚀 Features
🐞 Bug Fixes
🏎 Performance
View changes on GitHub

v3.0.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
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

capricorn86/happy-dom (happy-dom)

v17.4.6

Compare Source

👷‍♂️ Patch fixes

v17.4.5

Compare Source

👷‍♂️ Patch fixes
lint-staged/lint-staged (lint-staged)

v15.5.2

Compare Source

Patch Changes

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!
    
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

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

pkg-pr-new bot commented Mar 17, 2025

Open in StackBlitz

npm i https://pkg.pr.new/fluent-vue/fluent-vue@927

commit: 3995394

Copy link

Export Size

Unchanged

fluent-vue

Name Size Diff
createFluentVue 4.1 KB -
useFluent 958 B -

Copy link

codecov bot commented Mar 17, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.54%. Comparing base (81742c6) to head (3995394).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #927   +/-   ##
=======================================
  Coverage   99.54%   99.54%           
=======================================
  Files          12       12           
  Lines         218      218           
  Branches       45       45           
=======================================
  Hits          217      217           
  Partials        1        1           
Flag Coverage Δ
vue-2 88.53% <ø> (ø)
vue-3 92.20% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 700fb10 to b0c4aaf Compare March 17, 2025 18:32
@renovate renovate bot changed the title chore(deps): update actions/setup-node action to v4.3.0 chore(deps): update all non-major dependencies Mar 17, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 64ec213 to 489188a Compare March 26, 2025 16:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 5e93351 to f964759 Compare April 2, 2025 22:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 36ee071 to b53b1a4 Compare April 10, 2025 08:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b53b1a4 to da7fec3 Compare April 11, 2025 16:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from b75e517 to a99d4bb Compare April 14, 2025 12:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from afbc04e to c385fe4 Compare April 28, 2025 02:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from aa5995b to d424ab4 Compare May 5, 2025 11:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 3da4626 to dbae468 Compare May 6, 2025 22:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dbae468 to 3995394 Compare May 7, 2025 16:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

0 participants