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

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 Type Update
@codemirror/autocomplete ^0.19.14 -> ^0.20.0 age adoption passing confidence devDependencies minor
@codemirror/closebrackets ^0.19.1 -> ^0.19.2 age adoption passing confidence devDependencies patch
@codemirror/commands ^0.19.8 -> ^0.20.0 age adoption passing confidence devDependencies minor
@codemirror/fold ^0.19.3 -> ^0.19.4 age adoption passing confidence devDependencies patch
@codemirror/highlight ^0.19.7 -> ^0.19.8 age adoption passing confidence devDependencies patch
@codemirror/lang-python ^0.19.4 -> ^0.20.0 age adoption passing confidence devDependencies minor
@codemirror/language ^0.19.8 -> ^0.20.0 age adoption passing confidence devDependencies minor
@codemirror/search ^0.19.9 -> ^0.20.1 age adoption passing confidence devDependencies minor
@codemirror/state ^0.19.9 -> ^0.20.0 age adoption passing confidence devDependencies minor
@codemirror/view ^0.19.47 -> ^0.20.4 age adoption passing confidence devDependencies minor
@vitejs/plugin-vue ^2.2.4 -> ^2.3.2 age adoption passing confidence devDependencies minor
@vue/test-utils ^2.0.0-rc.18 -> ^2.0.0-rc.21 age adoption passing confidence devDependencies patch
fastapi ==0.75.0 -> ==0.76.0 age adoption passing confidence minor
lint-staged ^12.3.6 -> ^12.4.1 age adoption passing confidence devDependencies minor
playwright-chromium (source) ^1.20.0 -> ^1.21.1 age adoption passing confidence devDependencies minor
prettier (source) ^2.6.0 -> ^2.6.2 age adoption passing confidence devDependencies patch
python 3.10.2-slim-buster -> 3.10.4-slim-buster age adoption passing confidence final patch
semver ^7.3.5 -> ^7.3.7 age adoption passing confidence devDependencies patch
vite ^2.8.6 -> ^2.9.8 age adoption passing confidence devDependencies minor
vite-plugin-windicss ^1.8.3 -> ^1.8.4 age adoption passing confidence devDependencies patch
vue ^3.2.31 -> ^3.2.33 age adoption passing confidence devDependencies patch

Release Notes

codemirror/autocomplete ### [`v0.20.0`](https://togithub.com/codemirror/autocomplete/blob/HEAD/CHANGELOG.md#​0200-2022-04-20) [Compare Source](https://togithub.com/codemirror/autocomplete/compare/0.19.15...0.20.0) ##### Breaking changes `CompletionResult.span` has been renamed to `validFor`, and may now hold a function as well as a regular expression. ##### Bug fixes Remove code that dropped any options beyond the 300th one when matching and sorting option lists. Completion will now apply to all cursors when there are multiple cursors. ##### New features `CompletionResult.update` can now be used to implement quick autocompletion updates in a synchronous way. The [@​codemirror/closebrackets](https://togithub.com/codemirror/closebrackets) package was merged into this one. ### [`v0.19.15`](https://togithub.com/codemirror/autocomplete/blob/HEAD/CHANGELOG.md#​01915-2022-03-23) [Compare Source](https://togithub.com/codemirror/autocomplete/compare/0.19.14...0.19.15) ##### New features The `selectedCompletionIndex` function tells you the position of the currently selected completion. The new `setSelectionCompletion` function creates a state effect that moves the selected completion to a given index. A completion's `info` method may now return null to indicate that no further info is available.
codemirror/closebrackets ### [`v0.19.2`](https://togithub.com/codemirror/closebrackets/blob/HEAD/CHANGELOG.md#​0192-2022-04-01) [Compare Source](https://togithub.com/codemirror/closebrackets/compare/0.19.1...0.19.2) ##### Bug fixes Remove quote characters from the default set of characters before which brackets are closed.
codemirror/commands ### [`v0.20.0`](https://togithub.com/codemirror/commands/blob/HEAD/CHANGELOG.md#​0200-2022-04-20) [Compare Source](https://togithub.com/codemirror/commands/compare/0.19.8...0.20.0) ##### Breaking changes There is no longer a separate `commentKeymap`. Those bindings are now part of `defaultKeymap`. ##### Bug fixes Make `cursorPageUp` and `cursorPageDown` move by window height when the editor is higher than the window. Make sure the default behavior of Home/End is prevented, since it could produce unexpected results on macOS. ##### New features The exports from [@​codemirror/comment](https://togithub.com/codemirror/comment) are now available in this package. The exports from the [@​codemirror/history](https://togithub.com/codemirror/history) package are now available from this package.
codemirror/fold ### [`v0.19.4`](https://togithub.com/codemirror/fold/blob/HEAD/CHANGELOG.md#​0194-2022-04-19) [Compare Source](https://togithub.com/codemirror/fold/compare/0.19.3...0.19.4) ##### Bug fixes Make sure the fold gutter is updated when the syntax tree changes.
codemirror/highlight ### [`v0.19.8`](https://togithub.com/codemirror/highlight/blob/HEAD/CHANGELOG.md#​0198-2022-03-27) [Compare Source](https://togithub.com/codemirror/highlight/compare/0.19.7...0.19.8) ##### New features Highlight styles can now set a `themeType` option to make them only apply to dark or light themed editors.
codemirror/lang-python ### [`v0.20.0`](https://togithub.com/codemirror/lang-python/blob/HEAD/CHANGELOG.md#​0200-2022-04-20) [Compare Source](https://togithub.com/codemirror/lang-python/compare/0.19.5...0.20.0) ##### Bug fixes Add folding information for set and tuple expressions. ### [`v0.19.5`](https://togithub.com/codemirror/lang-python/blob/HEAD/CHANGELOG.md#​0195-2022-04-06) [Compare Source](https://togithub.com/codemirror/lang-python/compare/0.19.4...0.19.5) ##### Bug fixes Make sure \* and \*\* modifiers are highlighted as such, add modifier tag for FormatSpec nodes.
codemirror/language ### [`v0.20.0`](https://togithub.com/codemirror/language/blob/HEAD/CHANGELOG.md#​0200-2022-04-20) [Compare Source](https://togithub.com/codemirror/language/compare/0.19.10...0.20.0) ##### Breaking changes `HighlightStyle.get` is now called `highlightingFor`. `HighlightStyles` no longer function as extensions (to improve tree shaking), and must be wrapped with `syntaxHighlighting` to add to an editor configuration. `Language` objects no longer have a `topNode` property. ##### New features `HighlightStyle` and `defaultHighlightStyle` from the now-removed [@​codemirror/highlight](https://togithub.com/codemirror/highlight) package now live in this package. The new `forceParsing` function can be used to run the parser forward on an editor view. The exports that used to live in [@​codemirror/matchbrackets](https://togithub.com/codemirror/matchbrackets) are now exported from this package. The [@​codemirror/fold](https://togithub.com/codemirror/fold) package has been merged into this one. The exports from the old [@​codemirror/stream-parser](https://togithub.com/codemirror/stream-parser) package now live in this package. ### [`v0.19.10`](https://togithub.com/codemirror/language/blob/HEAD/CHANGELOG.md#​01910-2022-03-31) [Compare Source](https://togithub.com/codemirror/language/compare/0.19.9...0.19.10) ##### Bug fixes Autocompletion may now also trigger automatic indentation on input. ### [`v0.19.9`](https://togithub.com/codemirror/language/blob/HEAD/CHANGELOG.md#​0199-2022-03-30) [Compare Source](https://togithub.com/codemirror/language/compare/0.19.8...0.19.9) ##### Bug fixes Make sure nodes that end at the end of a partial parse aren't treated as valid fold targets. Fix an issue where the parser sometimes wouldn't reuse parsing work done in the background on transactions.
codemirror/search ### [`v0.20.1`](https://togithub.com/codemirror/search/blob/HEAD/CHANGELOG.md#​0201-2022-04-22) [Compare Source](https://togithub.com/codemirror/search/compare/0.20.0...0.20.1) ##### New features It is now possible to disable backslash escapes in search queries with the `literal` option. ### [`v0.20.0`](https://togithub.com/codemirror/search/blob/HEAD/CHANGELOG.md#​0200-2022-04-20) [Compare Source](https://togithub.com/codemirror/search/compare/0.19.10...0.20.0) ##### Bug fixes Make the `wholeWords` option to `highlightSelectionMatches` default to false, as intended. ### [`v0.19.10`](https://togithub.com/codemirror/search/blob/HEAD/CHANGELOG.md#​01910-2022-04-04) [Compare Source](https://togithub.com/codemirror/search/compare/0.19.9...0.19.10) ##### Bug fixes Make sure search matches are highlighted when scrolling new content into view.
codemirror/state ### [`v0.20.0`](https://togithub.com/codemirror/state/blob/HEAD/CHANGELOG.md#​0200-2022-04-20) [Compare Source](https://togithub.com/codemirror/state/compare/0.19.9...0.20.0) ##### Breaking changes The deprecated precedence names `fallback`, `extend`, and `override` were removed from the library. ##### Bug fixes Fix a bug where, if an extension value occurs multiple times, its lowest, rather than highest precedence is used. Fix an issue where facets with computed inputs would unneccesarily have their outputs recreated on state reconfiguration. Fix a bug in the order in which new values for state fields and facets were computed, which could cause dynamic facets to hold the wrong value in some situations. ##### New features The exports from [@​codemirror/rangeset](https://togithub.com/codemirror/rangeset) now live in this package. The exports from [@​codemirror/text](https://togithub.com/codemirror/text) now live in this package.
codemirror/view ### [`v0.20.4`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​0204-2022-05-03) [Compare Source](https://togithub.com/codemirror/view/compare/0.20.3...0.20.4) ##### Bug fixes Prevent Mac-style behavior of inserting a period when the user inserts two spaces. Fix an issue where the editor would sometimes not restore the DOM selection when refocused with a selection identical to the one it held when it lost focus. ### [`v0.20.3`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​0203-2022-04-27) [Compare Source](https://togithub.com/codemirror/view/compare/0.20.2...0.20.3) ##### Bug fixes Fix a bug where the input handling could crash on repeated (or held) backspace presses on Chrome Android. ### [`v0.20.2`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​0202-2022-04-22) [Compare Source](https://togithub.com/codemirror/view/compare/0.20.1...0.20.2) ##### New features The new `hideOn` option to `hoverTooltip` allows more fine-grained control over when the tooltip should hide. ### [`v0.20.1`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​0201-2022-04-20) [Compare Source](https://togithub.com/codemirror/view/compare/0.20.0...0.20.1) ##### Bug fixes Remove debug statements that accidentally made it into 0.20.0. Fix a regression in `moveVertically`. ### [`v0.20.0`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​0200-2022-04-20) [Compare Source](https://togithub.com/codemirror/view/compare/0.19.48...0.20.0) ##### Breaking changes The deprecated interfaces `blockAtHeight`, `visualLineAtHeight`, `viewportLines`, `visualLineAt`, `scrollPosIntoView`, `scrollTo`, and `centerOn` were removed from the library. All decorations are now provided through `EditorView.decorations`, and are part of a single precedence ordering. Decoration sources that need access to the view are provided as functions. Atomic ranges are now specified through a facet (`EditorView.atomicRanges`). Scroll margins are now specified through a facet (`EditorView.scrollMargins`). Plugin fields no longer exist in the library (and are replaced by facets holding function values). This package no longer re-exports the Range type from [@​codemirror/state](https://togithub.com/codemirror/state). ##### Bug fixes Fix a bug where zero-length block widgets could cause `viewportLineBlocks` to contain overlapping ranges. ##### New features The new `perLineTextDirection` facet configures whether the editor reads text direction per line, or uses a single direction for the entire editor. `EditorView.textDirectionAt` returns the direction around a given position. `rectangularSelection` and `crosshairCursor` from [@​codemirror/rectangular-selection](https://togithub.com/codemirror/rectangular-selection) were merged into this package. This package now exports the tooltip functionality that used to live in [@​codemirror/tooltip](https://togithub.com/codemirror/tooltip). The exports from the old [@​codemirror/panel](https://togithub.com/codemirror/panel) package are now available from this package. The exports from the old [@​codemirror/gutter](https://togithub.com/codemirror/gutter) package are now available from this package. ### [`v0.19.48`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#​01948-2022-03-30) [Compare Source](https://togithub.com/codemirror/view/compare/0.19.47...0.19.48) ##### Bug fixes Fix an issue where DOM syncing could crash when a DOM node was moved from a parent to a child node (via widgets reusing existing nodes). To avoid interfering with things like a vim mode too much, the editor will now only activate the tab-to-move-focus escape hatch after an escape press that wasn't handled by an event handler. Make sure the view measures itself before the page is printed. Tweak types of view plugin defining functions to avoid TypeScript errors when the plugin value doesn't have any of the interface's properties.
vitejs/vite (@​vitejs/plugin-vue) ### [`v2.3.2`](https://togithub.com/vitejs/vite/blob/HEAD/packages/plugin-vue/CHANGELOG.md#small232-2022-05-04-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.3.1...v2.3.2) - feat: import ts with .js in vue ([#​7998](https://togithub.com/vitejs/vite/issues/7998)) ([9974094](https://togithub.com/vitejs/vite/commit/9974094)), closes [#​7998](https://togithub.com/vitejs/vite/issues/7998) - refactor(plugin-vue): remove querystring import ([#​7997](https://togithub.com/vitejs/vite/issues/7997)) ([f3d15f1](https://togithub.com/vitejs/vite/commit/f3d15f1)), closes [#​7997](https://togithub.com/vitejs/vite/issues/7997) - chore(deps): update all non-major dependencies ([#​7780](https://togithub.com/vitejs/vite/issues/7780)) ([eba9d05](https://togithub.com/vitejs/vite/commit/eba9d05)), closes [#​7780](https://togithub.com/vitejs/vite/issues/7780) ### [`v2.3.1`](https://togithub.com/vitejs/vite/blob/HEAD/packages/plugin-vue/CHANGELOG.md#small231-2022-03-30-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.3.0...v2.3.1) - chore(plugin-vue): revert [#​7527](https://togithub.com/vitejs/vite/issues/7527), lower vite peer dep ([447bbeb](https://togithub.com/vitejs/vite/commit/447bbeb)), closes [#​7527](https://togithub.com/vitejs/vite/issues/7527) ### [`v2.3.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/plugin-vue/CHANGELOG.md#​230-2022-03-30) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.2.4...v2.3.0) - chore(plugin-vue): bump vite peer dep to 2.9.0 ([#​7472](https://togithub.com/vitejs/vite/issues/7472)) ([12fd1d9](https://togithub.com/vitejs/vite/commit/12fd1d9)), closes [#​7472](https://togithub.com/vitejs/vite/issues/7472) - feat(css): css.devSourcemap option ([#​7471](https://togithub.com/vitejs/vite/issues/7471)) ([57f14cb](https://togithub.com/vitejs/vite/commit/57f14cb)), closes [#​7471](https://togithub.com/vitejs/vite/issues/7471) - fix(plugin-vue): respect **VUE_PROD_DEVTOOLS** setting ([#​4984](https://togithub.com/vitejs/vite/issues/4984)) ([90e812a](https://togithub.com/vitejs/vite/commit/90e812a)), closes [#​4984](https://togithub.com/vitejs/vite/issues/4984)
vuejs/test-utils ### [`v2.0.0-rc.21`](https://togithub.com/vuejs/test-utils/releases/v2.0.0-rc.21) [Compare Source](https://togithub.com/vuejs/test-utils/compare/v2.0.0-rc.20...v2.0.0-rc.21) This is the final release candidate, unless something major comes up. We will move to 2.0.0 next release. - [chore: Bump vue 3.2.33](https://togithub.com/vuejs/test-utils/pull/1442) - [chore: Bump vue 3.2.33](https://togithub.com/vuejs/test-utils/pull/1442) - [chore: add test](https://togithub.com/vuejs/test-utils/pull/1441) - [fix: forward Ref prop on mount](https://togithub.com/vuejs/test-utils/commit/7059cff968bff33b9fc290fe77984afd3fc3f4b2) - [fix: disable stubs for built-in components on shallow](https://togithub.com/vuejs/test-utils/commit/eb8284530eacd36ce5435fccffe9d45a761b503f) ### [`v2.0.0-rc.20`](https://togithub.com/vuejs/test-utils/releases/v2.0.0-rc.20) [Compare Source](https://togithub.com/vuejs/test-utils/compare/v2.0.0-rc.19...v2.0.0-rc.20) #### What's Changed - fix: make imports in wrapperLike relative (again) by [@​catrope](https://togithub.com/catrope) in [https://github.com/vuejs/test-utils/pull/1401](https://togithub.com/vuejs/test-utils/pull/1401) - fix: remove compilerOptions from config by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/1408](https://togithub.com/vuejs/test-utils/pull/1408) - docs: add RouterLinkStub to api docs by [@​aethr](https://togithub.com/aethr) in [https://github.com/vuejs/test-utils/pull/1391](https://togithub.com/vuejs/test-utils/pull/1391) - chore: bump to vue v3.2.32 by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/1418](https://togithub.com/vuejs/test-utils/pull/1418) (fixes bug in `shallowMount`) #### New Contributors - [@​celiavelmar](https://togithub.com/celiavelmar) made their first contribution in [https://github.com/vuejs/test-utils/pull/1395](https://togithub.com/vuejs/test-utils/pull/1395) - [@​catrope](https://togithub.com/catrope) made their first contribution in [https://github.com/vuejs/test-utils/pull/1401](https://togithub.com/vuejs/test-utils/pull/1401) **Full Changelog**: https://github.com/vuejs/test-utils/compare/v2.0.0-rc.19...v2.0.0-rc.20 ### [`v2.0.0-rc.19`](https://togithub.com/vuejs/test-utils/releases/v2.0.0-rc.19) [Compare Source](https://togithub.com/vuejs/test-utils/compare/v2.0.0-rc.18...v2.0.0-rc.19) Several fixes. We will move from release candidate soon, hopefully this will be the last release candidate, unless any bugs are reported! ##### Features [feat: Add createStubs plugin hook](https://togithub.com/vuejs/test-utils/commit/2abdbb80a4e15c0fb04a30f07d1c4c48872a97c8) [feat: support custom class component](https://togithub.com/vuejs/test-utils/commit/54c27fcfd47d4519722d96bb2cac30f787058456) ##### Fixes [fix: added missing find overrides](https://togithub.com/vuejs/test-utils/commit/17d5984ce7149eba89f1169f0b5d8da908673bc8) [fix: support functional component props](https://togithub.com/vuejs/test-utils/commit/2872e51a8e56b8f7bd7786c0856d8351a489d52c) [fix: do not match component name on getter that returns component](https://togithub.com/vuejs/test-utils/commit/c3046b6d89862713167dd1e8557236d6e438f0ca) [fix: static imports](https://togithub.com/vuejs/test-utils/commit/54359e5debfaa75bedb3f913b90f92cc30004158) [fix: findAll root nodes when using render function](https://togithub.com/vuejs/test-utils/commit/77994a08c70e4163fd70bb9dd4195d5d015d4849) [fix: stop globalProperties config leak](https://togithub.com/vuejs/test-utils/commit/e5a331c84b9341fe3568d8466a34cb85b8a5b612) [fix: add relative imports in wrapperLike interface](https://togithub.com/vuejs/test-utils/commit/8aa45a6c2f95969f819daf5c7aedaa551c019890) [fix: add methods from baseWrapper to the wrapperLike interface](https://togithub.com/vuejs/test-utils/commit/9ece6290fc6b50d201bd8b26d23e2f55089b0902) [fix(type): add undefined type to attributes() for missing key](https://togithub.com/vuejs/test-utils/commit/5666ca4718e3f1672709cc42671165fefce7140d) [#​1398](https://togithub.com/vuejs/test-utils/issues/1398) [fix(find): find element inside suspense with multi root elements](https://togithub.com/vuejs/test-utils/commit/794b192c964e8418acf49a1f71bdf1d460b9ac2a) [#​1397](https://togithub.com/vuejs/test-utils/issues/1397) [fix(find): find and findAll should not find itself on DOM wrappers](https://togithub.com/vuejs/test-utils/commit/19232231bde7199738b834d5e55d7973d5acbbfa) [#​1392](https://togithub.com/vuejs/test-utils/issues/1392)
tiangolo/fastapi ### [`v0.76.0`](https://togithub.com/tiangolo/fastapi/releases/0.76.0) [Compare Source](https://togithub.com/tiangolo/fastapi/compare/0.75.2...0.76.0) ##### Upgrades - ⬆ Upgrade Starlette from 0.17.1 to 0.18.0. PR [#​4483](https://togithub.com/tiangolo/fastapi/pull/4483) by [@​Kludex](https://togithub.com/Kludex). ##### Internal - 👥 Update FastAPI People. PR [#​4847](https://togithub.com/tiangolo/fastapi/pull/4847) by [@​github-actions\[bot\]](https://togithub.com/apps/github-actions). - 🔧 Add Budget Insight sponsor. PR [#​4824](https://togithub.com/tiangolo/fastapi/pull/4824) by [@​tiangolo](https://togithub.com/tiangolo). - 🍱 Update sponsor, ExoFlare badge. PR [#​4822](https://togithub.com/tiangolo/fastapi/pull/4822) by [@​tiangolo](https://togithub.com/tiangolo). - 🔧 Update sponsors, enable Dropbase again, update TalkPython link. PR [#​4821](https://togithub.com/tiangolo/fastapi/pull/4821) by [@​tiangolo](https://togithub.com/tiangolo). ### [`v0.75.2`](https://togithub.com/tiangolo/fastapi/releases/0.75.2) [Compare Source](https://togithub.com/tiangolo/fastapi/compare/0.75.1...0.75.2) This release includes upgrades to third-party packages that handle security issues. Although there's a chance these issues don't affect you in particular, please upgrade as soon as possible. ##### Fixes - ✅ Fix new/recent tests with new fixed `ValidationError` JSON Schema. PR [#​4806](https://togithub.com/tiangolo/fastapi/pull/4806) by [@​tiangolo](https://togithub.com/tiangolo). - 🐛 Fix JSON Schema for `ValidationError` at field `loc`. PR [#​3810](https://togithub.com/tiangolo/fastapi/pull/3810) by [@​dconathan](https://togithub.com/dconathan). - 🐛 Fix support for prefix on APIRouter WebSockets. PR [#​2640](https://togithub.com/tiangolo/fastapi/pull/2640) by [@​Kludex](https://togithub.com/Kludex). ##### Upgrades - ⬆️ Update ujson ranges for CVE-2021-45958. PR [#​4804](https://togithub.com/tiangolo/fastapi/pull/4804) by [@​tiangolo](https://togithub.com/tiangolo). - ⬆️ Upgrade dependencies upper range for extras "all". PR [#​4803](https://togithub.com/tiangolo/fastapi/pull/4803) by [@​tiangolo](https://togithub.com/tiangolo). - ⬆ Upgrade Swagger UI - swagger-ui-dist@4. This handles a security issue in Swagger UI itself where it could be possible to inject HTML into Swagger UI. Please upgrade as soon as you can, in particular if you expose your Swagger UI (`/docs`) publicly to non-expert users. PR [#​4347](https://togithub.com/tiangolo/fastapi/pull/4347) by [@​RAlanWright](https://togithub.com/RAlanWright). ##### Internal - 🔧 Update sponsors, add: ExoFlare, Ines Course; remove: Dropbase, Vim.so, Calmcode; update: Striveworks, TalkPython and TestDriven.io. PR [#​4805](https://togithub.com/tiangolo/fastapi/pull/4805) by [@​tiangolo](https://togithub.com/tiangolo). - ⬆️ Upgrade Codecov GitHub Action. PR [#​4801](https://togithub.com/tiangolo/fastapi/pull/4801) by [@​tiangolo](https://togithub.com/tiangolo). ### [`v0.75.1`](https://togithub.com/tiangolo/fastapi/releases/0.75.1) [Compare Source](https://togithub.com/tiangolo/fastapi/compare/0.75.0...0.75.1) ##### Translations - 🌐 Start Dutch translations. PR [#​4703](https://togithub.com/tiangolo/fastapi/pull/4703) by [@​tiangolo](https://togithub.com/tiangolo). - 🌐 Start Persian/Farsi translations. PR [#​4243](https://togithub.com/tiangolo/fastapi/pull/4243) by [@​aminalaee](https://togithub.com/aminalaee). - ✏ Reword sentence about handling errors. PR [#​1993](https://togithub.com/tiangolo/fastapi/pull/1993) by [@​khuhroproeza](https://togithub.com/khuhroproeza). ##### Internal - 👥 Update FastAPI People. PR [#​4752](https://togithub.com/tiangolo/fastapi/pull/4752) by [@​github-actions\[bot\]](https://togithub.com/apps/github-actions). - ➖ Temporarily remove typer-cli from dependencies and upgrade Black to unblock Pydantic CI. PR [#​4754](https://togithub.com/tiangolo/fastapi/pull/4754) by [@​tiangolo](https://togithub.com/tiangolo). - 🔧 Add configuration to notify Dutch translations. PR [#​4702](https://togithub.com/tiangolo/fastapi/pull/4702) by [@​tiangolo](https://togithub.com/tiangolo). - 👥 Update FastAPI People. PR [#​4699](https://togithub.com/tiangolo/fastapi/pull/4699) by [@​github-actions\[bot\]](https://togithub.com/apps/github-actions). - 🐛 Fix FastAPI People generation to include missing file in commit. PR [#​4695](https://togithub.com/tiangolo/fastapi/pull/4695) by [@​tiangolo](https://togithub.com/tiangolo). - 🔧 Update Classiq sponsor links. PR [#​4688](https://togithub.com/tiangolo/fastapi/pull/4688) by [@​tiangolo](https://togithub.com/tiangolo). - 🔧 Add Classiq sponsor. PR [#​4671](https://togithub.com/tiangolo/fastapi/pull/4671) by [@​tiangolo](https://togithub.com/tiangolo). - 📝 Add Jina's QA Bot to the docs to help people that want to ask quick questions. PR [#​4655](https://togithub.com/tiangolo/fastapi/pull/4655) by [@​tiangolo](https://togithub.com/tiangolo) based on original PR [#​4626](https://togithub.com/tiangolo/fastapi/pull/4626) by [@​hanxiao](https://togithub.com/hanxiao).
okonet/lint-staged ### [`v12.4.1`](https://togithub.com/okonet/lint-staged/releases/v12.4.1) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.4.0...v12.4.1) ##### Bug Fixes - correctly handle symlinked config files ([b3f63ec](https://togithub.com/okonet/lint-staged/commit/b3f63ec43c04158e0ba00f541aa8ffb609d037d9)) ### [`v12.4.0`](https://togithub.com/okonet/lint-staged/releases/v12.4.0) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.3.8...v12.4.0) ##### Bug Fixes - handle empty input by returning empty array from `parseGitZOutput` ([a118817](https://togithub.com/okonet/lint-staged/commit/a118817189a5b41168179fe7268903b1d7f4413a)) - limit configuration discovery to cwd ([d8fdf1d](https://togithub.com/okonet/lint-staged/commit/d8fdf1d9232fde6d65e6b1f4313edbf8d32f9dcb)) - restore functionality of parent globs for a single configuration file ([877ab4c](https://togithub.com/okonet/lint-staged/commit/877ab4cc66dfa51f5d8d14c89aeadc3ea41a1916)) ##### Features - expose `--max-arg-length` cli option ([e8291b0](https://togithub.com/okonet/lint-staged/commit/e8291b03fa3f3210795b808f40b9a11968f2d988)) ### [`v12.3.8`](https://togithub.com/okonet/lint-staged/releases/v12.3.8) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.3.7...v12.3.8) ##### Bug Fixes - avoid passing unexpected arguments from forEach to process.kill() ([1b1f0e4](https://togithub.com/okonet/lint-staged/commit/1b1f0e4f529dbcb5f73ab7d49c5f7908c3b8a866)) - clear execution interruption interval on first catch ([46952cb](https://togithub.com/okonet/lint-staged/commit/46952cb0306bb5b54d839f63aecff7288389b195)) ### [`v12.3.7`](https://togithub.com/okonet/lint-staged/releases/v12.3.7) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v12.3.6...v12.3.7) ##### Bug Fixes - improve renderer logic for `--silent` and `FORCE_COLOR` settings ([d327873](https://togithub.com/okonet/lint-staged/commit/d327873b1c0b6fbdeb6fd276e523043d51d6de37))
Microsoft/playwright ### [`v1.21.1`](https://togithub.com/Microsoft/playwright/releases/v1.21.1) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.21.0...v1.21.1) #### Highlights This patch includes the following bug fixes: [https://github.com/microsoft/playwright/pull/13597](https://togithub.com/microsoft/playwright/pull/13597) - \[BUG] fullyParallel created too many workers, slowing down test run[https://github.com/microsoft/playwright/issues/13530](https://togithub.com/microsoft/playwright/issues/13530)0 - \[REGRESSION]: Pull request [#​12877](https://togithub.com/Microsoft/playwright/issues/12877) prevents the library from being used on any linux distro that is not Ubuntu #### Browser Versions - Chromium 101.0.4951.26 - Mozilla Firefox 98.0.2 - WebKit 15.4 This version was also tested against the following stable channels: - Google Chrome 100 - Microsoft Edge 100 ### [`v1.21.0`](https://togithub.com/Microsoft/playwright/releases/v1.21.0) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.20.2...v1.21.0) ##### Highlights - New **experimental** role selectors that allow selecting elements by their [ARIA role](https://www.w3.org/TR/wai-aria-1.2/#roles), [ARIA attributes](https://www.w3.org/TR/wai-aria-1.2/#aria-attributes) and [accessible name](https://w3c.github.io/accname/#dfn-accessible-name). ```js // Click a button with accessible name "log in" await page.click('role=button[name="log in"]') ``` To use role selectors, make sure to pass `PLAYWRIGHT_EXPERIMENTAL_FEATURES=1` environment variable: ```js // playwright.config.js process.env.PLAYWRIGHT_EXPERIMENTAL_FEATURES = '1'; module.exports = { /* ... */ }; ``` Read more in [our documentation](https://playwright.dev/docs/selectors#role-selector). - New `scale` option in [`Page.screenshot`](https://playwright.dev/docs/api/class-page#page-screenshot) for smaller sized screenshots. - New `caret` option in [`Page.screenshot`](https://playwright.dev/docs/api/class-page#page-screenshot) to control text caret. Defaults to `"hide"`. - New method `expect.poll` to wait for an arbitrary condition: ```js // Poll the method until it returns an expected result. await expect.poll(async () => { const response = await page.request.get('https://api.example.com'); return response.status(); }).toBe(200); ``` `expect.poll` supports most synchronous matchers, like `.toBe()`, `.toContain()`, etc. Read more in [our documentation](https://playwright.dev/docs/test-assertions#polling). ##### Behavior Changes - ESM support when running TypeScript tests is now enabled by default. The `PLAYWRIGHT_EXPERIMENTAL_TS_ESM` env variable is no longer required. - The `mcr.microsoft.com/playwright` docker image no longer contains Python. Please use `mcr.microsoft.com/playwright/python` as a Playwright-ready docker image with pre-installed Python. - Playwright now supports large file uploads (100s of MBs) via [`Locator.setInputFiles`](https://playwright.dev/docs/api/class-locator#locator-set-input-files) API. ##### Browser Versions - Chromium 101.0.4951.26 - Mozilla Firefox 98.0.2 - WebKit 15.4 This version was also tested against the following stable channels: - Google Chrome 100 - Microsoft Edge 100 ### [`v1.20.2`](https://togithub.com/Microsoft/playwright/releases/v1.20.2) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.20.1...v1.20.2) #### Highlights This patch includes the following bug fixes: [https://github.com/microsoft/playwright/issues/13078](https://togithub.com/microsoft/playwright/issues/13078) - \[BUG] Extension required when importing other files with type="module"[https://github.com/microsoft/playwright/issues/13099](https://togithub.com/microsoft/playwright/issues/13099)9 - \[BUG] beforeAll is called before each test (fullyParallel[https://github.com/microsoft/playwright/issues/13204](https://togithub.com/microsoft/playwright/issues/13204)04 - \[BUG] mask stalls the screenshot #### 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 ### [`v1.20.1`](https://togithub.com/Microsoft/playwright/releases/v1.20.1) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.20.0...v1.20.1) #### Highlights This patch includes the following bug fixes: [https://github.com/microsoft/playwright/issues/12711](https://togithub.com/microsoft/playwright/issues/12711) - \[REGRESSION] Page.screenshot hangs on some sites[https://github.com/microsoft/playwright/issues/12807](https://togithub.com/microsoft/playwright/issues/12807)7 - \[BUG] Cookies get assigned before fulfilling a respons[https://github.com/microsoft/playwright/issues/12814](https://togithub.com/microsoft/playwright/issues/12814)14 - \[Question] how to use expect.any in playwrig[https://github.com/microsoft/playwright/issues/12821](https://togithub.com/microsoft/playwright/issues/12821)821 - \[BUG] Chromium: Cannot click, element intercepts pointer eve[https://github.com/microsoft/playwright/issues/12836](https://togithub.com/microsoft/playwright/issues/12836)2836 - \[REGRESSION]: Tests not detected as ES module in v[https://github.com/microsoft/playwright/issues/12862](https://togithub.com/microsoft/playwright/issues/12862)12862 - \[Feature] Allow to use toMatchSnapshot for file formats other than txt (e.g.[https://github.com/microsoft/playwright/issues/12887](https://togithub.com/microsoft/playwright/issues/12887)/12887 - \[BUG] Locator.count() with \_vue selector wit[https://github.com/microsoft/playwright/issues/12940](https://togithub.com/microsoft/playwright/issues/12940)es/12940 - \[BUG] npm audit - High Severity vulnerability in json5 package forcing to install Playwrigh[https://github.com/microsoft/playwright/issues/12974](https://togithub.com/microsoft/playwright/issues/12974)ues/12974 - \[BUG] Regression - chromium browser closes during test or debugging session on macos #### 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.2`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#​262) [Compare Source](https://togithub.com/prettier/prettier/compare/2.6.1...2.6.2) [diff](https://togithub.com/prettier/prettier/compare/2.6.1...2.6.2) ##### Fix LESS/SCSS format error ([#​12536](https://togithub.com/prettier/prettier/pull/12536) by [@​fisker](https://togithub.com/fisker)) ```less // Input .background-gradient(@​cut) { background: linear-gradient( to right, @​white 0%, @​white (@​cut - 0.01%), @​portal-background @​cut, @​portal-background 100% ); } // Prettier 2.6.1 TypeError: Cannot read properties of undefined (reading 'endOffset') // Prettier 2.6.2 .background-gradient(@​cut) { background: linear-gradient( to right, @​white 0%, @​white (@​cut - 0.01%), @​portal-background @​cut, @​portal-background 100% ); } ``` ##### Update `meriyah` to fix several bugs ([#​12567](https://togithub.com/prettier/prettier/pull/12567) by [@​fisker](https://togithub.com/fisker), fixes in [`meriyah`](https://togithub.com/meriyah/meriyah/) by [@​3cp](https://togithub.com/3cp)) Fixes bugs when parsing following valid code: ```js foo(await bar()); ``` ```js const regex = /.*/ms; ``` ```js const element =

{/w/.test(s)}

; ``` ```js class A extends B { #privateMethod() { super.method(); } } ``` ### [`v2.6.1`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#​261) [Compare Source](https://togithub.com/prettier/prettier/compare/2.6.0...2.6.1) [diff](https://togithub.com/prettier/prettier/compare/2.6.0...2.6.1) ##### Ignore `loglevel` when printing information ([#​12477](https://togithub.com/prettier/prettier/pull/12477) by [@​fisker](https://togithub.com/fisker)) ```bash ```
npm/node-semver ### [`v7.3.7`](https://togithub.com/npm/node-semver/blob/HEAD/CHANGELOG.md#​737-httpsgithubcomnpmnode-semvercomparev736v737-2022-04-11) [Compare Source](https://togithub.com/npm/node-semver/compare/v7.3.6...v7.3.7) ### [`v7.3.6`](https://togithub.com/npm/node-semver/blob/HEAD/CHANGELOG.md#​736-httpsgithubcomnpmnode-semvercomparev735v736-2022-04-05) [Compare Source](https://togithub.com/npm/node-semver/compare/v7.3.5...v7.3.6)
vitejs/vite (vite) ### [`v2.9.8`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small298-2022-05-04-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.9.7...v2.9.8) - fix: inline js and css paths for virtual html ([#​7993](https://togithub.com/vitejs/vite/issues/7993)) ([d49e3fb](https://togithub.com/vitejs/vite/commit/d49e3fb)), closes [#​7993](https://togithub.com/vitejs/vite/issues/7993) - fix: only handle merge ssr.noExternal ([#​8003](https://togithub.com/vitejs/vite/issues/8003)) ([642d65b](https://togithub.com/vitejs/vite/commit/642d65b)), closes [#​8003](https://togithub.com/vitejs/vite/issues/8003) - fix: optimized processing folder renaming in win (fix [#​7939](https://togithub.com/vitejs/vite/issues/7939)) ([#​8019](https://togithub.com/vitejs/vite/issues/8019)) ([e5fe1c6](https://togithub.com/vitejs/vite/commit/e5fe1c6)), closes [#​7939](https://togithub.com/vitejs/vite/issues/7939) [#​8019](https://togithub.com/vitejs/vite/issues/8019) - fix(css): do not clean id when passing to postcss (fix [#​7822](https://togithub.com/vitejs/vite/issues/7822)) ([#​7827](https://togithub.com/vitejs/vite/issues/7827)) ([72f17f8](https://togithub.com/vitejs/vite/commit/72f17f8)), closes [#​7822](https://togithub.com/vitejs/vite/issues/7822) [#​7827](https://togithub.com/vitejs/vite/issues/7827) - fix(css): var in image-set ([#​7921](https://togithub.com/vitejs/vite/issues/7921)) ([e96b908](https://togithub.com/vitejs/vite/commit/e96b908)), closes [#​7921](https://togithub.com/vitejs/vite/issues/7921) - fix(ssr): allow ssrTransform to parse hashbang ([#​8005](https://togithub.com/vitejs/vite/issues/8005)) ([6420ba0](https://togithub.com/vitejs/vite/commit/6420ba0)), closes [#​8005](https://togithub.com/vitejs/vite/issues/8005) - feat: import ts with .js in vue ([#​7998](https://togithub.com/vitejs/vite/issues/7998)) ([9974094](https://togithub.com/vitejs/vite/commit/9974094)), closes [#​7998](https://togithub.com/vitejs/vite/issues/7998) - chore: remove maybeVirtualHtmlSet ([#​8010](https://togithub.com/vitejs/vite/issues/8010)) ([e85164e](https://togithub.com/vitejs/vite/commit/e85164e)), closes [#​8010](https://togithub.com/vitejs/vite/issues/8010) ### [`v2.9.7`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small297-2022-05-02-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.9.6...v2.9.7) - chore: update license ([d58c030](https://togithub.com/vitejs/vite/commit/d58c030)) - chore(css): catch postcss config error (fix [#​2793](https://togithub.com/vitejs/vite/issues/2793)) ([#​7934](https://togithub.com/vitejs/vite/issues/7934)) ([7f535ac](https://togithub.com/vitejs/vite/commit/7f535ac)), closes [#​2793](https://togithub.com/vitejs/vite/issues/2793) [#​7934](https://togithub.com/vitejs/vite/issues/7934) - chore(deps): update all non-major dependencies ([#​7949](https://togithub.com/vitejs/vite/issues/7949)) ([b877d30](https://togithub.com/vitejs/vite/commit/b877d30)), closes [#​7949](https://togithub.com/vitejs/vite/issues/7949) - fix: inject esbuild helpers in IIFE and UMD wrappers ([#​7948](https://togithub.com/vitejs/vite/issues/7948)) ([f7d2d71](https://togithub.com/vitejs/vite/commit/f7d2d71)), closes [#​7948](https://togithub.com/vitejs/vite/issues/7948) - fix: inline css hash ([#​7974](https://togithub.com/vitejs/vite/issues/7974)) ([f6ae60d](https://togithub.com/vitejs/vite/commit/f6ae60d)), closes [#​7974](https://togithub.com/vitejs/vite/issues/7974) - fix: inline style hmr, transform style code inplace ([#​7869](https://togithub.com/vitejs/vite/issues/7869)) ([a30a548](https://togithub.com/vitejs/vite/commit/a30a548)), closes [#​7869](https://togithub.com/vitejs/vite/issues/7869) - fix: use NODE_ENV in optimizer ([#​7673](https://togithub.com/vitejs/vite/issues/7673)) ([50672e4](https://togithub.com/vitejs/vite/commit/50672e4)), closes [#​7673](https://togithub.com/vitejs/vite/issues/7673) - fix(css): clean comments before hoist at rules ([#​7924](https://togithub.com/vitejs/vite/issues/7924)) ([e48827f](https://togithub.com/vitejs/vite/commit/e48827f)), closes [#​7924](https://togithub.com/vitejs/vite/issues/7924) - fix(css): dynamic import css in package fetches removed js (fixes [#​7955](https://togithub.com/vitejs/vite/issues/7955), [#​6823](https://togithub.com/vitejs/vite/issues/6823)) ([#​7969](https://togithub.com/vitejs/vite/issues/7969)) ([025eebf](https://togithub.com/vitejs/vite/commit/025eebf)), closes [#​7955](https://togithub.com/vitejs/vite/issues/7955) [#​6823](https://togithub.com/vitejs/vite/issues/6823) [#​7969](https://togithub.com/vitejs/vite/issues/7969) - fix(css): inline css module when ssr, minify issue (fix [#​5471](https://togithub.com/vitejs/vite/issues/5471)) ([#​7807](https://togithub.com/vitejs/vite/issues/7807)) ([cf8a48a](https://togithub.com/vitejs/vite/commit/cf8a48a)), closes [#​5471](https://togithub.com/vitejs/vite/issues/5471) [#​7807](https://togithub.com/vitejs/vite/issues/7807) - fix(css): sourcemap crash with postcss ([#​7982](https://togithub.com/vitejs/vite/issues/7982)) ([7f9f8f1](https://togithub.com/vitejs/vite/commit/7f9f8f1)), closes [#​7982](https://togithub.com/vitejs/vite/issues/7982) - fix(css): support postcss.config.ts ([#​7935](https://togithub.com/vitejs/vite/issues/7935)) ([274c10e](https://togithub.com/vitejs/vite/commit/274c10e)), closes [#​7935](https://togithub.com/vitejs/vite/issues/7935) - fix(ssr): failed ssrLoadModule call throws same error ([#​7177](https://togithub.com/vitejs/vite/issues/7177)) ([891e7fc](https://togithub.com/vitejs/vite/commit/891e7fc)), closes [#​7177](https://togithub.com/vitejs/vite/issues/7177) - fix(worker): import.meta.\* ([#​7706](https://togithub.com/vitejs/vite/issues/7706)) ([b092697](https://togithub.com/vitejs/vite/commit/b092697)), closes [#​7706](https://togithub.com/vitejs/vite/issues/7706) - docs: `server.origin` config trailing slash (fix [#​6622](https://togithub.com/vitejs/vite/issues/6622)) ([#​7865](https://togithub.com/vitejs/vite/issues/7865)) ([5c1ee5a](https://togithub.com/vitejs/vite/commit/5c1ee5a)), closes [#​6622](https://togithub.com/vitejs/vite/issues/6622) [#​7865](https://togithub.com/vitejs/vite/issues/7865) ### [`v2.9.6`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small296-2022-04-26-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v2.9.5...v2.9.6) - fix: `apply` condition skipped for nested plugins ([#​7741](https://togithub.com/vitejs/vite/issues/7741)) ([1f2ca53](https://togithub.com/vitejs/vite/commit/1f2ca53)), closes [#​7741](https://togithub.com/vitejs/vite/issues/7741) - fix: clean string regexp ([#​7871](https://togithub

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!

Name Link
Latest commit 5173d659e4cdf371674669c9b8ccba40fedf80a6
Latest deploy log https://app.netlify.com/sites/python-playground/deploys/62746b80f348b7000a65dff0
Deploy Preview https://deploy-preview-101--python-playground.netlify.app/
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.