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

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/autocomplete ^0.19.13 -> ^0.19.14 age adoption passing confidence
@codemirror/language ^0.19.7 -> ^0.19.8 age adoption passing confidence
@codemirror/search ^0.19.8 -> ^0.19.9 age adoption passing confidence
@codemirror/view ^0.19.45 -> ^0.19.47 age adoption passing confidence
fastapi ==0.74.1 -> ==0.75.0 age adoption passing confidence
lint-staged ^12.3.4 -> ^12.3.6 age adoption passing confidence
playwright-chromium (source) ^1.19.2 -> ^1.20.0 age adoption passing confidence
prettier (source) ^2.5.1 -> ^2.6.0 age adoption passing confidence
uvicorn (source, changelog) ==0.17.5 -> ==0.17.6 age adoption passing confidence
vite-plugin-windicss ^1.8.1 -> ^1.8.3 age adoption passing confidence
windicss ^3.5.0 -> ^3.5.1 age adoption passing confidence

Release Notes

codemirror/autocomplete ### [`v0.19.14`](https://togithub.com/codemirror/autocomplete/blob/HEAD/CHANGELOG.md#​01914-2022-03-10) [Compare Source](https://togithub.com/codemirror/autocomplete/compare/0.19.13...0.19.14) ##### Bug fixes Make the ARIA attributes added to the editor during autocompletion spec-compliant.
codemirror/language ### [`v0.19.8`](https://togithub.com/codemirror/language/blob/HEAD/CHANGELOG.md#​0198-2022-03-03) [Compare Source](https://togithub.com/codemirror/language/compare/0.19.7...0.19.8) ##### Bug fixes Fix an issue that could cause indentation logic to use the wrong line content when indenting multiple lines at once.
codemirror/search ### [`v0.19.9`](https://togithub.com/codemirror/search/blob/HEAD/CHANGELOG.md#​0199-2022-03-03) [Compare Source](https://togithub.com/codemirror/search/compare/0.19.8...0.19.9) ##### New features The selection-matching extension now accepts a `wholeWords` option that makes it only highlight matches that span a whole word. Add SearchQuery.getCursor The `SearchQuery` class now has a `getCursor` method that allows external code to create a cursor for the query.
codemirror/view ### [`v0.19.47`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​01947-2022-03-08) [Compare Source](https://togithub.com/codemirror/view/compare/0.19.46...0.19.47) ##### Bug fixes Fix an issue where block widgets at the start of the viewport could break height computations. ### [`v0.19.46`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​01946-2022-03-03) [Compare Source](https://togithub.com/codemirror/view/compare/0.19.45...0.19.46) ##### Bug fixes Fix a bug where block widgets on the edges of viewports could cause the positioning of content to misalign with the gutter and height computations. Improve cursor height next to widgets. Fix a bug where mapping positions to screen coordinates could return incorred coordinates during composition.
tiangolo/fastapi ### [`v0.75.0`](https://togithub.com/tiangolo/fastapi/releases/0.75.0) [Compare Source](https://togithub.com/tiangolo/fastapi/compare/0.74.1...0.75.0) ##### Features - ✨ Add support for custom `generate_unique_id_function` and docs for generating clients. New docs: [Advanced - Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/). PR [#​4650](https://togithub.com/tiangolo/fastapi/pull/4650) by [@​tiangolo](https://togithub.com/tiangolo).
okonet/lint-staged ### [`v12.3.6`](https://togithub.com/okonet/lint-staged/releases/v12.3.6) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.3.5...v12.3.6) ##### Bug Fixes - kill other running tasks on failure ([#​1117](https://togithub.com/okonet/lint-staged/issues/1117)) ([34fe319](https://togithub.com/okonet/lint-staged/commit/34fe31986201983c33ea2bde41f4b451947b826b)) ### [`v12.3.5`](https://togithub.com/okonet/lint-staged/releases/v12.3.5) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.3.4...v12.3.5) ##### Bug Fixes - search all configs regardless of staged files ([4b605cd](https://togithub.com/okonet/lint-staged/commit/4b605cd3694cc5bfcf6c5a1a2e75c80ef234ab1a))
Microsoft/playwright ### [`v1.20.0`](https://togithub.com/Microsoft/playwright/releases/v1.20.0) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.19.2...v1.20.0) ##### Highlights - New options for methods [`page.screenshot()`](https://playwright.dev/docs/api/class-page#page-screenshot), [`locator.screenshot()`](https://playwright.dev/docs/api/class-locator#locator-screenshot) and [`elementHandle.screenshot()`](https://playwright.dev/docs/api/class-elementhandle#element-handle-screenshot): - Option `animations: "disabled"` rewinds all CSS animations and transitions to a consistent state. - Option `mask: Locator[]` masks given elements, overlaying them with pink `#FF00FF` boxes. - [`expect().toMatchSnapshot()`](https://playwright.dev/docs/test-assertions#screenshot-assertions-to-match-snapshot) now supports anonymous snapshots: when snapshot name is missing, Playwright Test will generate one automatically: ```js expect('Web is Awesome <3').toMatchSnapshot(); ``` - New `maxDiffPixels` and `maxDiffPixelRatio` options for fine-grained screenshot comparison using [`expect().toMatchSnapshot()`](https://playwright.dev/docs/test-assertions#screenshot-assertions-to-match-snapshot): ```js expect(await page.screenshot()).toMatchSnapshot({ maxDiffPixels: 27, // allow no more than 27 different pixels. }); ``` It is most convenient to specify `maxDiffPixels` or `maxDiffPixelRatio` once in [`TestConfig.expect`](https://playwright.dev/docs/api/class-testconfig#test-config-expect). - Playwright Test now adds [`TestConfig.fullyParallel`](https://playwright.dev/docs/api/class-testconfig#test-config-fully-parallel) mode. By default, Playwright Test parallelizes between files. In fully parallel mode, tests inside a single file are also run in parallel. You can also use `--fully-parallel` command line flag. ```ts // playwright.config.ts export default { fullyParallel: true, }; ``` - [`TestProject.grep`](https://playwright.dev/docs/api/class-testproject#test-project-grep) and [`TestProject.grepInvert`](https://playwright.dev/docs/api/class-testproject#test-project-grep-invert) are now configurable per project. For example, you can now configure smoke tests project using `grep`: ```ts // playwright.config.ts export default { projects: [ { name: 'smoke tests', grep: /@​smoke/, }, ], }; ``` - [Trace Viewer](https://playwright.dev/docs/trace-viewer) now shows [API testing requests](https://playwright.dev/docs/test-api-testing). - [`locator.highlight()`](https://playwright.dev/docs/api/class-locator#locator-highlight) visually reveals element(s) for easier debugging. ##### Announcements - We now ship a designated Python docker image `mcr.microsoft.com/playwright/python`. Please switch over to it if you use Python. This is the last release that includes Python inside our javascript `mcr.microsoft.com/playwright` docker image. - v1.20 is the last release to receive WebKit update for macOS 10.15 Catalina. Please update MacOS to keep using latest & greatest WebKit! ##### Browser Versions - Chromium 101.0.4921.0 - Mozilla Firefox 97.0.1 - WebKit 15.4 This version was also tested against the following stable channels: - Google Chrome 99 - Microsoft Edge 99
prettier/prettier ### [`v2.6.0`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#​260) [Compare Source](https://togithub.com/prettier/prettier/compare/2.5.1...2.6.0) [diff](https://togithub.com/prettier/prettier/compare/2.5.1...2.6.0) 🔗 [Release Notes](https://prettier.io/blog/2022/03/16/2.6.0.html)
antfu/vite-plugin-windicss ### [`v1.8.3`](https://togithub.com/antfu/vite-plugin-windicss/releases/v1.8.3) [Compare Source](https://togithub.com/antfu/vite-plugin-windicss/compare/v1.8.2...v1.8.3) ##### Bug Fixes - **svelte:** Match class directives with important ([#​286](https://togithub.com/windicss/vite-plugin-windicss/issues/286)) ([5ef820f](https://togithub.com/windicss/vite-plugin-windicss/commit/5ef820f)) ### [`v1.8.2`](https://togithub.com/antfu/vite-plugin-windicss/compare/v1.8.1...v1.8.2) [Compare Source](https://togithub.com/antfu/vite-plugin-windicss/compare/v1.8.1...v1.8.2)
windicss/windicss ### [`v3.5.1`](https://togithub.com/windicss/windicss/releases/v3.5.1) [Compare Source](https://togithub.com/windicss/windicss/compare/v3.5.0...v3.5.1) ##### Bug Fixes - fix default colors to set renamed colors ([#​721](https://togithub.com/windicss/windicss/issues/721)) ([1521873](https://togithub.com/windicss/windicss/commit/1521873)) - fix not use renamed colors ([82c687c](https://togithub.com/windicss/windicss/commit/82c687c)) ##### Features - add default colors provided by Tailwind CSS v3 ([e0f435b](https://togithub.com/windicss/windicss/commit/e0f435b)) Thanks [@​oekazuma](https://togithub.com/oekazuma)

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: cef6f28c770a6ce62590cc6a328b027098bbb5c0

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

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