toyai / python-playground

Interactive Playground for Python
https://python-playground.netlify.app
MIT License
12 stars 1 forks source link

chore(deps): update all non-major dependencies #95

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@codemirror/matchbrackets ^0.19.3 -> ^0.19.4 age adoption passing confidence
@codemirror/search ^0.19.6 -> ^0.19.7 age adoption passing confidence
@codemirror/state ^0.19.6 -> ^0.19.7 age adoption passing confidence
@codemirror/view ^0.19.40 -> ^0.19.42 age adoption passing confidence
@vitejs/plugin-vue ^2.1.0 -> ^2.2.0 age adoption passing confidence
lint-staged ^12.3.3 -> ^12.3.4 age adoption passing confidence
playwright-chromium (source) ^1.18.1 -> ^1.19.0 age adoption passing confidence
vite ^2.7.13 -> ^2.8.2 age adoption passing confidence
vite-plugin-windicss ^1.6.3 -> ^1.7.0 age adoption passing confidence
vue ^3.2.29 -> ^3.2.31 age adoption passing confidence

Release Notes

codemirror/matchbrackets ### [`v0.19.4`](https://togithub.com/codemirror/matchbrackets/blob/HEAD/CHANGELOG.md#​0194-2022-02-09) [Compare Source](https://togithub.com/codemirror/matchbrackets/compare/0.19.3...0.19.4) ##### Bug fixes The matching bracket styles no longer show up when the editor isn't focused.
codemirror/search ### [`v0.19.7`](https://togithub.com/codemirror/search/blob/HEAD/CHANGELOG.md#​0197-2022-02-14) [Compare Source](https://togithub.com/codemirror/search/compare/0.19.6...0.19.7) ##### Breaking changes `searchConfig` is deprecated in favor of `search` (but will exist until next major release). ##### New features The new `search` function is now used to enable and configure the search extension.
codemirror/state ### [`v0.19.7`](https://togithub.com/codemirror/state/blob/HEAD/CHANGELOG.md#​0197-2022-02-11) [Compare Source](https://togithub.com/codemirror/state/compare/0.19.6...0.19.7) ##### Bug fixes Avoid recomputing facets on state reconfiguration if that facet's inputs stayed precisely the same. Selection ranges created with `EditorSelection.range` will now have an assoc pointing at their anchor, when non-empty.
codemirror/view ### [`v0.19.42`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​01942-2022-02-05) [Compare Source](https://togithub.com/codemirror/view/compare/0.19.41...0.19.42) ##### Bug fixes Fix a regression in cursor position determination after making an edit next to a widget. ### [`v0.19.41`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​01941-2022-02-04) [Compare Source](https://togithub.com/codemirror/view/compare/0.19.40...0.19.41) ##### Bug fixes Fix an issue where the editor's view of its content height could go out of sync with the DOM when a line-wrapping editor had its width changed, causing wrapping to change. Fix a bug that caused the editor to draw way too much content when scrolling to a position in an editor (much) taller than the window. Report an error when a replace decoration from a plugin crosses a line break, rather than silently ignoring it. Fix an issue where reading DOM changes was broken when `lineSeparator` contained more than one character. Make ordering of replace and mark decorations with the same extent and inclusivness more predictable by giving replace decorations precedence. Fix a bug where, on Chrome, replacement across line boundaries and next to widgets could cause bogus zero-width characters to appear in the content.
vitejs/vite (@​vitejs/plugin-vue) ### [`v2.2.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/plugin-vue/CHANGELOG.md#​220-httpsgithubcomvitejsvitecompareplugin-vue210plugin-vue220-2022-02-09) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.1.0...v2.2.0) ##### Bug Fixes - plugin-vue `options.compiler` field ([#​6588](https://togithub.com/vitejs/vite/issues/6588)) ([caec019](https://togithub.com/vitejs/vite/commit/caec01998a9599d255761f3efc1c49827aadac0d)), closes [#​6587](https://togithub.com/vitejs/vite/issues/6587)
okonet/lint-staged ### [`v12.3.4`](https://togithub.com/okonet/lint-staged/releases/v12.3.4) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.3.3...v12.3.4) ##### Bug Fixes - add `package.json` to exports ([#​1059](https://togithub.com/okonet/lint-staged/issues/1059)) ([3395150](https://togithub.com/okonet/lint-staged/commit/339515010ccd95a2f952dbe65f8366463f94d26a))
Microsoft/playwright ### [`v1.19.0`](https://togithub.com/Microsoft/playwright/releases/v1.19.0) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.18.1...v1.19.0) ##### Version 1.19 ##### Playwright Test Updates ##### Soft assertions Playwright Test v1.19 now supports **soft assertions**. Failed soft assertions **do not** terminate test execution, but mark the test as failed. Read more in [our documentation](https://playwright.dev/docs/test-assertions#soft-assertions). ```js // Make a few checks that will not stop the test when failed... await expect.soft(page.locator('#status')).toHaveText('Success'); await expect.soft(page.locator('#eta')).toHaveText('1 day'); // ... and continue the test to check more things. await page.locator('#next-page').click(); await expect.soft(page.locator('#title')).toHaveText('Make another order'); ``` ##### Custom error messages You can now specify a [**custom error message**](https://playwright.dev/docs/test-assertions#custom-error-message) as a second argument to the `expect` and `expect.soft` functions, for example: ```js await expect(page.locator('text=Name'), 'should be logged in').toBeVisible(); ``` The error would look like this: ```bash Error: should be logged in Call log: - expect.toBeVisible with timeout 5000ms - waiting for selector "text=Name" 2 | 3 | test('example test', async({ page }) => { > 4 | await expect(page.locator('text=Name'), 'should be logged in').toBeVisible(); | ^ 5 | }); 6 | ``` ##### Parallel mode in file By default, tests in a single file are run in order. If you have many independent tests in a single file, you can now run them in parallel with [`method: test.describe.configure`](https://playwright.dev/docs/api/class-test#test-describe-configure): ```js import { test } from '@​playwright/test'; test.describe.configure({ mode: 'parallel' }); test('parallel 1', async () => {}); test('parallel 2', async () => {}); ``` ##### [⚠️](https://emojipedia.org/warning/#:~:text=A%20triangle%20with%20an%20exclamation,to%20Emoji%201.0%20in%202015.) Potentially breaking change in Playwright Test Global Setup It is unlikely that this change will affect you, no action is required if your tests keep running as they did. We've noticed that in rare cases, the set of tests to be executed was configured in the global setup by means of the environment variables. We also noticed some applications that were post processing the reporters' output in the global teardown. If you are doing one of the two, [learn more](https://togithub.com/microsoft/playwright/issues/12018) ##### Locator Updates ##### Locator now supports a `has` option that makes sure it contains another locator inside: ```js await page.locator('article', { has: page.locator('.highlight'), }).locator('button').click(); ``` The snippet above will select article that has highlight in it and will press the button in it. Read more in [locator documentation](https://playwright.dev/docs/api/class-locator#locator-locator-option-has) ##### Other Updates - New [`method: Locator.page`](https://playwright.dev/docs/api/class-locator#locator-page) - [`method: Page.screenshot`](https://playwright.dev/docs/api/class-page#page-screenshot) and [`method: Locator.screenshot`](https://playwright.dev/docs/api/class-locator#locator-screenshot) now automatically hides blinking caret - Playwright Codegen now generates locators and frame locators - New option `url` in [`testConfig.webServer`](https://playwright.dev/docs/api/class-testconfig#test-config-web-server) to ensure your web server is ready before running the tests - New [`property: TestInfo.errors`](https://playwright.dev/docs/api/class-testinfo#test-info-errors) and [`property: TestResult.errors`](https://playwright.dev/docs/api/class-testresult#test-result-errors) that contain all failed assertions and soft assertions. ##### Browser Versions - Chromium 100.0.4863.0 - Mozilla Firefox 96.0.1 - WebKit 15.4 This version was also tested against the following stable channels: - Google Chrome 98 - Microsoft Edge 98 ***
vitejs/vite (vite) ### [`v2.8.2`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#​282-httpsgithubcomvitejsvitecomparev281v282-2022-02-14) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.8.1...v2.8.2) ##### Features - custom manifest file name ([#​6667](https://togithub.com/vitejs/vite/issues/6667)) ([e385346](https://togithub.com/vitejs/vite/commit/e385346c53b3bb54f2e1abcb7348e33d7e075fd4)) - make `import.meta.glob` and `import.meta.globEager` generic ([#​5073](https://togithub.com/vitejs/vite/issues/5073)) ([78e84c8](https://togithub.com/vitejs/vite/commit/78e84c80c0f49d6f7c8a0e10c4257a477a221280)) ##### Performance Improvements - improve isFileReadable performance ([#​6868](https://togithub.com/vitejs/vite/issues/6868)) ([62cbe68](https://togithub.com/vitejs/vite/commit/62cbe68ab713d5aba626a1e3a4da46e8c2320bf3)) - lazy import preview function ([#​6898](https://togithub.com/vitejs/vite/issues/6898)) ([2eabcb9](https://togithub.com/vitejs/vite/commit/2eabcb9a30a413ff540cbdd60a919a0d1f72fb35)) ### [`v2.8.1`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#​281-httpsgithubcomvitejsvitecomparev280v281-2022-02-11) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.8.0...v2.8.1) ##### Bug Fixes - **deps:** update all non-major dependencies ([#​6782](https://togithub.com/vitejs/vite/issues/6782)) ([e38be3e](https://togithub.com/vitejs/vite/commit/e38be3e6ca7bf79319d5d7188e1d347b1d6091ef)) - **scan:** escape for virtual modules ([#​6863](https://togithub.com/vitejs/vite/issues/6863)) ([de20c73](https://togithub.com/vitejs/vite/commit/de20c73ef37b179c1791c0f96da04d29cfd48840)) ### [`v2.8.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#​280-httpsgithubcomvitejsvitecomparev280-beta7v280-2022-02-09) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.7.13...v2.8.0) ##### Reduced Footprint [Vite 2.8.0](https://packagephobia.com/result?p=vite%402.8.0) is almost 1/4 of the [2.7.0](https://packagephobia.com/result?p=vite%402.7.0) publish size, and the install size has been reduced by 35%. See [this thread](https://twitter.com/IAmTrySound/status/1475600522572877829) about each change that reduced Vite's footprint. | Version | Publish Size | Install Size | | -------------------------------------------------------- | ------------ | ------------ | | [2.7.0](https://packagephobia.com/result?p=vite%402.7.0) | 12.7MB | 25.2MB | | [2.8.0](https://packagephobia.com/result?p=vite%402.8.0) | 4.6MB | 17.4MB | ##### Default preview port New default port for `vite preview` is 4173 (avoid conflicts in MacOS that took over the 5000 port) ##### Workers using standard syntax Workers are detected and bundled when using `new URL('path', import.meta.url)`, replacing the need for the `?worker` suffix and aligning Vite with standard patterns. See [#​6356](https://togithub.com/vitejs/vite/issues/6356). Instead of ```js import MyWorker from './worker.js?worker' const worker = new MyWorker() ``` it is now recommended to use ```js const worker = new Worker( new URL('./worker.js', import.meta.url), { type: 'module' } ) ``` ##### Configuring Workers Bundling New `worker` config field adding support for Worker `format`, `plugins` and, `rollupOptions`. See [#​6351](https://togithub.com/vitejs/vite/issues/6351) - `worker.format: 'es' | 'iife'`
Output format for worker bundle (default: `iife`). - `worker.plugins: (Plugin | Plugin[])[]`
Vite plugins that apply to worker bundle. - ` worker.rollupOptions: `[`RollupOptions`](https://rollupjs.org/guide/en/#big-list-of-options)
Rollup options to build worker bundle. The worker plugins pipeline isn't shared with the main Vite pipeline, there may be plugins that shouldn't be applied to Workers. If a plugin must be applied to both the main build and the worker build, you need to add a plugin in the main `plugins` array and another one in the `worker.plugins` config. ```js import PluginX from 'vite-plugin-x' export default { plugins: [ PluginX() ] worker: { format: 'es', plugins: [ PluginX() ] } } ``` ##### Raw Glob Imports Glob imports now support the `raw` modifier (that works in the same way as [the `?raw` suffix]() in regular imports). Vite is going to gradually migrate to the new standard `assert` syntax instead of using custom URL suffixes where possible. ```js const examples = import.meta.globEager('./examples/*.html', { assert: { type: 'raw' }}) ``` - New `server.headers` config option allowing configuration of response headers in dev mode. ```js export default { server: { port: '8080', headers: { 'Cache-Control': 'no-store' } }, } ``` ##### Bug Fixes - revert [#​6233](https://togithub.com/vitejs/vite/issues/6233), strip query when resolving entry (fix [#​6797](https://togithub.com/vitejs/vite/issues/6797)) ([a012644](https://togithub.com/vitejs/vite/commit/a0126441a556b4991ac14cf037820194ab9e17b9)) - **ssr:** skip vite resolve for windows absolute path ([#​6764](https://togithub.com/vitejs/vite/issues/6764)) ([489a7f1](https://togithub.com/vitejs/vite/commit/489a7f11e9d89932310025299c1eeb75c5cb4ce6)) - revert [#​5342](https://togithub.com/vitejs/vite/issues/5342), only run build-html plugin on bundler inputs ([#​6715](https://togithub.com/vitejs/vite/issues/6715)) ([59f8a63](https://togithub.com/vitejs/vite/commit/59f8a639bc6abd9e6c99bc77e155990c43e07ad9)) - **build:** NODE_ENV override by .env ([#​6303](https://togithub.com/vitejs/vite/issues/6303)) ([7329b24](https://togithub.com/vitejs/vite/commit/7329b24e03952b8fb25b025b61955e40ef777e2a)) - debug `dotenv` when specifically scoped ([#​6682](https://togithub.com/vitejs/vite/issues/6682)) ([c2f0021](https://togithub.com/vitejs/vite/commit/c2f00214e41b62196fab9108da76609aa8edbaa4)) - **dev:** prevent stripping query params from CSS in HMR ([#​6589](https://togithub.com/vitejs/vite/issues/6589)) ([3ab96c6](https://togithub.com/vitejs/vite/commit/3ab96c6171dbd3a6155e3496f901d2718edae558)) - **legacy:** fix conflict with the modern build on css emitting ([#​6584](https://togithub.com/vitejs/vite/issues/6584)) ([f48255e](https://togithub.com/vitejs/vite/commit/f48255e6e0058e973b949fb4a2372974f0480e11)), closes [#​3296](https://togithub.com/vitejs/vite/issues/3296) [#​3317](https://togithub.com/vitejs/vite/issues/3317) [/github.com/vitejs/vite/commit/6bce1081991501f3779bff1a81e5dd1e63e5d38e#diff-2cfbd4f4d8c32727cd8e1a561cffbde0b384a3ce0789340440e144f9d64c10f6R262-R263](https://togithub.com//github.com/vitejs/vite/commit/6bce1081991501f3779bff1a81e5dd1e63e5d38e/issues/diff-2cfbd4f4d8c32727cd8e1a561cffbde0b384a3ce0789340440e144f9d64c10f6R262-R263) - revert [#​5601](https://togithub.com/vitejs/vite/issues/5601) [#​6025](https://togithub.com/vitejs/vite/issues/6025), don't resolve rollupOptions.input ([#​6680](https://togithub.com/vitejs/vite/issues/6680)) ([2a9da2e](https://togithub.com/vitejs/vite/commit/2a9da2e3b10e3637f7ed7daa3b45cb173f40d7a3)) - update SSR externals only when SSR is enabled (fix [#​6478](https://togithub.com/vitejs/vite/issues/6478)) ([#​6492](https://togithub.com/vitejs/vite/issues/6492)) ([28d1e7e](https://togithub.com/vitejs/vite/commit/28d1e7eed2213f0b22936ff6900354b29e320bc9)) - avoid referencing importGlob from importMeta.d.ts ([#​6531](https://togithub.com/vitejs/vite/issues/6531)) ([962d285](https://togithub.com/vitejs/vite/commit/962d28508dce63b395e79b79f3b0e2cf0e381a71)) - **config:** merge array correctly ([#​6499](https://togithub.com/vitejs/vite/issues/6499)) ([b2d972e](https://togithub.com/vitejs/vite/commit/b2d972e53b59329695f74e01893b21ec5c136ffd)) - improve alias merging ([#​6497](https://togithub.com/vitejs/vite/issues/6497)) ([e57d8c6](https://togithub.com/vitejs/vite/commit/e57d8c63042c2701e797c797b25af65d9dab9eea)) - improve array config merging ([#​6344](https://togithub.com/vitejs/vite/issues/6344)) ([028cbeb](https://togithub.com/vitejs/vite/commit/028cbeb34adef217f274be7c4a7dd5c9f9b12b29)) - merge debug params instead of overwrite ([#​6504](https://togithub.com/vitejs/vite/issues/6504)) ([#​6505](https://togithub.com/vitejs/vite/issues/6505)) ([1ac7fb1](https://togithub.com/vitejs/vite/commit/1ac7fb19befe4c18a08786038dc1b63325e96835)) - only run build-html plugin on bundler inputs (fix [#​4067](https://togithub.com/vitejs/vite/issues/4067)) ([#​5342](https://togithub.com/vitejs/vite/issues/5342)) ([7541a8d](https://togithub.com/vitejs/vite/commit/7541a8d570d9bbf0ab0cd4264cae985dddaf3189)) - **ssr:** avoid using `tryNodeResolve` on absolute paths ([#​6488](https://togithub.com/vitejs/vite/issues/6488)) ([f346d89](https://togithub.com/vitejs/vite/commit/f346d89741b3c3a5287ce8b03637e520777d3674)) - **ssr:** fix resolution for nested ssr externals ([#​6080](https://togithub.com/vitejs/vite/issues/6080)) ([#​6470](https://togithub.com/vitejs/vite/issues/6470)) ([4a764f5](https://togithub.com/vitejs/vite/commit/4a764f52e4964b02c02f1ce6863ae3454daad55c)) - **ssr:** handle nameless descture in function args ([#​6489](https://togithub.com/vitejs/vite/issues/6489)) ([debc08d](https://togithub.com/vitejs/vite/commit/debc08de75434bb63f50e0e5669995de0878ce37)) - **ssr:** should correctly transfrom identifier in ssr ([#​6548](https://togithub.com/vitejs/vite/issues/6548)) ([15cd975](https://togithub.com/vitejs/vite/commit/15cd975933f6213d25d004634b3d49eb1630e360)) - **types:** add missing options parameter to importMeta ([#​6433](https://togithub.com/vitejs/vite/issues/6433)) ([ccf7d79](https://togithub.com/vitejs/vite/commit/ccf7d791497139951fde58168999d44e18f706ee)) - **types:** dynamic import in import.meta ([#​6456](https://togithub.com/vitejs/vite/issues/6456)) ([5d7b4c3](https://togithub.com/vitejs/vite/commit/5d7b4c31b8e44add7c192ae8af4b90b9378ae1fe)), closes [#​6433](https://togithub.com/vitejs/vite/issues/6433) - update preview port to 4173 ([#​6330](https://togithub.com/vitejs/vite/issues/6330)) ([870e1c0](https://togithub.com/vitejs/vite/commit/870e1c076272960a5f390b2cfdd3ae275b3891a5)) - use cacheDir for resolveHttpsConfig ([#​6416](https://togithub.com/vitejs/vite/issues/6416)) ([647168b](https://togithub.com/vitejs/vite/commit/647168b2b44b82b1a1cbd8e639f74ddf52a5d5cd)) - improve array config merging ([#​6344](https://togithub.com/vitejs/vite/issues/6344)) ([028cbeb](https://togithub.com/vitejs/vite/commit/028cbeb34adef217f274be7c4a7dd5c9f9b12b29)) - only run build-html plugin on bundler inputs (fix [#​4067](https://togithub.com/vitejs/vite/issues/4067)) ([#​5342](https://togithub.com/vitejs/vite/issues/5342)) ([7541a8d](https://togithub.com/vitejs/vite/commit/7541a8d570d9bbf0ab0cd4264cae985dddaf3189)) - **ssr:** handle nameless descture in function args ([#​6489](https://togithub.com/vitejs/vite/issues/6489)) ([debc08d](https://togithub.com/vitejs/vite/commit/debc08de75434bb63f50e0e5669995de0878ce37)) - **types:** add missing options parameter to importMeta ([#​6433](https://togithub.com/vitejs/vite/issues/6433)) ([ccf7d79](https://togithub.com/vitejs/vite/commit/ccf7d791497139951fde58168999d44e18f706ee)) - **types:** dynamic import in import.meta ([#​6456](https://togithub.com/vitejs/vite/issues/6456)) ([5d7b4c3](https://togithub.com/vitejs/vite/commit/5d7b4c31b8e44add7c192ae8af4b90b9378ae1fe)), closes [#​6433](https://togithub.com/vitejs/vite/issues/6433) - use cacheDir for resolveHttpsConfig ([#​6416](https://togithub.com/vitejs/vite/issues/6416)) ([647168b](https://togithub.com/vitejs/vite/commit/647168b2b44b82b1a1cbd8e639f74ddf52a5d5cd)) - **build:** fix chokidar.ignore override ([#​6317](https://togithub.com/vitejs/vite/issues/6317)) ([aa47549](https://togithub.com/vitejs/vite/commit/aa475494c61898638a592387ac907a939f1dd938)) - **build:** fix watch crash with inline module ([#​6373](https://togithub.com/vitejs/vite/issues/6373)) ([49d2f6d](https://togithub.com/vitejs/vite/commit/49d2f6dbd9445518b022f6c75ca397460a02d9d8)) - check if e.stack exists in the first place ([#​6362](https://togithub.com/vitejs/vite/issues/6362)) ([f144aa9](https://togithub.com/vitejs/vite/commit/f144aa9f1df2134dc6695db6e8eff25cac2b5263)) - correct ssr flag in resolve calls (fix [#​6213](https://togithub.com/vitejs/vite/issues/6213)) ([#​6216](https://togithub.com/vitejs/vite/issues/6216)) ([6dd7d1a](https://togithub.com/vitejs/vite/commit/6dd7d1a7cb99737dd48e070607d0fe9ece35adab)) - **css:** no emit assets in html style tag (fix [#​5968](https://togithub.com/vitejs/vite/issues/5968)) ([#​6321](https://togithub.com/vitejs/vite/issues/6321)) ([dc9fce1](https://togithub.com/vitejs/vite/commit/dc9fce144a957a5e7b3612b27bc657121a882edc)) - don't force terser on non-legacy (fix [#​6266](https://togithub.com/vitejs/vite/issues/6266)) ([#​6272](https://togithub.com/vitejs/vite/issues/6272)) ([1da104e](https://togithub.com/vitejs/vite/commit/1da104e8597e2965313e8cd582d032bca551e4ee)) - prevent dev server crashing on malformed URI (fix [#​6300](https://togithub.com/vitejs/vite/issues/6300)) ([#​6308](https://togithub.com/vitejs/vite/issues/6308)) ([a49d723](https://togithub.com/vitejs/vite/commit/a49d72358f2d028f62b0e9fcdb096a0e5ddf24c3)) - replace chalk with picocolors ([#​6277](https://togithub.com/vitejs/vite/issues/6277)) ([5a111ce](https://togithub.com/vitejs/vite/commit/5a111cedf31f579e3b8c8af5c4442d2e0cd5aa12)) - replace execa with cross-spawn ([#​6299](https://togithub.com/vitejs/vite/issues/6299)) ([f68ed8b](https://togithub.com/vitejs/vite/commit/f68ed8b4ebbec01491d069164b28a5948537f0d7)) - **ssr:** move `vite:ssr-require-hook` after user plugins ([#​6306](https://togithub.com/vitejs/vite/issues/6306)) ([d856c4b](https://togithub.com/vitejs/vite/commit/d856c4bd6798707e0cbdfc127a2e8b6c00c65dae)) - strip NULL_BYTE_PLACEHOLDER before transform ([#​6390](https://togithub.com/vitejs/vite/issues/6390)) ([5964949](https://togithub.com/vitejs/vite/commit/596494948a6e2f697232371b200c2d7a51d386bc)) - strip query when resolving entry ([#​6233](https://togithub.com/vitejs/vite/issues/6233)) ([000ba2e](https://togithub.com/vitejs/vite/commit/000ba2e00b14e6c595febfa6dcae862e2d341823)) - upgrade postcss-modules ([#​6248](https://togithub.com/vitejs/vite/issues/6248)) ([ac3f434](https://togithub.com/vitejs/vite/commit/ac3f434b8b7bc827fd76a28989f8c3ebaa999ee9)) - use `hires: true` for SSR require hook source map ([#​6310](https://togithub.com/vitejs/vite/issues/6310)) ([0ebeb98](https://togithub.com/vitejs/vite/commit/0ebeb981789e6c29889db03fc11fd9b80c63883f)) ##### Features - add lerna workspace support to `searchForWorkspaceRoot` ([#​6270](https://togithub.com/vitejs/vite/issues/6270)) ([0e164f8](https://togithub.com/vitejs/vite/commit/0e164f80ee36f99ef5277320b3b69448459ef7ba)) - add .txt file format to assets ([#​6265](https://togithub.com/vitejs/vite/issues/6265)) ([e87ae41](https://togithub.com/vitejs/vite/commit/e87ae41ae57857f387a67b5140bf7d5689a3e14b)) - allow globs in node_modules when pattern is explicit ([#​6056](https://togithub.com/vitejs/vite/issues/6056)) ([669d7e0](https://togithub.com/vitejs/vite/commit/669d7e0f4b6ea4a73d3598ab1473b58c72bf093b)) - **html:** html simple script tag support import-expression ([#​6525](https://togithub.com/vitejs/vite/issues/6525)) ([3546d4f](https://togithub.com/vitejs/vite/commit/3546d4ffcfbc011d78f9ba26e0dc689853575a1e)) - add customResolver option to resolve.alias ([#​5876](https://togithub.com/vitejs/vite/issues/5876)) ([6408a3a](https://togithub.com/vitejs/vite/commit/6408a3ab9bd97f1542982755b5044871a78b59d4)) - new Worker can bundle URL('path', import.meta.url) script (fix [#​5979](https://togithub.com/vitejs/vite/issues/5979)) ([#​6356](https://togithub.com/vitejs/vite/issues/6356)) ([a345614](https://togithub.com/vitejs/vite/commit/a34561490b4b866d8d4f98c697435dcb68a5c3ed)) - catch postcss error messages ([#​6293](https://togithub.com/vitejs/vite/issues/6293)) ([4d75b2e](https://togithub.com/vitejs/vite/commit/4d75b2e39d4decd1294f62333bdae4ba577bf1cb)) - **define:** prevent assignment ([#​5515](https://togithub.com/vitejs/vite/issues/5515)) ([6d4ee18](https://togithub.com/vitejs/vite/commit/6d4ee18e0c45e7c1fedd36c24b631a8f97f40c0f)) - import.meta.glob support ?raw ([#​5545](https://togithub.com/vitejs/vite/issues/5545)) ([5279de6](https://togithub.com/vitejs/vite/commit/5279de6859df61b6191a4c3bfc76da582309a5ec)) - option to disable pre-transform ([#​6309](https://togithub.com/vitejs/vite/issues/6309)) ([2c14525](https://togithub.com/vitejs/vite/commit/2c145252b7870e8173886339b69f189878533839)) - **server:** support headers configurable ([#​5580](https://togithub.com/vitejs/vite/issues/5580)) ([db36e81](https://togithub.com/vitejs/vite/commit/db36e8158e06ff6a383d03b9680aafc7f62d5033)) - **server:** trace `error.loc` back to original source ([#​5467](https://togithub.com/vitejs/vite/issues/5467)) ([65cd44d](https://togithub.com/vitejs/vite/commit/65cd44dcabbf213b24d68cf02d787e7b9e138c21)) - **ssr:** support preload dynamic css file in html head ([#​5705](https://togithub.com/vitejs/vite/issues/5705)) ([07fca95](https://togithub.com/vitejs/vite/commit/07fca955519a98e19d4e138a17e19a000eef3f46)) - support .cjs config file ([#​5602](https://togithub.com/vitejs/vite/issues/5602)) ([cddd986](https://togithub.com/vitejs/vite/commit/cddd986b2a3c61afd53d6fde88f9f28d3c3a6b00)) - **vite:** pass mode to preview command ([#​6392](https://togithub.com/vitejs/vite/issues/6392)) ([1ff1103](https://togithub.com/vitejs/vite/commit/1ff1103ade691b0a3f564609fdc4e76d5122227b)) - **worker:** support worker format, plugins and rollupOptions (fix [#​6191](https://togithub.com/vitejs/vite/issues/6191)) ([#​6351](https://togithub.com/vitejs/vite/issues/6351)) ([133fcea](https://togithub.com/vitejs/vite/commit/133fcea5223263b0ae08ac9a0422b55183ebd266)) ##### Beta Changelogs ##### [2.8.0-beta.7](https://togithub.com/vitejs/vite/compare/v2.8.0-beta.6...v2.8.0-beta.7) (2022-02-08) See [2.8.0-beta.7 changelog](https://togithub.com/vitejs/vite/blob/v2.8.0-beta.7/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.6](https://togithub.com/vitejs/vite/compare/v2.8.0-beta.5...v2.8.0-beta.6) (2022-02-07) See [2.8.0-beta.6 changelog](https://togithub.com/vitejs/vite/blob/v2.8.0-beta.6/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.5](https://togithub.com/vitejs/vite/compare/v2.8.0-beta.4...v2.8.0-beta.5) (2022-02-02) See [2.8.0-beta.5 changelog](https://togithub.com/vitejs/vite/blob/v2.8.0-beta.5/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.4](https://togithub.com/vitejs/vite/compare/v2.8.0-beta.3...v2.8.0-beta.4) (2022-01-31) See [2.8.0-beta.4 changelog](https://togithub.com/vitejs/vite/blob/v2.8.0-beta.4/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.3](https://togithub.com/vitejs/vite/compare/v2.8.0-beta.1...v2.8.0-beta.3) (2022-01-18) See [2.8.0-beta.3 changelog](https://togithub.com/vitejs/vite/blob/v2.8.0-beta.3/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.2](https://togithub.com/vitejs/vite/compare/v2.8.0-beta.1...v2.8.0-beta.2) (2022-01-13) [2.8.0-beta.2 changelog](https://togithub.com/vitejs/vite/blob/v2.8.0-beta.2/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.1](https://togithub.com/vitejs/vite/compare/v2.8.0-beta.0...v2.8.0-beta.1) (2022-01-06) See [2.8.0-beta.1 changelog](https://togithub.com/vitejs/vite/blob/v2.8.0-beta.1/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.0](https://togithub.com/vitejs/vite/compare/v2.7.9...v2.8.0-beta.0) (2022-01-05) See [2.8.0-beta.0 changelog](https://togithub.com/vitejs/vite/blob/v2.8.0-beta.0/packages/vite/CHANGELOG.md) #### [2.7.9](https://togithub.com/vitejs/vite/compare/v2.7.8...v2.7.9) (2021-12-28) #### [2.7.8](https://togithub.com/vitejs/vite/compare/v2.7.7...v2.7.8) (2021-12-28) ##### Bug Fixes - **html:** show error overlay when parsing invalid file ([#​6184](https://togithub.com/vitejs/vite/issues/6184)) ([1f945f6](https://togithub.com/vitejs/vite/commit/1f945f62bf4a722c95a7b8f9c14c32a6f2be5c3f)) - seperate source and dep for dymamic import after build ([#​6251](https://togithub.com/vitejs/vite/issues/6251)) ([49da986](https://togithub.com/vitejs/vite/commit/49da98619692779df58673b9cc6004dd824a6f15)) - **ssr:** capture scope declaration correctly ([#​6281](https://togithub.com/vitejs/vite/issues/6281)) ([60ce7f9](https://togithub.com/vitejs/vite/commit/60ce7f9a1d1c730a244bc621675240d74f58af3e)) - upgrade to launch-editor with picocolors ([#​6209](https://togithub.com/vitejs/vite/issues/6209)) ([394539c](https://togithub.com/vitejs/vite/commit/394539c613b1fdee444079dae4275027705e85ae)) #### [2.7.7](https://togithub.com/vitejs/vite/compare/v2.7.6...v2.7.7) (2021-12-26) ##### Bug Fixes - **ssr:** nested destucture ([#​6249](https://togithub.com/vitejs/vite/issues/6249)) ([485e298](https://togithub.com/vitejs/vite/commit/485e298e72599679e97f0ed1f4315ac5da55da2c)) - **ssr:** transform class props ([#​6261](https://togithub.com/vitejs/vite/issues/6261)) ([2e3fe59](https://togithub.com/vitejs/vite/commit/2e3fe5932c962d447a4faa4b0ce996ead70c7d34)) #### [2.7.6](https://togithub.com/vitejs/vite/compare/v2.7.5...v2.7.6) (2021-12-22) ##### Bug Fixes - remove virtual module prefix while generating manifest ([#​6225](https://togithub.com/vitejs/vite/issues/6225)) ([d51259b](https://togithub.com/vitejs/vite/commit/d51259b73c484dea67d4c4afb6b76fbbb866631c)) #### [2.7.5](https://togithub.com/vitejs/vite/compare/v2.7.4...v2.7.5) (2021-12-21) ##### Bug Fixes - **asset:** import assets from encodeURI([#​6195](https://togithub.com/vitejs/vite/issues/6195)) ([#​6199](https://togithub.com/vitejs/vite/issues/6199)) ([4114f84](https://togithub.com/vitejs/vite/commit/4114f844f876fabfa9beaa6ec65e4002d7c36fbb)) - hmr full-reload encodeURI path ([#​6212](https://togithub.com/vitejs/vite/issues/6212)) ([46b862a](https://togithub.com/vitejs/vite/commit/46b862a6880a6e83d1e0e451376177c0e5cab0ba)) - remove top-level imports in importMeta.d.ts, fixes augmentation ([#​6214](https://togithub.com/vitejs/vite/issues/6214)) ([6b8d94d](https://togithub.com/vitejs/vite/commit/6b8d94dca2a1a8b4952e3e3fcd0aed1aedb94215)), closes [#​6194](https://togithub.com/vitejs/vite/issues/6194) [#​6211](https://togithub.com/vitejs/vite/issues/6211) [#​6206](https://togithub.com/vitejs/vite/issues/6206) [#​6205](https://togithub.com/vitejs/vite/issues/6205) - **ssr:** handle object destructure alias, close [#​6222](https://togithub.com/vitejs/vite/issues/6222) ([#​6224](https://togithub.com/vitejs/vite/issues/6224)) ([1d97ec3](https://togithub.com/vitejs/vite/commit/1d97ec336a6ee2915faae42d5f82110226929347)) #### [2.7.4](https://togithub.com/vitejs/vite/compare/v2.7.3...v2.7.4) (2021-12-20) ##### Bug Fixes - duplicate variable declaration caused by css modules ([#​5873](https://togithub.com/vitejs/vite/issues/5873)) ([8e16a78](https://togithub.com/vitejs/vite/commit/8e16a78a2d556b9480e8b2e19ec41fa522621256)) - improve error message for HTML compilation error (fix [#​5769](https://togithub.com/vitejs/vite/issues/5769)) ([#​5777](https://togithub.com/vitejs/vite/issues/5777)) ([79d1397](https://togithub.com/vitejs/vite/commit/79d139783868bfe2a2741f6e8cffcb72cee65351)) - **ssr:** `ssrTransform` function argument destructure ([#​6171](https://togithub.com/vitejs/vite/issues/6171)) ([2762a0e](https://togithub.com/vitejs/vite/commit/2762a0e7f0a599ced2c25c9d2baf06ec99ad8cfb)) #### [2.7.3](https://togithub.com/vitejs/vite/compare/v2.7.2...v2.7.3) (2021-12-16) ##### Bug Fixes - do not overwrite rollupOptions.input in dev ([#​6025](https://togithub.com/vitejs/vite/issues/6025)) ([6cdf13a](https://togithub.com/vitejs/vite/commit/6cdf13ae808a99b7aca6d278bee2ebe6e51d0846)) - Improve post-build asset update check ([#​6113](https://togithub.com/vitejs/vite/issues/6113)) ([611fa03](https://togithub.com/vitejs/vite/commit/611fa037a72a1179c27794353ffad6ed27e10d1a)) - improve warning message for malformed packages ([#​6086](https://togithub.com/vitejs/vite/issues/6086)) ([717cb08](https://togithub.com/vitejs/vite/commit/717cb08f8611fd1a15cfd614d346185ffe8a61fd)) - pending reload never timeout ([#​6120](https://togithub.com/vitejs/vite/issues/6120)) ([e002f4f](https://togithub.com/vitejs/vite/commit/e002f4f4a578ae63156e756abac0487f42b4cdcd)) - respect new port when change the config file ([#​6075](https://togithub.com/vitejs/vite/issues/6075)) ([3ceffcc](https://togithub.com/vitejs/vite/commit/3ceffcca66311f9a7d71612a596b84888c3f843b)) - **ssr:** robust regexp to check cjs content ([#​6053](https://togithub.com/vitejs/vite/issues/6053)) ([0373441](https://togithub.com/vitejs/vite/commit/03734417cde10807ab2dd0d71b08c26081aac0b7)) - terminate WebSocket connections before closing WebSocket server ([#​6115](https://togithub.com/vitejs/vite/issues/6115)) ([b9871bb](https://togithub.com/vitejs/vite/commit/b9871bbed57c5964b3393e798b0ef2526471d692)) #### [2.7.2](https://togithub.com/vitejs/vite/compare/v2.7.1...v2.7.2) (2021-12-13) ##### Bug Fixes - **html:** empty script ([#​6057](https://togithub.com/vitejs/vite/issues/6057)) ([1487223](https://togithub.com/vitejs/vite/commit/1487223f39b7555b1050b660d847eabf4d20249f)) - **lexGlobPattern:** edge case of glob import ([#​6022](https://togithub.com/vitejs/vite/issues/6022)) ([d4c5cff](https://togithub.com/vitejs/vite/commit/d4c5cff551ad9fb721243f8abdbf0c78f5b5a7ec)) - ws types ([#​6083](https://togithub.com/vitejs/vite/issues/6083)) ([1ded1a8](https://togithub.com/vitejs/vite/commit/1ded1a835bfb64f2c70c8c153e979b7911c9a8c1)) #### [2.7.1](https://togithub.com/vitejs/vite/compare/v2.7.0...v2.7.1) (2021-12-07) ##### Bug Fixes - **ssr:** `ssrTransform` handling for empty ArrayPattern ([#​5988](https://togithub.com/vitejs/vite/issues/5988)) ([79aa687](https://togithub.com/vitejs/vite/commit/79aa68744cf17553448bce5c175a25f785e4a743))
antfu/vite-plugin-windicss ### [`v1.7.0`](https://togithub.com/antfu/vite-plugin-windicss/releases/v1.7.0) [Compare Source](https://togithub.com/antfu/vite-plugin-windicss/compare/v1.6.3...v1.7.0) ##### Features - applying extractors shouldn't stop on first matching extension [#​276](https://togithub.com/windicss/vite-plugin-windicss/issues/276) ([#​277](https://togithub.com/windicss/vite-plugin-windicss/issues/277)) ([6396cc3](https://togithub.com/windicss/vite-plugin-windicss/commit/6396cc3))
vuejs/core ### [`v3.2.31`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#​3231-httpsgithubcomvuejscorecomparev3230v3231-2022-02-12) [Compare Source](https://togithub.com/vuejs/core/compare/v3.2.30...v3.2.31) ##### Bug Fixes - **compiler-ssr:** no need to inject resolveDirective calls for setup custom directives ([436c500](https://togithub.com/vuejs/core/commit/436c500d2c418930652fededc4882540dcd0c987)) - **runtime-core:** allow spying on proxy methods ([#​4216](https://togithub.com/vuejs/core/issues/4216)) ([8457d8b](https://togithub.com/vuejs/core/commit/8457d8b980674b09547edb2dae28091306fe6aa8)) - **ssr:** always hydrate children for HMR ([#​5406](https://togithub.com/vuejs/core/issues/5406)) ([0342fae](https://togithub.com/vuejs/core/commit/0342fae8ad0e71866e9b9725a1f9c471db775c76)), closes [#​5405](https://togithub.com/vuejs/core/issues/5405) ### [`v3.2.30`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#​3230-httpsgithubcomvuejscorecomparev3229v3230-2022-02-07) [Compare Source](https://togithub.com/vuejs/core/compare/v3.2.29...v3.2.30) ##### Features - **ssr:** support custom directive getSSRProps in optimized compilation ([60cf175](https://togithub.com/vuejs/core/commit/60cf175d88236db2c2a4a02900c92e26ceea0073)), closes [#​5304](https://togithub.com/vuejs/core/issues/5304) ##### Performance Improvements - **reactivity:** optimize effect/effectScope active state tracking ([2993a24](https://togithub.com/vuejs/core/commit/2993a246181df12e367b7abdfce0954244e8f7ec))

Configuration

📅 Schedule: "before 3am on Monday" (UTC).

🚦 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.



This PR has been generated by WhiteSource Renovate. View repository job log here.

netlify[bot] commented 2 years ago

✔️ Deploy Preview for python-playground ready!

🔨 Explore the source changes: 6deadf3af76f95e00f1496e33e8a57d04f1fe321

🔍 Inspect the deploy log: https://app.netlify.com/sites/python-playground/deploys/620a3bddb3230900071971d3

😎 Browse the preview: https://deploy-preview-95--python-playground.netlify.app/