Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@lerna-lite/cli (source) 4.3.0 -> 4.6.1 age confidence
@lerna-lite/publish (source) 4.3.0 -> 4.6.1 age confidence
@lerna-lite/run (source) 4.3.0 -> 4.6.1 age confidence
@lerna-lite/version (source) 4.3.0 -> 4.6.1 age confidence
@tailwindcss/cli (source) 4.1.10 -> 4.1.11 age confidence
@tailwindcss/vite (source) 4.1.10 -> 4.1.11 age confidence
pnpm (source) 10.12.1 -> 10.13.1 age confidence
postcss (source) 8.5.5 -> 8.5.6 age confidence
prettier (source) 3.5.3 -> 3.6.2 age confidence
stylelint (source) 16.20.0 -> 16.21.1 age confidence
stylelint-config-recess-order 6.0.0 -> 7.1.0 age confidence
tailwindcss (source) 4.1.10 -> 4.1.11 age confidence
vite (source) 6.3.5 -> 7.0.4 age confidence
vite (source) ^6.2.0 -> ^7.0.0 age confidence
vue (source) 3.5.16 -> 3.5.17 age confidence

Release Notes

lerna-lite/lerna-lite (@​lerna-lite/cli)

v4.6.1

Compare Source

Bug Fixes

v4.6.0

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v4.5.1

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v4.5.0

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v4.4.1

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v4.4.0

Compare Source

Features
lerna-lite/lerna-lite (@​lerna-lite/publish)

v4.6.1

Compare Source

Bug Fixes

v4.6.0

Compare Source

Note: Version bump only for package @​lerna-lite/publish

v4.5.1

Compare Source

Note: Version bump only for package @​lerna-lite/publish

v4.5.0

Compare Source

Note: Version bump only for package @​lerna-lite/publish

v4.4.1

Compare Source

Bug Fixes

v4.4.0

Compare Source

Features
Bug Fixes
lerna-lite/lerna-lite (@​lerna-lite/run)

v4.6.1

Compare Source

Note: Version bump only for package @​lerna-lite/run

v4.6.0

Compare Source

Note: Version bump only for package @​lerna-lite/run

v4.5.1

Compare Source

Note: Version bump only for package @​lerna-lite/run

v4.5.0

Compare Source

Note: Version bump only for package @​lerna-lite/run

v4.4.1

Compare Source

Bug Fixes

v4.4.0

Compare Source

Note: Version bump only for package @​lerna-lite/run

lerna-lite/lerna-lite (@​lerna-lite/version)

v4.6.1

Compare Source

Bug Fixes

v4.6.0

Compare Source

Note: Version bump only for package @​lerna-lite/version

v4.5.1

Compare Source

Bug Fixes

v4.5.0

Compare Source

Features
Bug Fixes

v4.4.1

Compare Source

Bug Fixes

v4.4.0

Compare Source

Features
tailwindlabs/tailwindcss (@​tailwindcss/cli)

v4.1.11

Compare Source

Fixed
  • Add heuristic to skip candidate migrations inside emit(…) (#​18330)
  • Extract candidates with variants in Clojure/ClojureScript keywords (#​18338)
  • Document --watch=always in the CLI's usage (#​18337)
  • Add support for Vite 7 to @tailwindcss/vite (#​18384)
pnpm/pnpm (pnpm)

v10.13.1

Compare Source

Patch Changes
  • Run user defined pnpmfiles after pnpmfiles of plugins.

v10.13.0

Compare Source

Minor Changes
  • Added the possibility to load multiple pnpmfiles. The pnpmfile setting can now accept a list of pnpmfile locations #​9702.

  • pnpm will now automatically load the pnpmfile.cjs file from any config dependency named @pnpm/plugin-* or pnpm-plugin-* #​9729.

    The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the pnpmfile.cjs files in the config dependencies can be explicitly listed using the pnpmfile setting in pnpm-workspace.yaml.

Patch Changes
  • When patching dependencies installed via pkg.pr.new, treat them as Git tarball URLs #​9694.
  • Prevent conflicts between local projects' config and the global config in dangerouslyAllowAllBuilds, onlyBuiltDependencies, onlyBuiltDependenciesFile, and neverBuiltDependencies #​9628.
  • Sort keys in pnpm-workspace.yaml with deep #​9701.
  • The pnpm rebuild command should not add pkgs included in ignoredBuiltDependencies to ignoredBuilds in node_modules/.modules.yaml #​9338.
  • Replaced shell-quote with shlex for quoting command arguments #​9381.

v10.12.4

Compare Source

Patch Changes

v10.12.3

Compare Source

Patch Changes
  • Restore hoisting of optional peer dependencies when installing with an outdated lockfile.
    Regression introduced in v10.12.2 by #​9648; resolves #​9685.

v10.12.2

Compare Source

Patch Changes
  • Fixed hoisting with enableGlobalVirtualStore set to true #​9648.
  • Fix the --help and -h flags not working as expected for the pnpm create command.
  • The dependency package path output by the pnpm licenses list --json command is incorrect.
  • Fix a bug in which pnpm deploy fails due to overridden dependencies having peer dependencies causing ERR_PNPM_OUTDATED_LOCKFILE #​9595.
postcss/postcss (postcss)

v8.5.6

Compare Source

  • Fixed ContainerWithChildren type discriminating (by @​Goodwine).
prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

stylelint/stylelint (stylelint)

v16.21.1

Compare Source

It fixes 3 bugs.

v16.21.0

Compare Source

It rounds out the message secondary option and marks it as stable, adds 1 new option to a rule, and fixes 4 bugs.

stormwarning/stylelint-config-recess-order (stylelint-config-recess-order)

v7.1.0

Compare Source

Minor Changes

v7.0.0

Compare Source

Major Changes
  • Support stylelint-order v7 (Fixes #​355, #​395) (#​403)

    Minimum supported version of stylelint is now 16.18.0, which is in line
    with stylelint-order.

    stylelint-order is now a peerDependency and no longer included with this
    package.
    It should be installed separately.

v6.1.0

Compare Source

Minor Changes
vitejs/vite (vite)

v7.0.4

Compare Source

Bug Fixes
  • allow resolving bare specifiers to relative paths for entries (#​20379) (324669c)
Build System

v7.0.3

Compare Source

Bug Fixes
Miscellaneous Chores
Code Refactoring
  • minor changes to reduce diff between normal Vite and rolldown-vite (#​20354) (2e8050e)

v7.0.2

Compare Source

Bug Fixes

v7.0.1

Compare Source

Bug Fixes
Miscellaneous Chores

v7.0.0

Compare Source

vuejs/core (vue)

v3.5.17

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), 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 renovate bot added the dependencies Pull requests that update a dependency file label Jul 1, 2025
Copy link

cloudflare-workers-and-pages bot commented Jul 1, 2025

Deploying jumpu-ui with  Cloudflare Pages  Cloudflare Pages

Latest commit: 3f14bce
Status: ✅  Deploy successful!
Preview URL: https://6feefcd4.jumpu-ui.pages.dev
Branch Preview URL: https://renovate-all.jumpu-ui.pages.dev

View logs

Copy link
Contributor Author

renovate bot commented Jul 15, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants