Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 4, 2025

This PR contains the following updates:

Package Change Age Confidence
@farmfe/cli 2.0.0-nightly-20250411100807 -> 2.0.0-nightly-20250827162746 age confidence
@farmfe/core 2.0.0-nightly-20250411141103 -> 2.0.0-nightly-20250827162746 age confidence
@types/node (source) ^24.7.0 -> ^24.7.2 age confidence
core-js (source) ^3.45.1 -> ^3.46.0 age confidence
esbuild ^0.25.10 -> ^0.25.11 age confidence
pnpm (source) 10.18.1 -> 10.18.3 age confidence
rolldown (source) 1.0.0-beta.41 -> 1.0.0-beta.43 age confidence
tsdown ^0.15.6 -> ^0.15.7 age confidence
unplugin-oxc ^0.5.2 -> ^0.5.3 age confidence
vite (source) ^7.1.9 -> ^7.1.10 age confidence
webpack ^5.102.0 -> ^5.102.1 age confidence

Release Notes

farm-fe/farm (@​farmfe/cli)

v2.0.0-nightly-20250827162746

Compare Source

zloirock/core-js (core-js)

v3.46.0

Compare Source

evanw/esbuild (esbuild)

v0.25.11

Compare Source

  • Add support for with { type: 'bytes' } imports (#​4292)

    The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing binary loader. Here's an example:

    import data from './image.png' with { type: 'bytes' }
    const view = new DataView(data.buffer, 0, 24)
    const width = view.getInt32(16)
    const height = view.getInt32(20)
    console.log('size:', width + '\xD7' + height)
  • Lower CSS media query range syntax (#​3748, #​4293)

    With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using min-/max- prefixes for older browsers. For example, the following CSS:

    @&#8203;media (640px <= width <= 960px) {
      main {
        display: flex;
      }
    }

    will be transformed like this with a target such as --target=chrome100 (or more specifically with --supported:media-range=false if desired):

    @&#8203;media (min-width: 640px) and (max-width: 960px) {
      main {
        display: flex;
      }
    }
pnpm/pnpm (pnpm)

v10.18.3

Compare Source

Patch Changes
  • Fix a bug where pnpm would infinitely recurse when using verifyDepsBeforeInstall: install and pre/post install scripts that called other pnpm scripts #​10060.
  • Fixed scoped registry keys (e.g., @scope:registry) being parsed as property paths in pnpm config get when --location=project is used #​9362.
  • Remove pnpm-specific CLI options before passing to npm publish to prevent "Unknown cli config" warnings #​9646.
  • Fixed EISDIR error when bin field points to a directory #​9441.
  • Preserve version and hasBin for variations packages #​10022.
  • Fixed pnpm config set --location=project incorrectly handling keys with slashes (auth tokens, registry settings) #​9884.
  • When both pnpm-workspace.yaml and .npmrc exist, pnpm config set --location=project now writes to pnpm-workspace.yaml (matching read priority) #​10072.
  • Prevent a table width error in pnpm outdated --long #​10040.
  • Sync bin links after injected dependencies are updated by build scripts. This ensures that binaries created during build processes are properly linked and accessible to consuming projects #​10057.

v10.18.2

Compare Source

Patch Changes
  • pnpm outdated --long should work #​10040.
  • Replace ndjson with split2. Reduce the bundle size of pnpm CLI #​10054.
  • pnpm dlx should request the full metadata of packages, when minimumReleaseAge is set #​9963.
  • pnpm version switching should work when the pnpm home directory is in a symlinked directory #​9715.
  • Fix EPIPE errors when piping output to other commands #​10027.
rolldown/rolldown (rolldown)

v1.0.0-beta.43

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
⚙️ Miscellaneous Tasks
❤️ New Contributors

v1.0.0-beta.42

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
  • rust: improve constuction of PackageJson and remove unused fields (#​6418) by @​hyf0
  • introduce BindingResult to pass errors from rust to js (#​6390) by @​hyf0
  • rust: rename eager_rebuild to rebuild_strategy with enum (#​6394) by @​hyf0
  • rust/binding: use BindingError to cover JsError and NativeError (#​6388) by @​hyf0
  • rust/binding: rename BindingError to NativeError (#​6387) by @​hyf0
📚 Documentation
⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
rolldown/tsdown (tsdown)

v0.15.7

Compare Source

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

v7.1.10

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores
webpack/webpack (webpack)

v5.102.1

Compare Source

Fixes
  • Supported extends with env for browserslist
  • Supported JSONP fragment format for web workers.
  • Fixed dynamic import support in workers using browserslist.
  • Fixed default defer import mangling.
  • Fixed default import of commonjs externals for SystemJS format.
  • Fixed context modules to the same file with different import attributes.
  • Fixed typescript types.
  • Improved import.meta warning messages to be more clear when used directly.
  • [CSS] Fixed CC_UPPER_U parsing (E -> U) in tokenizer.

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 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 label Aug 4, 2025
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

pkg-pr-new bot commented Aug 4, 2025

Open in StackBlitz

npm i https://pkg.pr.new/unplugin-vue@188

commit: da4a785

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7340f05 to 1f546ae Compare August 5, 2025 06:37
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update dependency @farmfe/core to v2.0.0-nightly-20250729025629 Aug 5, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1f546ae to 77445f6 Compare August 5, 2025 06:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8437f2f to 7d3db18 Compare August 5, 2025 10:23
@renovate renovate bot changed the title chore(deps): update dependency @farmfe/core to v2.0.0-nightly-20250729025629 chore(deps): update all non-major dependencies Aug 5, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d51daac to 594d842 Compare August 7, 2025 09:05
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Aug 7, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 594d842 to d6b2f11 Compare August 8, 2025 05:13
Copy link

socket-security bot commented Aug 8, 2025

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 5264693 to ebfd8b3 Compare August 13, 2025 03:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 659f349 to 8943c1f Compare October 6, 2025 16:05
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies to v2.0.0-nightly-20250827162746 Oct 6, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e399d02 to a0b56bd Compare October 6, 2025 18:34
@renovate renovate bot changed the title chore(deps): update all non-major dependencies to v2.0.0-nightly-20250827162746 chore(deps): update all non-major dependencies Oct 6, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 5cb18b1 to d286b0b Compare October 14, 2025 00:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5b694a5 to d6c9e95 Compare October 14, 2025 15:11
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Oct 14, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d6c9e95 to da4a785 Compare October 15, 2025 02:35
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