chore(deps): update parcel monorepo to v2.9.1 - autoclosed #38

Closed
renovate wants to merge 1 commits from renovate/parcel-monorepo into master
Collaborator

This PR contains the following updates:

Package Type Update Change
@parcel/validator-eslint devDependencies minor 2.8.3 -> 2.9.1
@parcel/validator-typescript devDependencies minor 2.8.3 -> 2.9.1
parcel devDependencies minor 2.8.3 -> 2.9.1

Release Notes

parcel-bundler/parcel

v2.9.1

Compare Source

Fixed
  • Resolver
    • Ignore invalid package.json "type" field values – Details
    • Ignore duplicate slashes at the start of relative path specifiers – Details

v2.9.0

Compare Source

Added
  • Core

    • Add support for ESM plugins and configs – Details
    • Add support for local parcel plugins – Details
    • Incremental Symbol Propagation for improved performance and improved export errors in development – Details
    • Add support for plugin tracing, which shows where time is being spent during a Parcel build – Details
    • Support .proxyrc.cjs config files – Details
    • Add support for loadConfig function to resolver plugins – Details
  • Resolver

    • New resolver implementation in Rust supporting package.json "exports" and "imports", and tsconfig.json "baseUrl", "paths", and "moduleSuffixes" – Details
  • JavaScript

    • Switch to SWC minifier instead of Terser by default – Details
    • Split large runtime manifest into separate bundles to reduce cache invalidations – Details
    • Respect addExternalDependency in Babel plugins – Details
  • Bundler

    • Use BitSet for bundler intersections for improved performance – Details
  • Web Extensions

    • Add support for chrome_style field – Details
Fixed
  • Core

    • Improve error message when bundles do not have unique file names – Details
    • Bump napi-rs to latest – Details, Details
    • Fix pnpm autoinstall – Details
    • Fix "does not exports" error for multiple assets returned by transformers – Details
    • Remove v8-compile-cache – Details
    • Update fast-glob – Details
    • Update lmdb – Details
    • Fixup DiagnosticCodeHighlight and SourceLocation columns – Details
    • Bump fastest-levenshtein and xmldom dependencies – Details
  • JavaScript

    • Sort global deps before injecting imports to reduce cache invalidations – Details
    • Only add export setter for non-ESM exports – Details
    • Bump SWC – Details, Details, Details, Details,
      Details
    • Deduplicate imports in hoist transformer – Details
    • Allow buffer polyfill v5 or v6 – Details
    • Fix packaging of synchronous reused bundles – Details
    • Support eslint ^7.0.0 in @parcel/validator-eslintDetails
    • Improve inlineEnvironment performance – Details
    • Hoist exports to allow circular dependencies – Details
  • TypeScript

    • Throw diagnostics as error on empty emit - Details
  • CSS

    • Sort CSS module exports to reduce cache invalidations – Details
  • Bundler

    • Fix missing edge error when using for multiple targets – Details
    • Fix non-deterministic builds between project directories – Details
    • Fix css-module related build error in bundling – Details
    • Fix multiple entries pointing to wrong bundle in dist – Details
  • Dev server

    • Don't error during HMR on <link> elements without hrefs – Details
    • Improve server index file matching – Details
    • Don't send HMR updates before packaging in watch mode – Details
  • Elm

    • Fix error when formatting build errors – 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/validator-eslint](https://github.com/parcel-bundler/parcel) | devDependencies | minor | [`2.8.3` -> `2.9.1`](https://renovatebot.com/diffs/npm/@parcel%2fvalidator-eslint/2.8.3/2.9.1) | | [@parcel/validator-typescript](https://github.com/parcel-bundler/parcel) | devDependencies | minor | [`2.8.3` -> `2.9.1`](https://renovatebot.com/diffs/npm/@parcel%2fvalidator-typescript/2.8.3/2.9.1) | | [parcel](https://github.com/parcel-bundler/parcel) | devDependencies | minor | [`2.8.3` -> `2.9.1`](https://renovatebot.com/diffs/npm/parcel/2.8.3/2.9.1) | --- ### Release Notes <details> <summary>parcel-bundler/parcel</summary> ### [`v2.9.1`](https://github.com/parcel-bundler/parcel/blob/HEAD/CHANGELOG.md#&#8203;291---2023-05-07) [Compare Source](https://github.com/parcel-bundler/parcel/compare/v2.9.0...v2.9.1) ##### Fixed - Resolver - Ignore invalid package.json "type" field values – [Details](https://github.com/parcel-bundler/parcel/pull/9049) - Ignore duplicate slashes at the start of relative path specifiers – [Details](https://github.com/parcel-bundler/parcel/pull/9048) ### [`v2.9.0`](https://github.com/parcel-bundler/parcel/blob/HEAD/CHANGELOG.md#&#8203;290---2023-05-26) [Compare Source](https://github.com/parcel-bundler/parcel/compare/v2.8.3...v2.9.0) ##### Added - Core - Add support for ESM plugins and configs – [Details](https://github.com/parcel-bundler/parcel/pull/8913) - Add support for local parcel plugins – [Details](https://github.com/parcel-bundler/parcel/pull/8925) - Incremental Symbol Propagation for improved performance and improved export errors in development – [Details](https://github.com/parcel-bundler/parcel/pull/8723) - Add support for plugin tracing, which shows where time is being spent during a Parcel build – [Details](https://github.com/parcel-bundler/parcel/pull/8695) - Support `.proxyrc.cjs` config files – [Details](https://github.com/parcel-bundler/parcel/pull/8833) - Add support for `loadConfig` function to resolver plugins – [Details](https://github.com/parcel-bundler/parcel/pull/8847) - Resolver - New resolver implementation in Rust supporting package.json "exports" and "imports", and tsconfig.json "baseUrl", "paths", and "moduleSuffixes" – [Details](https://github.com/parcel-bundler/parcel/pull/8807) - JavaScript - Switch to SWC minifier instead of Terser by default – [Details](https://github.com/parcel-bundler/parcel/pull/8860) - Split large runtime manifest into separate bundles to reduce cache invalidations – [Details](https://github.com/parcel-bundler/parcel/pull/8837) - Respect `addExternalDependency` in Babel plugins – [Details](https://github.com/parcel-bundler/parcel/pull/7820) - Bundler - Use BitSet for bundler intersections for improved performance – [Details](https://github.com/parcel-bundler/parcel/pull/8862) - Web Extensions - Add support for `chrome_style` field – [Details](https://github.com/parcel-bundler/parcel/pull/8867) ##### Fixed - Core - Improve error message when bundles do not have unique file names – [Details](https://github.com/parcel-bundler/parcel/pull/8784) - Bump napi-rs to latest – [Details](https://github.com/parcel-bundler/parcel/pull/8838), [Details](https://github.com/parcel-bundler/parcel/pull/8918) - Fix pnpm autoinstall – [Details](https://github.com/parcel-bundler/parcel/pull/8788) - Fix "does not exports" error for multiple assets returned by transformers – [Details](https://github.com/parcel-bundler/parcel/pull/8947) - Remove v8-compile-cache – [Details](https://github.com/parcel-bundler/parcel/pull/8990) - Update fast-glob – [Details](https://github.com/parcel-bundler/parcel/pull/8996) - Update lmdb – [Details](https://github.com/parcel-bundler/parcel/pull/8999) - Fixup DiagnosticCodeHighlight and SourceLocation columns – [Details](https://github.com/parcel-bundler/parcel/pull/8965) - Bump `fastest-levenshtein` and `xmldom` dependencies – [Details](https://github.com/parcel-bundler/parcel/pull/9017) - JavaScript - Sort global deps before injecting imports to reduce cache invalidations – [Details](https://github.com/parcel-bundler/parcel/pull/8818) - Only add export setter for non-ESM exports – [Details](https://github.com/parcel-bundler/parcel/pull/8910) - Bump SWC – [Details](https://github.com/parcel-bundler/parcel/pull/8881), [Details](https://github.com/parcel-bundler/parcel/pull/8933), [Details](https://github.com/parcel-bundler/parcel/pull/8983), [Details](https://github.com/parcel-bundler/parcel/pull/9010), [Details](https://github.com/parcel-bundler/parcel/pull/9034) - Deduplicate imports in hoist transformer – [Details](https://github.com/parcel-bundler/parcel/pull/8954) - Allow buffer polyfill v5 or v6 – [Details](https://github.com/parcel-bundler/parcel/pull/8959) - Fix packaging of synchronous reused bundles – [Details](https://github.com/parcel-bundler/parcel/pull/8934) - Support eslint ^7.0.0 in `@parcel/validator-eslint` – [Details](https://github.com/parcel-bundler/parcel/pull/8997) - Improve `inlineEnvironment` performance – [Details](https://github.com/parcel-bundler/parcel/pull/9014) - Hoist exports to allow circular dependencies – [Details](https://github.com/parcel-bundler/parcel/pull/9024) - TypeScript - Throw diagnostics as error on empty emit - [Details](https://github.com/parcel-bundler/parcel/pull/8914) - CSS - Sort CSS module exports to reduce cache invalidations – [Details](https://github.com/parcel-bundler/parcel/pull/8817) - Bundler - Fix missing edge error when using for multiple targets – [Details](https://github.com/parcel-bundler/parcel/pull/8854) - Fix non-deterministic builds between project directories – [Details](https://github.com/parcel-bundler/parcel/pull/8869) - Fix css-module related build error in bundling – [Details](https://github.com/parcel-bundler/parcel/pull/8885) - Fix multiple entries pointing to wrong bundle in dist – [Details](https://github.com/parcel-bundler/parcel/pull/8991) - Dev server - Don't error during HMR on `<link>` elements without hrefs – [Details](https://github.com/parcel-bundler/parcel/pull/8800) - Improve server index file matching – [Details](https://github.com/parcel-bundler/parcel/pull/8957) - Don't send HMR updates before packaging in watch mode – [Details](https://github.com/parcel-bundler/parcel/pull/9026) - Elm - Fix error when formatting build errors – [Details](https://github.com/parcel-bundler/parcel/pull/8882) </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:eyJjcmVhdGVkSW5WZXIiOiIzNS45Ni4xIiwidXBkYXRlZEluVmVyIjoiMzUuOTYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
renovate added the
dependencies
label 2023-05-26 19:34:47 +00:00
renovate added 1 commit 2023-05-26 19:34:47 +00:00
chore(deps): update parcel monorepo to v2.9.0
Some checks failed
continuous-integration/drone/pr Build is failing
674ddc92f2
renovate force-pushed renovate/parcel-monorepo from 674ddc92f2 to 06ebcc4184 2023-05-28 19:35:27 +00:00 Compare
renovate changed title from chore(deps): update parcel monorepo to v2.9.0 to chore(deps): update parcel monorepo to v2.9.1 2023-05-28 19:35:30 +00:00
renovate changed title from chore(deps): update parcel monorepo to v2.9.1 to chore(deps): update parcel monorepo to v2.9.1 - autoclosed 2023-06-02 19:34:28 +00:00
renovate closed this pull request 2023-06-02 19:34:28 +00:00
All checks were successful
continuous-integration/drone/pr Build is passing

Pull request closed

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/scripts#38
No description provided.