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 #105

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@codemirror/autocomplete ^0.20.1 -> ^0.20.3 age adoption passing confidence devDependencies patch
@codemirror/state ^0.20.0 -> ^0.20.1 age adoption passing confidence devDependencies patch
@codemirror/view ^0.20.6 -> ^0.20.7 age adoption passing confidence devDependencies patch
lint-staged ^12.4.1 -> ^12.5.0 age adoption passing confidence devDependencies minor
playwright-chromium (source) ^1.22.2 -> ^1.23.0 age adoption passing confidence devDependencies minor
prettier (source) ^2.6.2 -> ^2.7.1 age adoption passing confidence devDependencies minor
python 3.10.4-slim-buster -> 3.10.5-slim-buster age adoption passing confidence final patch
uvicorn (source, changelog) ==0.17.6 -> ==0.18.2 age adoption passing confidence minor
uvu ^0.5.3 -> ^0.5.4 age adoption passing confidence devDependencies patch
vite ^2.9.9 -> ^2.9.13 age adoption passing confidence devDependencies patch
vite-plugin-windicss ^1.8.4 -> ^1.8.5 age adoption passing confidence devDependencies patch
vue ^3.2.36 -> ^3.2.37 age adoption passing confidence devDependencies patch
windicss ^3.5.4 -> ^3.5.5 age adoption passing confidence devDependencies patch

Release Notes

codemirror/autocomplete ### [`v0.20.3`](https://togithub.com/codemirror/autocomplete/blob/HEAD/CHANGELOG.md#​0203-2022-05-30) [Compare Source](https://togithub.com/codemirror/autocomplete/compare/0.20.2...0.20.3) ##### Bug fixes Add an aria-label to the completion listbox. Fix a regression that caused transactions generated for completion to not have a `userEvent` annotation. ### [`v0.20.2`](https://togithub.com/codemirror/autocomplete/blob/HEAD/CHANGELOG.md#​0202-2022-05-24) [Compare Source](https://togithub.com/codemirror/autocomplete/compare/0.20.1...0.20.2) ##### New features The package now exports an `insertCompletionText` helper that implements the default behavior for applying a completion.
codemirror/state ### [`v0.20.1`](https://togithub.com/codemirror/state/blob/HEAD/CHANGELOG.md#​0201-2022-06-02) [Compare Source](https://togithub.com/codemirror/state/compare/0.20.0...0.20.1) ##### New features `EditorView.phrase` now accepts additional arguments, which it will interpolate into the phrase in the place of `$` markers.
codemirror/view ### [`v0.20.7`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​0207-2022-05-30) [Compare Source](https://togithub.com/codemirror/view/compare/0.20.6...0.20.7) ##### Bug fixes Fix an issue on Chrome Android where the DOM could fail to display the actual document after backspace. Avoid an issue on Chrome Android where DOM changes were sometimes inappropriately replace by a backspace key effect due to spurious beforeinput events. Fix a problem where the content element's width didn't cover the width of the actual content. Work around a bug in Chrome 102 which caused wheel scrolling of the editor to be interrupted every few lines.
okonet/lint-staged ### [`v12.5.0`](https://togithub.com/okonet/lint-staged/releases/tag/v12.5.0) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.4.3...v12.5.0) ##### Bug Fixes - include all files when using `--config ` ([641d1c2](https://togithub.com/okonet/lint-staged/commit/641d1c2fd00992e926ae07defbb98c4d324f3b13)) - skip backup stash when using the `--diff` option ([d4da24d](https://togithub.com/okonet/lint-staged/commit/d4da24d90cfa85ef8589a5f8c6ba5f51c3b45275)) ##### Features - add `--diff-filter` option for overriding list of (staged) files ([753ef72](https://togithub.com/okonet/lint-staged/commit/753ef7281562e0a25a9fe01400d7108143116b39)) - add `--diff` option for overriding list of (staged) files ([35fcce9](https://togithub.com/okonet/lint-staged/commit/35fcce9040c8de2926a9113d09f13517e6b23a2e)) ### [`v12.4.3`](https://togithub.com/okonet/lint-staged/releases/tag/v12.4.3) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.4.2...v12.4.3) ##### Bug Fixes - **deps:** downgrade yaml@1.10.2 to support Node.js 12 ([383a96e](https://togithub.com/okonet/lint-staged/commit/383a96e17a21d10278e91ecdb8d80385886ce82f)) - **deps:** update commander@^9.2.0 ([22ebf52](https://togithub.com/okonet/lint-staged/commit/22ebf524e20b2bf239e22fab83df3edc76327394)) - **deps:** update yaml@^2.0.1 ([ec73af0](https://togithub.com/okonet/lint-staged/commit/ec73af0ddb3541f5a12e0c83b6112ab747d05d73)) ### [`v12.4.2`](https://togithub.com/okonet/lint-staged/releases/tag/v12.4.2) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.4.1...v12.4.2) ##### Bug Fixes - correctly handle --max-arg-length cli option ([1db5f26](https://togithub.com/okonet/lint-staged/commit/1db5f2651d7f41c56f3ee1eacb57f1be1566bce2))
Microsoft/playwright ### [`v1.23.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.23.0) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.22.2...v1.23.0) #### Network Replay Now you can record network traffic into a HAR file and re-use the data in your tests. To record network into HAR file: ```bash npx playwright open --save-har=github.har.zip https://github.com/microsoft ``` Alternatively, you can record HAR programmatically: ```ts const context = await browser.newContext({ recordHar: { path: 'github.har.zip' } }); // ... do stuff ... await context.close(); ``` Use the new methods [`page.routeFromHAR()`](https://playwright.dev/docs/api/class-page#page-route-from-har) or [`browserContext.routeFromHAR()`](https://playwright.dev/docs/api/class-browsercontext#browser-context-route-from-har) to serve matching responses from the [HAR](http://www.softwareishard.com/blog/har-12-spec/) file: ```ts await context.routeFromHAR('github.har.zip'); ``` Read more in [our documentation](https://playwright.dev/docs/network#record-and-replay-requests). ##### Advanced Routing You can now use [`route.fallback()`](https://playwright.dev/docs/api/class-route#route-fallback) to defer routing to other handlers. Consider the following example: ```ts // Remove a header from all requests. test.beforeEach(async ({ page }) => { await page.route('**/*', route => { const headers = route.request().headers(); delete headers['if-none-match']; route.fallback({ headers }); }); }); test('should work', async ({ page }) => { await page.route('**/*', route => { if (route.request().resourceType() === 'image') route.abort(); else route.fallback(); }); }); ``` Note that the new methods [`page.routeFromHAR()`](https://playwright.dev/docs/api/class-page#page-route-from-har) and [`browserContext.routeFromHAR()`](https://playwright.dev/docs/api/class-browsercontext#browser-context-route-from-har) also participate in routing and could be deferred to. ##### Web-First Assertions Update - New method [`expect(locator).toHaveValues()`](https://playwright.dev/docs/test-assertions#locator-assertions-to-have-values) that asserts all selected values of `