chore(deps): update parcel monorepo to v2.10.1 #25

Open
renovate wants to merge 1 commits from renovate/parcel-monorepo into master
Contributor

This PR contains the following updates:

Package Type Update Change
@parcel/config-webextension devDependencies minor 2.9.3 -> 2.10.1
parcel devDependencies minor 2.9.3 -> 2.10.1

Release Notes

parcel-bundler/parcel (@​parcel/config-webextension)

v2.10.1

Compare Source

Fixed
  • Core

    • Use modern node versions in CI Details
    • Support multiple workspaces/clients in Parcel for VSCode Details
  • Bundler

    • Make sure to set unique key Details
    • Fix bundler tests assertions on Windows Details
  • JavaScript

    • Add logic to disable scope hoisting if the this key word is pointing to an export module Details
    • Detect TSC polyfills to avoid marking them as CJS Details
    • Remove this exports tracking for files with module syntax Details
    • Bump swc Details
Unstable
  • Bundler

    • Fix inline constants in shared bundles Details
    • Ensure manualSharedBundles have unique names Details
    • Simplify MSB code for code split bundle creation section Details

v2.10.0

Compare Source

Added
  • Core

    • Add support for include and exclude globs for --lazy mode – Details, Details
    • Merge all native Rust modules into one package – Details
    • Add async resolver and JS transformer functions using rayon – Details
    • Support "register" tools in module loader (e.g. @babel/register, esbuild-register, ts-node) – Details
    • Limit default number of JS workers to 4 to improve memory usage/performance – Details
  • Bundler

    • Optimize bundler performance – Details
    • Add disableSharedBundles config option – Details
  • Resolver

  • JavaScript

    • Add import helper to decrease ESM loader runtime footprint – Details
    • Support parallel bundle imports in libraries – Details
    • Only include globalThis polyfill for old browsers – Details
    • Updated parcelRequire.register to be minifiable – Details
  • CSS

    • Add include and exclude globs for CSS modules – Details
  • WASM

    • Add WASM packager with source map support – Details
  • XML

    • Transform xml-stylesheet processing instructions – Details
  • Web Extensions

    • Add support for Chrome Extension manifest V3 side_panel property – Details
    • Improve HMR for web extensions – Details
  • Web Manifest

    • Add support for icons in file_handlers – Details
Fixed
  • Core

    • Query glibc version only once to speed up JSTransformer on Linux – Details
    • Refresh cache before writing contents to bundle – Details
    • Fix --lazy mode bugs – Details
    • Ignore no-opt command line option – Details
    • Bump lmdb – Details
    • Don't hide error when diagnostic is malformed – Details
    • Don't autoinstall local files in package manager – Details
    • Fix bug with cache and glob entries – Details
  • JavaScript

    • Migrate to swc_core – Details
    • Move ESM loader runtime to absolute URLs – Details
    • Fix duplicate asset references – Details
    • Bump swc – Details, Details, Details
    • Fix shorthand identifier import usage – Details
    • Ensure nested member expressions are marked used in dev mode – Details
    • Set ascii_only for swc emit – Details
    • Add tests for non-identifier symbol names – Details
  • Bundler

    • Exclude inline assests from parallel request limit – Details
    • Fix unexpected undefined when creating shared bundles – Details
  • Images

    • Bump oxipng from 6.0.0 -> 8.0.0 – Details
  • Sass

    • Fix sass import edge case – Details
  • Dev Server

    • Fix index page loading in dev server when bundle type isn't html – Details
Unstable
  • Core

    • Expose unstable_transform and unstable_resolve APIs – Details
  • Bundler

    • Add unstable manual shared bundles config – Details
  • JavaScript

    • Experimental inline / deferred requires optimiser – Details
    • Add constants inlining optimization – Details
    • Add unstable async bundle runtime to the JS Packager – Details

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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@parcel/config-webextension](https://github.com/parcel-bundler/parcel) | devDependencies | minor | [`2.9.3` -> `2.10.1`](https://renovatebot.com/diffs/npm/@parcel%2fconfig-webextension/2.9.3/2.10.1) | | [parcel](https://github.com/parcel-bundler/parcel) | devDependencies | minor | [`2.9.3` -> `2.10.1`](https://renovatebot.com/diffs/npm/parcel/2.9.3/2.10.1) | --- ### Release Notes <details> <summary>parcel-bundler/parcel (@&#8203;parcel/config-webextension)</summary> ### [`v2.10.1`](https://github.com/parcel-bundler/parcel/blob/HEAD/CHANGELOG.md#2101--2023-10-23) [Compare Source](https://github.com/parcel-bundler/parcel/compare/v2.10.0...v2.10.1) ##### Fixed - Core - Use modern node versions in CI [Details](https://github.com/parcel-bundler/parcel/pull/9323) - Support multiple workspaces/clients in Parcel for VSCode [Details](https://github.com/parcel-bundler/parcel/pull/9278) - Bundler - Make sure to set unique key [Details](https://github.com/parcel-bundler/parcel/pull/9326) - Fix bundler tests assertions on Windows [Details](https://github.com/parcel-bundler/parcel/pull/9333) - JavaScript - Add logic to disable scope hoisting if the `this` key word is pointing to an export module [Details](https://github.com/parcel-bundler/parcel/pull/9291) - Detect TSC polyfills to avoid marking them as CJS [Details](https://github.com/parcel-bundler/parcel/pull/9318) - Remove `this` exports tracking for files with module syntax [Details](https://github.com/parcel-bundler/parcel/pull/9330) - Bump swc [Details](https://github.com/parcel-bundler/parcel/pull/9306) ##### Unstable - Bundler - Fix inline constants in shared bundles [Details](https://github.com/parcel-bundler/parcel/pull/9313) - Ensure manualSharedBundles have unique names [Details](https://github.com/parcel-bundler/parcel/pull/9298) - Simplify MSB code for code split bundle creation section [Details](https://github.com/parcel-bundler/parcel/pull/9312) ### [`v2.10.0`](https://github.com/parcel-bundler/parcel/blob/HEAD/CHANGELOG.md#2100--2023-10-11) [Compare Source](https://github.com/parcel-bundler/parcel/compare/v2.9.3...v2.10.0) ##### Added - Core - Add support for include and exclude globs for `--lazy` mode – [Details](https://github.com/parcel-bundler/parcel/pull/9166), [Details](https://github.com/parcel-bundler/parcel/pull/9260) - Merge all native Rust modules into one package – [Details](https://github.com/parcel-bundler/parcel/pull/9146) - Add async resolver and JS transformer functions using rayon – [Details](https://github.com/parcel-bundler/parcel/pull/9147) - Support "register" tools in module loader (e.g. `@babel/register`, `esbuild-register`, `ts-node`) – [Details](https://github.com/parcel-bundler/parcel/pull/9285) - Limit default number of JS workers to 4 to improve memory usage/performance – [Details](https://github.com/parcel-bundler/parcel/pull/9300) - Bundler - Optimize bundler performance – [Details](https://github.com/parcel-bundler/parcel/pull/9266) - Add disableSharedBundles config option – [Details](https://github.com/parcel-bundler/parcel/pull/9209) - Resolver - Support node: prefix for CJS dependencies – [Details](https://github.com/parcel-bundler/parcel/pull/9244), [Details](https://github.com/parcel-bundler/parcel/pull/9250) - JavaScript - Add import helper to decrease ESM loader runtime footprint – [Details](https://github.com/parcel-bundler/parcel/pull/9148) - Support parallel bundle imports in libraries – [Details](https://github.com/parcel-bundler/parcel/pull/9156) - Only include `globalThis` polyfill for old browsers – [Details](https://github.com/parcel-bundler/parcel/pull/9199) - Updated parcelRequire.register to be minifiable – [Details](https://github.com/parcel-bundler/parcel/pull/9216) - CSS - Add include and exclude globs for CSS modules – [Details](https://github.com/parcel-bundler/parcel/pull/9301) - WASM - Add WASM packager with source map support – [Details](https://github.com/parcel-bundler/parcel/pull/9009) - XML - Transform xml-stylesheet processing instructions – [Details](https://github.com/parcel-bundler/parcel/pull/9102) - Web Extensions - Add support for Chrome Extension manifest V3 side_panel property – [Details](https://github.com/parcel-bundler/parcel/pull/9178) - Improve HMR for web extensions – [Details](https://github.com/parcel-bundler/parcel/pull/9068) - Web Manifest - Add support for icons in file_handlers – [Details](https://github.com/parcel-bundler/parcel/pull/9152) ##### Fixed - Core - Query glibc version only once to speed up JSTransformer on Linux – [Details](https://github.com/parcel-bundler/parcel/pull/9117) - Refresh cache before writing contents to bundle – [Details](https://github.com/parcel-bundler/parcel/pull/9123) - Fix `--lazy` mode bugs – [Details](https://github.com/parcel-bundler/parcel/pull/9093) - Ignore no-opt command line option – [Details](https://github.com/parcel-bundler/parcel/pull/9239) - Bump lmdb – [Details](https://github.com/parcel-bundler/parcel/pull/9253) - Don't hide error when diagnostic is malformed – [Details](https://github.com/parcel-bundler/parcel/pull/9283) - Don't autoinstall local files in package manager – [Details](https://github.com/parcel-bundler/parcel/pull/9242) - Fix bug with cache and glob entries – [Details](https://github.com/parcel-bundler/parcel/pull/9264) - JavaScript - Migrate to swc_core – [Details](https://github.com/parcel-bundler/parcel/pull/9131) - Move ESM loader runtime to absolute URLs – [Details](https://github.com/parcel-bundler/parcel/pull/9172) - Fix duplicate asset references – [Details](https://github.com/parcel-bundler/parcel/pull/9109) - Bump swc – [Details](https://github.com/parcel-bundler/parcel/pull/9200), [Details](https://github.com/parcel-bundler/parcel/pull/9234), [Details](https://github.com/parcel-bundler/parcel/pull/9271) - Fix shorthand identifier import usage – [Details](https://github.com/parcel-bundler/parcel/pull/9222) - Ensure nested member expressions are marked used in dev mode – [Details](https://github.com/parcel-bundler/parcel/pull/9258) - Set ascii_only for swc emit – [Details](https://github.com/parcel-bundler/parcel/pull/9243) - Add tests for non-identifier symbol names – [Details](https://github.com/parcel-bundler/parcel/pull/8388) - Bundler - Exclude inline assests from parallel request limit – [Details](https://github.com/parcel-bundler/parcel/pull/9194) - Fix unexpected undefined when creating shared bundles – [Details](https://github.com/parcel-bundler/parcel/pull/9195) - Images - Bump oxipng from 6.0.0 -> 8.0.0 – [Details](https://github.com/parcel-bundler/parcel/pull/9135) - Sass - Fix sass import edge case – [Details](https://github.com/parcel-bundler/parcel/pull/9256) - Dev Server - Fix index page loading in dev server when bundle type isn't html – [Details](https://github.com/parcel-bundler/parcel/pull/9282) ##### Unstable - Core - Expose unstable_transform and unstable_resolve APIs – [Details](https://github.com/parcel-bundler/parcel/pull/9193) - Bundler - Add unstable manual shared bundles config – [Details](https://github.com/parcel-bundler/parcel/pull/9251) - JavaScript - Experimental inline / deferred requires optimiser – [Details](https://github.com/parcel-bundler/parcel/pull/9221) - Add constants inlining optimization – [Details](https://github.com/parcel-bundler/parcel/pull/9241) - Add unstable async bundle runtime to the JS Packager – [Details](https://github.com/parcel-bundler/parcel/pull/9227) </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDIuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
renovate added the
dependencies
label 2023-10-11 19:36:32 +00:00
renovate added 1 commit 2023-10-11 19:36:32 +00:00
renovate changed title from chore(deps): update parcel monorepo to v2.10.0 to chore(deps): update parcel monorepo to v2.10.1 2023-10-24 19:36:46 +00:00
renovate force-pushed renovate/parcel-monorepo from 76174f9d75 to 2d41618347 2023-10-24 19:36:47 +00:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
You can also view command line instructions.

Step 1:

From your project repository, check out a new branch and test the changes.
git checkout -b renovate/parcel-monorepo master
git pull origin renovate/parcel-monorepo

Step 2:

Merge the changes and update on Gitea.
git checkout master
git merge --no-ff renovate/parcel-monorepo
git push origin master
Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: twhelp/sessions-ext#25
No description provided.