matrix-art.meta

Issues/PRs archive for MTRNord/matrix-art
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.meta.git
Log | Files | Refs

385.json (10679B)


      1 {
      2   "number": 385,
      3   "title": "Bump vite from 4.0.4 to 4.2.0",
      4   "state": "closed",
      5   "diff_file": "385.diff",
      6   "author": "dependabot[bot]",
      7   "created_at": "2023-03-17T09:09:59Z",
      8   "closed_at": "2023-03-21T09:12:58Z",
      9   "merged_at": null,
     10   "base_ref": "main",
     11   "head_ref": "dependabot/npm_and_yarn/vite-4.2.0",
     12   "labels": [
     13     "dependencies",
     14     "javascript"
     15   ],
     16   "assignees": [
     17     "MTRNord"
     18   ],
     19   "requested_reviewers": [
     20     "MTRNord"
     21   ],
     22   "body": "Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.0.4 to 4.2.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a href=\"https://github.com/vitejs/vite/releases\">vite's releases</a>.</em></p>\n<blockquote>\n<h2>create-vite@4.2.0</h2>\n<p>Please refer to <a href=\"https://github.com/vitejs/vite/blob/create-vite@4.2.0/packages/create-vite/CHANGELOG.md\">CHANGELOG.md</a> for details.</p>\n<h2>create-vite@4.2.0-beta.1</h2>\n<p>Please refer to <a href=\"https://github.com/vitejs/vite/blob/create-vite@4.2.0-beta.1/packages/create-vite/CHANGELOG.md\">CHANGELOG.md</a> for details.</p>\n<h2>create-vite@4.2.0-beta.0</h2>\n<p>Please refer to <a href=\"https://github.com/vitejs/vite/blob/create-vite@4.2.0-beta.0/packages/create-vite/CHANGELOG.md\">CHANGELOG.md</a> for details.</p>\n<h2>create-vite@4.1.0</h2>\n<p>Please refer to <a href=\"https://github.com/vitejs/vite/blob/create-vite@4.1.0/packages/create-vite/CHANGELOG.md\">CHANGELOG.md</a> for details.</p>\n<h2>create-vite@4.1.0-beta.0</h2>\n<p>Please refer to <a href=\"https://github.com/vitejs/vite/blob/create-vite@4.1.0-beta.0/packages/create-vite/CHANGELOG.md\">CHANGELOG.md</a> for details.</p>\n</blockquote>\n</details>\n<details>\n<summary>Changelog</summary>\n<p><em>Sourced from <a href=\"https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md\">vite's changelog</a>.</em></p>\n<blockquote>\n<h2>4.2.0 (2023-03-16)</h2>\n<p>Vite 4.2 is out!</p>\n<h3>Support env variables replacement in HTML files</h3>\n<p>Vite now supports <a href=\"https://vitejs.dev/guide/env-and-mode.html#html-env-replacement\">replacing env variables in HTML files</a>. Any properties in <code>import.meta.env</code> can be used in HTML files with a special <code>%ENV_NAME%</code> syntax:</p>\n<pre lang=\"html\"><code>&lt;h1&gt;Vite is running in %MODE%&lt;/h1&gt;\n&lt;p&gt;Using data from %VITE_API_URL%&lt;/p&gt;\n</code></pre>\n<h3>Sourcemaps improvements</h3>\n<p>The Chrome Dev Tools team has been working to improve the DX of Vite and Vite-powered frameworks in the dev tools. Vite 4.2 brings an <a href=\"https://twitter.com/bmeurer/status/1631286267823439881\">improved experience</a> and tools for framework authors to <a href=\"https://twitter.com/bmeurer/status/1631531492462526467\">hide 3rd party code and build artifacts from the user</a> from console log traces using <a href=\"https://vitejs.dev/config/server-options.html#server-sourcemapignorelist\"><code>server.sourcemapIgnoreList</code></a> and <a href=\"https://rollupjs.org/configuration-options/#output-sourcemapignorelist\"><code>build.rollupOptions.output.sourcemapIgnoreList</code></a>.</p>\n<h3>ESM subpath imports</h3>\n<p>Vite 4.2 now supports <a href=\"https://nodejs.org/api/packages.html#subpath-imports\">subpath imports</a>, thanks to <a href=\"https://twitter.com/lukeed05\"><code>@\u200blukeed05</code></a>'s <a href=\"https://github.com/lukeed/resolve.exports\">resolve.exports</a> library.</p>\n<h3>TypeScript 5 support</h3>\n<p>Vite 4.2 also supports TypeScript 5's <code>tsconfig</code> <code>extends</code> <a href=\"https://devblogs.microsoft.com/typescript/announcing-typescript-5-0-beta/#supporting-multiple-configuration-files-in-extends\">array format</a>, thanks to <a href=\"https://github.com/dominikg/tsconfck\">tsconfck</a>.</p>\n<h3>esbuild 0.17</h3>\n<p>esbuild <a href=\"https://github.com/evanw/esbuild/releases/tag/v0.17.0\">v0.17.0</a> improved the design of its incremental, watch, and serve APIs. Check out <a href=\"https://redirect.github.com/vitejs/vite/pull/11908\">#11908</a> for the rationale of why we didn't consider the backward-incompatible changes breaking for our use cases. The updated esbuild design now allows Vite to properly cancel in-fly builds and improve server restarts.</p>\n<h3>Use Rollup types from the vite package</h3>\n<p>Expose Rollup types as a namespace. This is helpful to avoid type conflicts because of different versions of Rollup types in environments like <a href=\"https://github.com/vitejs/vite-ecosystem-ci\">vite-ecosystem-ci</a> (<a href=\"https://redirect.github.com/vitejs/vite/issues/12316\">#12316</a>).</p>\n<pre lang=\"ts\"><code>import type { Rollup } from 'vite'\n</code></pre>\n<h3>Portugu\u00eas Docs Translation</h3>\n<p>The Vite documentation is now translated to Portugu\u00eas at <a href=\"https://pt.vitejs.dev\">pt.vitejs.dev</a> thanks to <a href=\"https://twitter.com/nazarepiedady\">Nazar\u00e9 Da Piedade</a> .</p>\n<h3>Features</h3>\n<ul>\n<li>feat: add status message for 504 caused by optimizer (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12435\">#12435</a>) (<a href=\"https://github.com/vitejs/vite/commit/5cdd3fa\">5cdd3fa</a>), closes <a href=\"https://redirect.github.com/vitejs/vite/issues/12435\">#12435</a></li>\n<li>feat: update tsconfck to 2.1.0 to add support for typescript 5 config syntax (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12401\">#12401</a>) (<a href=\"https://github.com/vitejs/vite/commit/3f1c379\">3f1c379</a>), closes <a href=\"https://redirect.github.com/vitejs/vite/issues/12401\">#12401</a></li>\n<li>feat: default esbuild jsxDev based on config.isProduction (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12386\">#12386</a>) (<a href=\"https://github.com/vitejs/vite/commit/f24c2b0\">f24c2b0</a>), closes <a href=\"https://redirect.github.com/vitejs/vite/issues/12386\">#12386</a></li>\n</ul>\n<!-- raw HTML omitted -->\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/vitejs/vite/commit/9dbb7f7765fd7d255daf82ad44fe867d49f0befd\"><code>9dbb7f7</code></a> release: v4.2.0</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/5cdd3fa97849442a98aa7aef63a0064220e4aef2\"><code>5cdd3fa</code></a> feat: add status message for 504 caused by optimizer (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12435\">#12435</a>)</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/e23f690dbf863cb197a28f0aad35234ae6dc7f6b\"><code>e23f690</code></a> fix(optimizer): # symbol in deps id stripped by browser (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12415\">#12415</a>)</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/2b37cdee429c2c18afa40447d4bfa0efe835898e\"><code>2b37cde</code></a> docs: correct description for UserConfig.envDir when used with relative path ...</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/d23605d01449706988be2eb77f2654238778fca8\"><code>d23605d</code></a> fix(server): should close server after create new server (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12379\">#12379</a>)</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/96f36a9a5ed20abc17e47a559e3484f7639b8809\"><code>96f36a9</code></a> fix: html env replacement plugin position (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12404\">#12404</a>)</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/fe1d61a75ef8e9833f7dbead71b4eedd8e88813a\"><code>fe1d61a</code></a> fix(resolve): rebase sub imports relative path (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12373\">#12373</a>)</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/42e0d6af67743841bd38ed504cb8cbaaafb6313f\"><code>42e0d6a</code></a> refactor(resolve): remove deep import syntax handling (<a href=\"https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/12381\">#12381</a>)</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/d89de6c5da02541be3c56dbfe8b515d0c60aa52b\"><code>d89de6c</code></a> release: v4.2.0-beta.2</li>\n<li><a href=\"https://github.com/vitejs/vite/commit/3f1c379bceafc5b4e19dacb1589d57c38eaf8d30\"><code>3f1c379</code></a> chore: update tsconfck to 2.1.0 to add support for typescript 5 config syntax...</li>\n<li>Additional commits viewable in <a href=\"https://github.com/vitejs/vite/commits/create-vite@4.2.0/packages/vite\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite&package-manager=npm_and_yarn&previous-version=4.0.4&new-version=4.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n</details>\n\n<!-- Replace -->\n----\n\u231b Deploy Preview - Build in Progress\n<!-- Replace -->\n",
     23   "comments": [
     24     {
     25       "author": "dependabot[bot]",
     26       "created_at": "2023-03-21T09:12:57Z",
     27       "body": "Superseded by #395."
     28     }
     29   ],
     30   "review_comments": []
     31 }