Skip to content
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

chore(deps): update build #9260

Merged
merged 1 commit into from
Oct 20, 2023
Merged

chore(deps): update build #9260

merged 1 commit into from
Oct 20, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rollup/plugin-alias (source) ^5.0.0 -> ^5.0.1 age adoption passing confidence
@rollup/plugin-commonjs (source) ^25.0.4 -> ^25.0.7 age adoption passing confidence
@rollup/plugin-json (source) ^6.0.0 -> ^6.0.1 age adoption passing confidence
@rollup/plugin-node-resolve (source) ^15.2.1 -> ^15.2.3 age adoption passing confidence
@rollup/plugin-replace (source) ^5.0.2 -> ^5.0.4 age adoption passing confidence
@rollup/plugin-terser (source) ^0.4.3 -> ^0.4.4 age adoption passing confidence
@vitejs/plugin-vue (source) ^4.3.4 -> ^4.4.0 age adoption passing confidence
esbuild ^0.19.3 -> ^0.19.5 age adoption passing confidence
rollup (source) ^3.29.2 -> ^3.29.4 age adoption passing confidence
rollup-plugin-dts ^6.0.2 -> ^6.1.0 age adoption passing confidence
rollup-plugin-esbuild ^6.0.0 -> ^6.1.0 age adoption passing confidence
terser (source) ^5.19.4 -> ^5.22.0 age adoption passing confidence
vite (source) ^4.4.9 -> ^4.5.0 age adoption passing confidence

Release Notes

rollup/plugins (@​rollup/plugin-alias)

v5.0.1

Compare Source

2023-10-05

Bugfixes
  • fix: ensure rollup 4 compatibility #​1595
rollup/plugins (@​rollup/plugin-commonjs)

v25.0.7

Compare Source

2023-10-15

Bugfixes
  • fix: bump magic-string version #​1596

v25.0.6

Compare Source

2023-10-15

Bugfixes
  • fix: Keep the shebang at the top of the file content #​1610

v25.0.5

Compare Source

2023-10-05

Bugfixes
  • fix: ensure rollup 4 compatibility #​1595
rollup/plugins (@​rollup/plugin-json)

v6.0.1

Compare Source

2023-10-05

Bugfixes
  • fix: ensure rollup 4 compatibility #​1595
rollup/plugins (@​rollup/plugin-node-resolve)

v15.2.3

Compare Source

2023-10-08

Bugfixes
  • fix: modulePaths default is not set #​1534

v15.2.2

Compare Source

2023-10-05

Bugfixes
  • fix: ensure rollup 4 compatibility #​1595
rollup/plugins (@​rollup/plugin-replace)

v5.0.4

Compare Source

2023-10-15

Bugfixes
  • fix: bump magic-string version #​1596

v5.0.3

Compare Source

2023-10-05

Bugfixes
  • fix: ensure rollup 4 compatibility #​1595
rollup/plugins (@​rollup/plugin-terser)

v0.4.4

Compare Source

2023-10-05

Bugfixes
  • fix: ensure rollup 4 compatibility #​1595
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v4.4.0

evanw/esbuild (esbuild)

v0.19.5

Compare Source

  • Fix a regression in 0.19.0 regarding paths in tsconfig.json (#​3354)

    The fix in esbuild version 0.19.0 to process tsconfig.json aliases before the --packages=external setting unintentionally broke an edge case in esbuild's handling of certain tsconfig.json aliases where there are multiple files with the same name in different directories. This release adjusts esbuild's behavior for this edge case so that it passes while still processing aliases before --packages=external. Please read the linked issue for more details.

  • Fix a CSS font property minification bug (#​3452)

    This release fixes a bug where esbuild's CSS minifier didn't insert a space between the font size and the font family in the font CSS shorthand property in the edge case where the original source code didn't already have a space and the leading string token was shortened to an identifier:

    /* Original code */
    .foo { font: 16px"Menlo"; }
    
    /* Old output (with --minify) */
    .foo{font:16pxMenlo}
    
    /* New output (with --minify) */
    .foo{font:16px Menlo}
  • Fix bundling CSS with asset names containing spaces (#​3410)

    Assets referenced via CSS url() tokens may cause esbuild to generate invalid output when bundling if the file name contains spaces (e.g. url(image 2.png)). With this release, esbuild will now quote all bundled asset references in url() tokens to avoid this problem. This only affects assets loaded using the file and copy loaders.

  • Fix invalid CSS url() tokens in @import rules (#​3426)

    In the future, CSS url() tokens may contain additional stuff after the URL. This is irrelevant today as no CSS specification does this. But esbuild previously had a bug where using these tokens in an @import rule resulted in malformed output. This bug has been fixed.

  • Fix browser + false + type: module in package.json (#​3367)

    The browser field in package.json allows you to map a file to false to have it be treated as an empty file when bundling for the browser. However, if package.json contains "type": "module" then all .js files will be considered ESM, not CommonJS. Importing a named import from an empty CommonJS file gives you undefined, but importing a named export from an empty ESM file is a build error. This release changes esbuild's interpretation of these files mapped to false in this situation from ESM to CommonJS to avoid generating build errors for named imports.

  • Fix a bug in top-level await error reporting (#​3400)

    Using require() on a file that contains top-level await is not allowed because require() must return synchronously and top-level await makes that impossible. You will get a build error if you try to bundle code that does this with esbuild. This release fixes a bug in esbuild's error reporting code for complex cases of this situation involving multiple levels of imports to get to the module containing the top-level await.

  • Update to Unicode 15.1.0

    The character tables that determine which characters form valid JavaScript identifiers have been updated from Unicode version 15.0.0 to the newly-released Unicode version 15.1.0. I'm not putting an example in the release notes because all of the new characters will likely just show up as little squares since fonts haven't been updated yet. But you can read https://www.unicode.org/versions/Unicode15.1.0/#Summary for more information about the changes.

    This upgrade was contributed by @​JLHwung.

v0.19.4

Compare Source

  • Fix printing of JavaScript decorators in tricky cases (#​3396)

    This release fixes some bugs where esbuild's pretty-printing of JavaScript decorators could incorrectly produced code with a syntax error. The problem happened because esbuild sometimes substitutes identifiers for other expressions in the pretty-printer itself, but the decision about whether to wrap the expression or not didn't account for this. Here are some examples:

    // Original code
    import { constant } from './constants.js'
    import { imported } from 'external'
    import { undef } from './empty.js'
    class Foo {
      @​constant()
      @​imported()
      @​undef()
      foo
    }
    
    // Old output (with --bundle --format=cjs --packages=external --minify-syntax)
    var import_external = require("external");
    var Foo = class {
      @​123()
      @​(0, import_external.imported)()
      @​(void 0)()
      foo;
    };
    
    // New output (with --bundle --format=cjs --packages=external --minify-syntax)
    var import_external = require("external");
    var Foo = class {
      @​(123())
      @​((0, import_external.imported)())
      @​((void 0)())
      foo;
    };
  • Allow pre-release versions to be passed to target (#​3388)

    People want to be able to pass version numbers for unreleased versions of node (which have extra stuff after the version numbers) to esbuild's target setting and have esbuild do something reasonable with them. These version strings are of course not present in esbuild's internal feature compatibility table because an unreleased version has not been released yet (by definition). With this release, esbuild will now attempt to accept these version strings passed to target and do something reasonable with them.

rollup/rollup (rollup)

v3.29.4

Compare Source

2023-09-28

Bug Fixes
  • Fix static analysis when an exported function uses callbacks (#​5158)
Pull Requests

v3.29.3

Compare Source

2023-09-24

Bug Fixes
  • Fix a bug where code was wrongly tree-shaken after mutating function parameters (#​5153)
Pull Requests
Swatinem/rollup-plugin-dts (rollup-plugin-dts)

v6.1.0

Compare Source

Compatibility Notice:

This release adds compatibility with Rollup version 4.

Fixes:

  • Fix fallback path generation.

Thank you:

Features, fixes and improvements in this release have been contributed by:

egoist/rollup-plugin-esbuild (rollup-plugin-esbuild)

v6.1.0

Compare Source

Features

v6.0.2

Compare Source

Bug Fixes

v6.0.1

Compare Source

Bug Fixes
terser/terser (terser)

v5.22.0

Compare Source

  • Do not unsafely shorten expressions like a?.toString() when they're conditional.
  • Avoid running drop_unused in nodes that aren't scopes. Fixes a rare crash.
  • When 'module' is enabled, assume strict mode when figuring out scopes.

v5.21.0

Compare Source

  • Do not inline functions that would be retained in the toplevel (as this would cause code duplication).
  • Fix precedence of arrow function and ternary operator when formatting output.

v5.20.0

Compare Source

  • Passing minify() zero files will now throw a clean exception (#​1450)
  • drop_console supports passing in an array of console.* method names (#​1445)
  • New DOM properties from the WebGPU API have been added for use in the property mangler (#​1436)
  • Internal code simplification (#​1437)
vitejs/vite (vite)

v4.5.0

Compare Source

Please refer to CHANGELOG.md for details.

v4.4.11

Compare Source

Please refer to CHANGELOG.md for details.

v4.4.10

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 20, 2023
@github-actions
Copy link

Size Report

Bundles

File Size Gzip Brotli
runtime-dom.global.prod.js 85.9 kB 32.6 kB 29.5 kB
vue.global.prod.js 132 kB 49.3 kB 44.4 kB

Usages

Name Size Gzip Brotli
createApp 47.9 kB 18.8 kB 17.2 kB
createSSRApp 50.6 kB 19.9 kB 18.2 kB
defineCustomElement 50.3 kB 19.6 kB 17.9 kB
overall 61.2 kB 23.7 kB 21.6 kB

@renovate renovate bot changed the title chore(deps): update dependency terser to ^5.20.0 chore(deps): update build Sep 21, 2023
@renovate renovate bot force-pushed the renovate/build branch 5 times, most recently from 1cd4b32 to 11f6665 Compare September 28, 2023 06:14
@netlify
Copy link

netlify bot commented Oct 2, 2023

Deploy Preview for vue-sfc-playground failed.

Name Link
🔨 Latest commit 4badfa9
🔍 Latest deploy log https://app.netlify.com/sites/vue-sfc-playground/deploys/652fc6ce4bab8700085addfc

@vercel
Copy link

vercel bot commented Oct 3, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Ignored Deployment
Name Status Preview Updated (UTC)
sfc-playground ⬜️ Ignored (Inspect) Visit Preview Oct 3, 2023 5:13pm

@renovate renovate bot force-pushed the renovate/build branch 8 times, most recently from f848af6 to 94dff2c Compare October 8, 2023 22:24
@renovate renovate bot force-pushed the renovate/build branch 4 times, most recently from 873c1b3 to 463ec45 Compare October 17, 2023 07:38
@yyx990803 yyx990803 merged commit 856dadb into main Oct 20, 2023
11 of 15 checks passed
@yyx990803 yyx990803 deleted the renovate/build branch October 20, 2023 02:27
yyx990803 pushed a commit that referenced this pull request Oct 21, 2023
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
lumozx pushed a commit to lumozx/core that referenced this pull request Oct 21, 2023
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.

None yet

1 participant