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 dependency vite to v3.2.4 #53

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 16, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
vite (source) 3.0.4 -> 3.2.4 age adoption passing confidence

Release Notes

vitejs/vite

v3.2.4

Compare Source

Please refer to CHANGELOG.md for details.

v3.2.3

Compare Source

v3.2.2

Compare Source

v3.2.1

Compare Source

v3.2.0

Compare Source

Main Changes
Multiple Entries for Library Mode

Library mode now supports multiple entries:

  lib: {
    entry: {
        primary: 'src/index.ts',
        secondary: 'src/secondary.ts'
    },
    formats: ['es', 'cjs']
  }
  // => primary.es.js, primary.cjs.js, secondary.es.js, secondary.cjs.js

Check out the PR #​7047, and the build.lib config docs

build.modulePreload options

Vite now allows filtering and modifying module preload dependencies for each entry and async chunk. experimental.renderBuiltUrl will also get called for preload asset paths. And build.modulePreload.resolveDependencies will be called both for JS dynamic imports preload lists and also for HTML preload lists for chunks imported from entry HTML files. Refer to the PR for more context #​9938 and check out the modulePreload config docs. Note: build.modulePreloadPolyfill is now deprecated, please migrate to build.modulePreload.polyfill.

Include Duplicate Assets in the Manifest

Laravel and other backends integrations will now get entries for every asset file, even if they have been de-duplicated. See #​9928 for more information.

Customizable ErrorOverlay

You can now customize the ErrorOverlay by using css parts. Check out the PR for more details: #​10234.

Features
Bug Fixes
Previous Changelogs
3.2.0-beta.4 (2022-10-24)

See 3.2.0-beta.4 changelog

3.2.0-beta.3 (2022-10-20)

See 3.2.0-beta.3 changelog

3.2.0-beta.2 (2022-10-14)

See 3.2.0-beta.2 changelog

3.2.0-beta.1 (2022-10-10)

See 3.2.0-beta.1 changelog

3.2.0-beta.0 (2022-10-05)

See 3.2.0-beta.0 changelog

v3.1.8

Compare Source

Please refer to CHANGELOG.md for details.

v3.1.7

Compare Source

Please refer to CHANGELOG.md for details.

v3.1.6

Compare Source

Please refer to CHANGELOG.md for details.

v3.1.5

Compare Source

Please refer to CHANGELOG.md for details.

v3.1.4

Compare Source

Please refer to CHANGELOG.md for details.

v3.1.3

Compare Source

v3.1.2

Compare Source

v3.1.1

Compare Source

v3.1.0

Compare Source

Main Changes
  • Vite now uses parse5, which parses HTML in the same way as the latest browser versions. This migration gives us a more robust HTML story moving forward (#​9678).
  • Vite now supports using objects as hooks to change execution order (#​9634). Check out the RFC and the implementation upstream at rollup/rollup#​4600 for details and rationale.
      import { resolve } from 'node:path';
      import { readdir } from 'node:fs/promises';
    
      export default function getFilesOnDisk() {
        return {
          name: 'getFilesOnDisk',
          writeBundle: {
            // run this hook sequentially even if the hook is parallel
            sequential: true,
            // push this hook to the 'post' stage, after all normal hooks
            order: 'post',
            // hook implementation
            async handler({ dir }) {
              const topLevelFiles = await readdir(resolve(dir))
              console.log(topLevelFiles)
            }
          }
        }
      }
    Read the updated Rollup Plugin docs for more information.

Note
After Vite 3.1, you are no longer going to see [vite] hot updated log messages in the browser console. These messages have been moved to the debug channel (#​8855). Check your browser docs to show debug logs.

Features
Bug Fixes
Previous Changelogs
3.1.0-beta.2 (2022-09-02)

See 3.1.0-beta.2 changelog

3.1.0-beta.1 (2022-08-29)

See 3.1.0-beta.1 changelog

3.1.0-beta.0 (2022-08-25)

See 3.1.0-beta.0 changelog

v3.0.9

Compare Source

v3.0.8

Compare Source

v3.0.7

Compare Source

v3.0.6

Compare Source

v3.0.5

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

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


  • 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 force-pushed the renovate/vite-3.x branch from f0b606c to d24a7c1 Compare August 16, 2022 11:26
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.0.7 chore(deps): update dependency vite to v3.0.8 Aug 16, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from d24a7c1 to d199e50 Compare August 17, 2022 00:23
@Adkimsm Adkimsm added the dependencies Pull requests that update a dependency file label Aug 18, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch 4 times, most recently from f49a747 to a119689 Compare August 19, 2022 13:11
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.0.8 chore(deps): update dependency vite to v3.0.9 Aug 19, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from a119689 to 1a879ea Compare August 23, 2022 02:58
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 1a879ea to 719b7d4 Compare September 5, 2022 18:33
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.0.9 chore(deps): update dependency vite to v3.1.0 Sep 5, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 719b7d4 to 5a43133 Compare September 15, 2022 10:48
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.0 chore(deps): update dependency vite to v3.1.1 Sep 15, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 5a43133 to bc3892c Compare September 17, 2022 11:50
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.1 chore(deps): update dependency vite to v3.1.2 Sep 17, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from bc3892c to 9f3830c Compare September 19, 2022 16:13
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.2 chore(deps): update dependency vite to v3.1.3 Sep 19, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch 3 times, most recently from 01e8131 to 70c88c6 Compare September 28, 2022 12:58
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.3 chore(deps): update dependency vite to v3.1.4 Sep 28, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 70c88c6 to ba04271 Compare October 6, 2022 10:35
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.4 chore(deps): update dependency vite to v3.1.5 Oct 6, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from ba04271 to 216ccf4 Compare October 6, 2022 14:11
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.5 chore(deps): update dependency vite to v3.1.6 Oct 6, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 216ccf4 to de8f5a8 Compare October 10, 2022 10:28
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.6 chore(deps): update dependency vite to v3.1.7 Oct 10, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from de8f5a8 to ea4a914 Compare October 13, 2022 10:59
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.7 chore(deps): update dependency vite to v3.1.8 Oct 13, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from ea4a914 to 04f9c93 Compare October 26, 2022 16:33
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.1.8 chore(deps): update dependency vite to v3.2.0 Oct 26, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 04f9c93 to 89f0c29 Compare October 28, 2022 10:13
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.2.0 chore(deps): update dependency vite to v3.2.1 Oct 28, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 89f0c29 to 85b8eb8 Compare October 31, 2022 10:54
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.2.1 chore(deps): update dependency vite to v3.2.2 Oct 31, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 85b8eb8 to 821f4bb Compare November 7, 2022 10:41
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.2.2 chore(deps): update dependency vite to v3.2.3 Nov 7, 2022
@renovate renovate bot force-pushed the renovate/vite-3.x branch from 821f4bb to 0d96dc9 Compare November 15, 2022 17:01
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.2.3 chore(deps): update dependency vite to v3.2.4 Nov 15, 2022
@Adkimsm Adkimsm closed this Jul 2, 2023
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.

1 participant