fabric-ds / elements

https://elements.fabric-ds.io
1 stars 3 forks source link

chore(deps): update dev dependencies #142

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.21.4 -> 7.21.5 age adoption passing confidence
esbuild 0.17.14 -> 0.17.18 age adoption passing confidence
eslint (source) 8.37.0 -> 8.39.0 age adoption passing confidence
fastify (source) 4.15.0 -> 4.17.0 age adoption passing confidence
lit-element (source) 3.3.0 -> 3.3.2 age adoption passing confidence
lit-html (source) 2.7.0 -> 2.7.3 age adoption passing confidence
playwright (source) 1.32.1 -> 1.33.0 age adoption passing confidence
postcss (source) 8.4.21 -> 8.4.23 age adoption passing confidence
prettier (source) 2.8.7 -> 2.8.8 age adoption passing confidence
vite (source) 3.2.5 -> 3.2.6 age adoption passing confidence

Release Notes

babel/babel ### [`v7.21.5`](https://togithub.com/babel/babel/blob/HEAD/CHANGELOG.md#v7215-2023-04-28) [Compare Source](https://togithub.com/babel/babel/compare/v7.21.4...v7.21.5) ##### :eyeglasses: Spec Compliance - `babel-generator`, `babel-parser`, `babel-types` - [#​15539](https://togithub.com/babel/babel/pull/15539) fix: Remove `mixins` and `implements` for `DeclareInterface` and `InterfaceDeclaration` ([@​liuxingbaoyu](https://togithub.com/liuxingbaoyu)) ##### :bug: Bug Fix - `babel-core`, `babel-generator`, `babel-plugin-transform-modules-commonjs`, `babel-plugin-transform-react-jsx` - [#​15515](https://togithub.com/babel/babel/pull/15515) fix: `)` position with `createParenthesizedExpressions` ([@​liuxingbaoyu](https://togithub.com/liuxingbaoyu)) - `babel-preset-env` - [#​15580](https://togithub.com/babel/babel/pull/15580) Add syntax import meta to preset env ([@​JLHwung](https://togithub.com/JLHwung)) ##### :nail_care: Polish - `babel-types` - [#​15546](https://togithub.com/babel/babel/pull/15546) Improve the layout of generated validators ([@​liuxingbaoyu](https://togithub.com/liuxingbaoyu)) - `babel-core` - [#​15535](https://togithub.com/babel/babel/pull/15535) Use `lt` instead of `lte` to check TS version for .cts config ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo)) ##### :house: Internal - `babel-core` - [#​15575](https://togithub.com/babel/babel/pull/15575) Use synchronous `import.meta.resolve` ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo)) - `babel-helper-fixtures`, `babel-preset-typescript` - [#​15568](https://togithub.com/babel/babel/pull/15568) Handle `.overrides` and `.env` when resolving plugins/presets from fixture options ([@​JLHwung](https://togithub.com/JLHwung)) - `babel-helper-create-class-features-plugin`, `babel-helper-create-regexp-features-plugin` - [#​15548](https://togithub.com/babel/babel/pull/15548) Use `semver` package to compare versions ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
evanw/esbuild ### [`v0.17.18`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#​01718) [Compare Source](https://togithub.com/evanw/esbuild/compare/v0.17.17...v0.17.18) - Fix non-default JSON import error with `export {} from` ([#​3070](https://togithub.com/evanw/esbuild/issues/3070)) This release fixes a bug where esbuild incorrectly identified statements of the form `export { default as x } from "y" assert { type: "json" }` as a non-default import. The bug did not affect code of the form `import { default as x } from ...` (only code that used the `export` keyword). - Fix a crash with an invalid subpath import ([#​3067](https://togithub.com/evanw/esbuild/issues/3067)) Previously esbuild could crash when attempting to generate a friendly error message for an invalid [subpath import](https://nodejs.org/api/packages.html#subpath-imports) (i.e. an import starting with `#`). This happened because esbuild originally only supported the `exports` field and the code for that error message was not updated when esbuild later added support for the `imports` field. This crash has been fixed. ### [`v0.17.17`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#​01717) [Compare Source](https://togithub.com/evanw/esbuild/compare/v0.17.16...v0.17.17) - Fix CSS nesting transform for top-level `&` ([#​3052](https://togithub.com/evanw/esbuild/issues/3052)) Previously esbuild could crash with a stack overflow when lowering CSS nesting rules with a top-level `&`, such as in the code below. This happened because esbuild's CSS nesting transform didn't handle top-level `&`, causing esbuild to inline the top-level selector into itself. This release handles top-level `&` by replacing it with [the `:scope` pseudo-class](https://drafts.csswg.org/selectors-4/#the-scope-pseudo): ```css /* Original code */ &, a { .b { color: red; } } /* New output (with --target=chrome90) */ :is(:scope, a) .b { color: red; } ``` - Support `exports` in `package.json` for `extends` in `tsconfig.json` ([#​3058](https://togithub.com/evanw/esbuild/issues/3058)) TypeScript 5.0 added the ability to use `extends` in `tsconfig.json` to reference a path in a package whose `package.json` file contains an `exports` map that points to the correct location. This doesn't automatically work in esbuild because `tsconfig.json` affects esbuild's path resolution, so esbuild's normal path resolution logic doesn't apply. This release adds support for doing this by adding some additional code that attempts to resolve the `extends` path using the `exports` field. The behavior should be similar enough to esbuild's main path resolution logic to work as expected. Note that esbuild always treats this `extends` import as a `require()` import since that's what TypeScript appears to do. Specifically the `require` condition will be active and the `import` condition will be inactive. - Fix watch mode with `NODE_PATH` ([#​3062](https://togithub.com/evanw/esbuild/issues/3062)) Node has a rarely-used feature where you can extend the set of directories that node searches for packages using the `NODE_PATH` environment variable. While esbuild supports this too, previously a bug prevented esbuild's watch mode from picking up changes to imported files that were contained directly in a `NODE_PATH` directory. You're supposed to use `NODE_PATH` for packages, but some people abuse this feature by putting files in that directory instead (e.g. `node_modules/some-file.js` instead of `node_modules/some-pkg/some-file.js`). The watch mode bug happens when you do this because esbuild first tries to read `some-file.js` as a directory and then as a file. Watch mode was incorrectly waiting for `some-file.js` to become a valid directory. This release fixes this edge case bug by changing watch mode to watch `some-file.js` as a file when this happens. ### [`v0.17.16`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#​01716) [Compare Source](https://togithub.com/evanw/esbuild/compare/v0.17.15...v0.17.16) - Fix CSS nesting transform for triple-nested rules that start with a combinator ([#​3046](https://togithub.com/evanw/esbuild/issues/3046)) This release fixes a bug with esbuild where triple-nested CSS rules that start with a combinator were not transformed correctly for older browsers. Here's an example of such a case before and after this bug fix: ```css /* Original input */ .a { color: red; > .b { color: green; > .c { color: blue; } } } /* Old output (with --target=chrome90) */ .a { color: red; } .a > .b { color: green; } .a .b > .c { color: blue; } /* New output (with --target=chrome90) */ .a { color: red; } .a > .b { color: green; } .a > .b > .c { color: blue; } ``` - Support `--inject` with a file loaded using the `copy` loader ([#​3041](https://togithub.com/evanw/esbuild/issues/3041)) This release now allows you to use `--inject` with a file that is loaded using the `copy` loader. The `copy` loader copies the imported file to the output directory verbatim and rewrites the path in the `import` statement to point to the copied output file. When used with `--inject`, this means the injected file will be copied to the output directory as-is and a bare `import` statement for that file will be inserted in any non-copy output files that esbuild generates. Note that since esbuild doesn't parse the contents of copied files, esbuild will not expose any of the export names as usable imports when you do this (in the way that esbuild's `--inject` feature is typically used). However, any side-effects that the injected file has will still occur. ### [`v0.17.15`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#​01715) [Compare Source](https://togithub.com/evanw/esbuild/compare/v0.17.14...v0.17.15) - Allow keywords as type parameter names in mapped types ([#​3033](https://togithub.com/evanw/esbuild/issues/3033)) TypeScript allows type keywords to be used as parameter names in mapped types. Previously esbuild incorrectly treated this as an error. Code that does this is now supported: ```ts type Foo = 'a' | 'b' | 'c' type A = { [keyof in Foo]: number } type B = { [infer in Foo]: number } type C = { [readonly in Foo]: number } ``` - Add annotations for re-exported modules in node ([#​2486](https://togithub.com/evanw/esbuild/issues/2486), [#​3029](https://togithub.com/evanw/esbuild/issues/3029)) Node lets you import named imports from a CommonJS module using ESM import syntax. However, the allowed names aren't derived from the properties of the CommonJS module. Instead they are derived from an arbitrary syntax-only analysis of the CommonJS module's JavaScript AST. To accommodate node doing this, esbuild's ESM-to-CommonJS conversion adds a special non-executable "annotation" for node that describes the exports that node should expose in this scenario. It takes the form `0 && (module.exports = { ... })` and comes at the end of the file (`0 && expr` means `expr` is never evaluated). Previously esbuild didn't do this for modules re-exported using the `export * from` syntax. Annotations for these re-exports will now be added starting with this release: ```js // Original input export { foo } from './foo' export * from './bar' // Old output (with --format=cjs --platform=node) ... 0 && (module.exports = { foo }); // New output (with --format=cjs --platform=node) ... 0 && (module.exports = { foo, ...require("./bar") }); ``` Note that you need to specify both `--format=cjs` and `--platform=node` to get these node-specific annotations. - Avoid printing an unnecessary space in between a number and a `.` ([#​3026](https://togithub.com/evanw/esbuild/pull/3026)) JavaScript typically requires a space in between a number token and a `.` token to avoid the `.` being interpreted as a decimal point instead of a member expression. However, this space is not required if the number token itself contains a decimal point, an exponent, or uses a base other than 10. This release of esbuild now avoids printing the unnecessary space in these cases: ```js // Original input foo(1000 .x, 0 .x, 0.1 .x, 0.0001 .x, 0xFFFF_0000_FFFF_0000 .x) // Old output (with --minify) foo(1e3 .x,0 .x,.1 .x,1e-4 .x,0xffff0000ffff0000 .x); // New output (with --minify) foo(1e3.x,0 .x,.1.x,1e-4.x,0xffff0000ffff0000.x); ``` - Fix server-sent events with live reload when writing to the file system root ([#​3027](https://togithub.com/evanw/esbuild/issues/3027)) This release fixes a bug where esbuild previously failed to emit server-sent events for live reload when `outdir` was the file system root, such as `/`. This happened because `/` is the only path on Unix that cannot have a trailing slash trimmed from it, which was fixed by improved path handling.
eslint/eslint ### [`v8.39.0`](https://togithub.com/eslint/eslint/releases/tag/v8.39.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.38.0...v8.39.0) #### Features - [`3f7af9f`](https://togithub.com/eslint/eslint/commit/3f7af9f408625dbc486af914706d34c4b483b5ba) feat: Implement `SourceCode#markVariableAsUsed()` ([#​17086](https://togithub.com/eslint/eslint/issues/17086)) (Nicholas C. Zakas) #### Documentation - [`6987dc5`](https://togithub.com/eslint/eslint/commit/6987dc59e46f4e345d0d6c20c1f2c6846bbd7acc) docs: Fix formatting in Custom Rules docs ([#​17097](https://togithub.com/eslint/eslint/issues/17097)) (Milos Djermanovic) - [`4ee92e5`](https://togithub.com/eslint/eslint/commit/4ee92e5cbdeba6fea2147901ce926de16946958a) docs: Update README (GitHub Actions Bot) - [`d8e9887`](https://togithub.com/eslint/eslint/commit/d8e9887c2c384d24d586d08ee9ae2ada79bd234c) docs: Custom Rules cleanup/expansion ([#​16906](https://togithub.com/eslint/eslint/issues/16906)) (Ben Perlmutter) - [`1fea279`](https://togithub.com/eslint/eslint/commit/1fea2797801a82a2718814c83dad641dab092bcc) docs: Clarify how to add to tsc agenda ([#​17084](https://togithub.com/eslint/eslint/issues/17084)) (Nicholas C. Zakas) - [`970ef1c`](https://togithub.com/eslint/eslint/commit/970ef1c868235a58297682513842f1256cdfbd03) docs: Update triage board location (Nicholas C. Zakas) - [`6d8bffd`](https://togithub.com/eslint/eslint/commit/6d8bffdf45d50e272dc45e6d2d05b4a737514468) docs: Update README (GitHub Actions Bot) #### Chores - [`60a6f26`](https://togithub.com/eslint/eslint/commit/60a6f2694deb4aa1c54de2a28d0357cddfd16644) chore: upgrade [@​eslint/js](https://togithub.com/eslint/js)[@​8](https://togithub.com/8).39.0 ([#​17102](https://togithub.com/eslint/eslint/issues/17102)) (Milos Djermanovic) - [`d5ba5c0`](https://togithub.com/eslint/eslint/commit/d5ba5c0a85e7a10777761f5d46c104ab7f25845b) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`f57eff2`](https://togithub.com/eslint/eslint/commit/f57eff20f5789408e95061f1af5354bb9b4f4784) ci: run tests on Node.js v20 ([#​17093](https://togithub.com/eslint/eslint/issues/17093)) (Nitin Kumar) - [`9d1b8fc`](https://togithub.com/eslint/eslint/commit/9d1b8fc60cc31f12618e58c10a2669506b7ce9bf) perf: Binary search in token store `utils.search` ([#​17066](https://togithub.com/eslint/eslint/issues/17066)) (Francesco Trotta) - [`07a4435`](https://togithub.com/eslint/eslint/commit/07a4435a0c08cb63ebf11b71f735bac20318829b) chore: Add request for minimal repro to bug report ([#​17081](https://togithub.com/eslint/eslint/issues/17081)) (Nicholas C. Zakas) - [`eac4943`](https://togithub.com/eslint/eslint/commit/eac4943ba2e4edb3dbfea0470e5d4b15a4926c40) refactor: remove unnecessary use of `SourceCode#getAncestors` in rules ([#​17075](https://togithub.com/eslint/eslint/issues/17075)) (Milos Djermanovic) - [`0a7b60a`](https://togithub.com/eslint/eslint/commit/0a7b60a9d5621dbbc1a8a8adda3b7c2060c779ca) chore: update description of `SourceCode#getDeclaredVariables` ([#​17072](https://togithub.com/eslint/eslint/issues/17072)) (Milos Djermanovic) - [`6e2df71`](https://togithub.com/eslint/eslint/commit/6e2df71cc390252aaca212abe3dc0467fe397450) chore: remove unnecessary references to the LICENSE file ([#​17071](https://togithub.com/eslint/eslint/issues/17071)) (Milos Djermanovic) ### [`v8.38.0`](https://togithub.com/eslint/eslint/releases/tag/v8.38.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.37.0...v8.38.0) #### Features - [`a1d561d`](https://togithub.com/eslint/eslint/commit/a1d561d18ed653b56bddbfb1bab1ebe957293563) feat: Move getDeclaredVariables and getAncestors to SourceCode ([#​17059](https://togithub.com/eslint/eslint/issues/17059)) (Nicholas C. Zakas) #### Bug Fixes - [`1c1ece2`](https://togithub.com/eslint/eslint/commit/1c1ece26d1da61e523b83dda25353ec9379eb6c9) fix: do not report on `RegExp(...args)` in `require-unicode-regexp` ([#​17037](https://togithub.com/eslint/eslint/issues/17037)) (Francesco Trotta) #### Documentation - [`7162d34`](https://togithub.com/eslint/eslint/commit/7162d34df9a66c817c3bd4aafd3a03d226b58dd5) docs: Mention new config system is complete ([#​17068](https://togithub.com/eslint/eslint/issues/17068)) (Nicholas C. Zakas) - [`0fd6bb2`](https://togithub.com/eslint/eslint/commit/0fd6bb213ad2de77543c936eda21501653182e52) docs: Update README (GitHub Actions Bot) - [`c83531c`](https://togithub.com/eslint/eslint/commit/c83531c1a6026675f36aa9e33fef14458043974a) docs: Update/remove external links, eg. point to `eslint-community` ([#​17061](https://togithub.com/eslint/eslint/issues/17061)) (Pelle Wessman) - [`a3aa6f5`](https://togithub.com/eslint/eslint/commit/a3aa6f5f146534ed7999ebf8930c524a4871ec0b) docs: Clarify `no-div-regex` rule docs ([#​17051](https://togithub.com/eslint/eslint/issues/17051)) (Francesco Trotta) - [`b0f11cf`](https://togithub.com/eslint/eslint/commit/b0f11cf977a4180bf7c3042e7faeaaa067ffafd0) docs: Update README (GitHub Actions Bot) - [`da8d52a`](https://togithub.com/eslint/eslint/commit/da8d52a9d4edd9b2016cd4a15cd78f1ddadf20c7) docs: Update the second object instance for the "no-new" rule ([#​17020](https://togithub.com/eslint/eslint/issues/17020)) (Ahmadou Waly NDIAYE) - [`518130a`](https://togithub.com/eslint/eslint/commit/518130ae79a16d7bf4d752c211ae88152cc5a6f0) docs: switch language based on current path ([#​16687](https://togithub.com/eslint/eslint/issues/16687)) (Percy Ma) - [`24206c4`](https://togithub.com/eslint/eslint/commit/24206c49a138d4390f815ae122ee12f564bc604b) docs: Update README (GitHub Actions Bot) #### Chores - [`59ed060`](https://togithub.com/eslint/eslint/commit/59ed06041d4670781956221086ea0fca6683788d) chore: upgrade [@​eslint/js](https://togithub.com/eslint/js)[@​8](https://togithub.com/8).38.0 ([#​17069](https://togithub.com/eslint/eslint/issues/17069)) (Milos Djermanovic) - [`88c0898`](https://togithub.com/eslint/eslint/commit/88c08984ec259ac22d839397c06beec8ef213120) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`cf682d2`](https://togithub.com/eslint/eslint/commit/cf682d249f04a6a304407d5b9ddbbc4a9714dd62) refactor: simplify new-parens rule schema ([#​17060](https://togithub.com/eslint/eslint/issues/17060)) (MHO) - [`0dde022`](https://togithub.com/eslint/eslint/commit/0dde02211268394bcbc2b0beef55ea2409b6f55d) ci: bump actions/add-to-project from 0.4.1 to 0.5.0 ([#​17055](https://togithub.com/eslint/eslint/issues/17055)) (dependabot\[bot])
fastify/fastify ### [`v4.17.0`](https://togithub.com/fastify/fastify/releases/tag/v4.17.0) [Compare Source](https://togithub.com/fastify/fastify/compare/v4.16.3...v4.17.0) ##### What's Changed - Add codes to framework errors that lack one by [@​lilsweetcaligula](https://togithub.com/lilsweetcaligula) in [https://github.com/fastify/fastify/pull/4632](https://togithub.com/fastify/fastify/pull/4632) - fix: revert changes made to route hook types by [@​vidarc](https://togithub.com/vidarc) in [https://github.com/fastify/fastify/pull/4708](https://togithub.com/fastify/fastify/pull/4708) ##### New Contributors - [@​lilsweetcaligula](https://togithub.com/lilsweetcaligula) made their first contribution in [https://github.com/fastify/fastify/pull/4632](https://togithub.com/fastify/fastify/pull/4632) - [@​vidarc](https://togithub.com/vidarc) made their first contribution in [https://github.com/fastify/fastify/pull/4708](https://togithub.com/fastify/fastify/pull/4708) **Full Changelog**: https://github.com/fastify/fastify/compare/4.16.3...4.17.0 ### [`v4.16.3`](https://togithub.com/fastify/fastify/releases/tag/v4.16.3) [Compare Source](https://togithub.com/fastify/fastify/compare/v4.16.2...v4.16.3) **Full Changelog**: https://github.com/fastify/fastify/compare/4.16.2...4.16.3 ### [`v4.16.2`](https://togithub.com/fastify/fastify/releases/tag/v4.16.2) [Compare Source](https://togithub.com/fastify/fastify/compare/v4.16.1...v4.16.2) **Full Changelog**: https://github.com/fastify/fastify/compare/4.16.1...4.16.2 ### [`v4.16.1`](https://togithub.com/fastify/fastify/releases/tag/v4.16.1) [Compare Source](https://togithub.com/fastify/fastify/compare/v4.16.0...v4.16.1) **Full Changelog**: https://github.com/fastify/fastify/compare/4.16.0...4.16.1 ### [`v4.16.0`](https://togithub.com/fastify/fastify/releases/tag/v4.16.0) [Compare Source](https://togithub.com/fastify/fastify/compare/v4.15.0...v4.16.0) ##### What's Changed - docs: spelling, punctuation & grammar minor nits by [@​shusak](https://togithub.com/shusak) in [https://github.com/fastify/fastify/pull/4642](https://togithub.com/fastify/fastify/pull/4642) - docs(mongodb): update to mongodb 5 by [@​pip77](https://togithub.com/pip77) in [https://github.com/fastify/fastify/pull/4646](https://togithub.com/fastify/fastify/pull/4646) - Install pnpm version 7 to support Node.js 14 in CI by [@​Yvad60](https://togithub.com/Yvad60) in [https://github.com/fastify/fastify/pull/4645](https://togithub.com/fastify/fastify/pull/4645) - build(deps-dev): Bump typescript from 4.9.5 to 5.0.3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/fastify/fastify/pull/4658](https://togithub.com/fastify/fastify/pull/4658) - build(deps-dev): Bump [@​sinclair/typebox](https://togithub.com/sinclair/typebox) from 0.25.24 to 0.26.8 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/fastify/fastify/pull/4660](https://togithub.com/fastify/fastify/pull/4660) - Add `fastify-koa` plugin by [@​rozzilla](https://togithub.com/rozzilla) in [https://github.com/fastify/fastify/pull/4654](https://togithub.com/fastify/fastify/pull/4654) - Prevent labeler from removing existing labels by [@​luisorbaiceta](https://togithub.com/luisorbaiceta) in [https://github.com/fastify/fastify/pull/4662](https://togithub.com/fastify/fastify/pull/4662) - Emit a warning when validating undefined schemas by [@​franher](https://togithub.com/franher) in [https://github.com/fastify/fastify/pull/4647](https://togithub.com/fastify/fastify/pull/4647) - chore(ecosystem): rename to fastify-orama plugin by [@​mateonunez](https://togithub.com/mateonunez) in [https://github.com/fastify/fastify/pull/4667](https://togithub.com/fastify/fastify/pull/4667) - Add workflow for benchmarking POST with custom parsers by [@​kibertoad](https://togithub.com/kibertoad) in [https://github.com/fastify/fastify/pull/4669](https://togithub.com/fastify/fastify/pull/4669) - chore: add `github actions` label automatically by [@​Eomm](https://togithub.com/Eomm) in [https://github.com/fastify/fastify/pull/4664](https://togithub.com/fastify/fastify/pull/4664) - Adds async hooks signature on route level by [@​JbIPS](https://togithub.com/JbIPS) in [https://github.com/fastify/fastify/pull/4655](https://togithub.com/fastify/fastify/pull/4655) - chore(docs): update from cobraz to simenandre by [@​simenandre](https://togithub.com/simenandre) in [https://github.com/fastify/fastify/pull/4671](https://togithub.com/fastify/fastify/pull/4671) - Documentation: link from Hooks onRoute to routeOptions definition by [@​cvuorinen](https://togithub.com/cvuorinen) in [https://github.com/fastify/fastify/pull/4678](https://togithub.com/fastify/fastify/pull/4678) - docs: incorrect example for 'onRequestAbort' hook by [@​TimShilov](https://togithub.com/TimShilov) in [https://github.com/fastify/fastify/pull/4679](https://togithub.com/fastify/fastify/pull/4679) - doc: add fastify-type-provider-effect-schema by [@​NexZhu](https://togithub.com/NexZhu) in [https://github.com/fastify/fastify/pull/4683](https://togithub.com/fastify/fastify/pull/4683) - doc: update prototype poisoning by [@​AliakbarETH](https://togithub.com/AliakbarETH) in [https://github.com/fastify/fastify/pull/4651](https://togithub.com/fastify/fastify/pull/4651) - docs: add optional URL param to upgrade guide and route docs ([#​4637](https://togithub.com/fastify/fastify/issues/4637)) by [@​mateus4k](https://togithub.com/mateus4k) in [https://github.com/fastify/fastify/pull/4680](https://togithub.com/fastify/fastify/pull/4680) - build(deps-dev): Bump markdownlint-cli2 from 0.6.0 to 0.7.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/fastify/fastify/pull/4695](https://togithub.com/fastify/fastify/pull/4695) - Add fastify-redis-session plugin by [@​mohammadraufzahed](https://togithub.com/mohammadraufzahed) in [https://github.com/fastify/fastify/pull/4656](https://togithub.com/fastify/fastify/pull/4656) - test: refactor logger test by [@​climba03003](https://togithub.com/climba03003) in [https://github.com/fastify/fastify/pull/4648](https://togithub.com/fastify/fastify/pull/4648) - chore: fix badge link by [@​Eomm](https://togithub.com/Eomm) in [https://github.com/fastify/fastify/pull/4699](https://togithub.com/fastify/fastify/pull/4699) - docs: add fastify-log-controller to ecosystem by [@​Eomm](https://togithub.com/Eomm) in [https://github.com/fastify/fastify/pull/4696](https://togithub.com/fastify/fastify/pull/4696) - build(deps-dev): Bump tsd from 0.26.1 to 0.28.1 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/fastify/fastify/pull/4659](https://togithub.com/fastify/fastify/pull/4659) - build(deps-dev): Bump [@​sinclair/typebox](https://togithub.com/sinclair/typebox) from 0.26.8 to 0.28.6 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/fastify/fastify/pull/4700](https://togithub.com/fastify/fastify/pull/4700) - use Object.prototype.hasOwnProperty in compileSchemasForValidation by [@​Uzlopak](https://togithub.com/Uzlopak) in [https://github.com/fastify/fastify/pull/4692](https://togithub.com/fastify/fastify/pull/4692) - Implement support for passing custom text resolution for starting log… by [@​kibertoad](https://togithub.com/kibertoad) in [https://github.com/fastify/fastify/pull/4698](https://togithub.com/fastify/fastify/pull/4698) - refactor: export FastifyBaseLogger as interface instead of type alias by [@​tzafrirben](https://togithub.com/tzafrirben) in [https://github.com/fastify/fastify/pull/4681](https://togithub.com/fastify/fastify/pull/4681) - build(deps): Bump tiny-lru from 10.4.1 to 11.0.1 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/fastify/fastify/pull/4694](https://togithub.com/fastify/fastify/pull/4694) - Added preClose hook by [@​mcollina](https://togithub.com/mcollina) in [https://github.com/fastify/fastify/pull/4697](https://togithub.com/fastify/fastify/pull/4697) ##### New Contributors - [@​shusak](https://togithub.com/shusak) made their first contribution in [https://github.com/fastify/fastify/pull/4642](https://togithub.com/fastify/fastify/pull/4642) - [@​pip77](https://togithub.com/pip77) made their first contribution in [https://github.com/fastify/fastify/pull/4646](https://togithub.com/fastify/fastify/pull/4646) - [@​Yvad60](https://togithub.com/Yvad60) made their first contribution in [https://github.com/fastify/fastify/pull/4645](https://togithub.com/fastify/fastify/pull/4645) - [@​rozzilla](https://togithub.com/rozzilla) made their first contribution in [https://github.com/fastify/fastify/pull/4654](https://togithub.com/fastify/fastify/pull/4654) - [@​franher](https://togithub.com/franher) made their first contribution in [https://github.com/fastify/fastify/pull/4647](https://togithub.com/fastify/fastify/pull/4647) - [@​JbIPS](https://togithub.com/JbIPS) made their first contribution in [https://github.com/fastify/fastify/pull/4655](https://togithub.com/fastify/fastify/pull/4655) - [@​cvuorinen](https://togithub.com/cvuorinen) made their first contribution in [https://github.com/fastify/fastify/pull/4678](https://togithub.com/fastify/fastify/pull/4678) - [@​TimShilov](https://togithub.com/TimShilov) made their first contribution in [https://github.com/fastify/fastify/pull/4679](https://togithub.com/fastify/fastify/pull/4679) - [@​NexZhu](https://togithub.com/NexZhu) made their first contribution in [https://github.com/fastify/fastify/pull/4683](https://togithub.com/fastify/fastify/pull/4683) - [@​AliakbarETH](https://togithub.com/AliakbarETH) made their first contribution in [https://github.com/fastify/fastify/pull/4651](https://togithub.com/fastify/fastify/pull/4651) - [@​mateus4k](https://togithub.com/mateus4k) made their first contribution in [https://github.com/fastify/fastify/pull/4680](https://togithub.com/fastify/fastify/pull/4680) - [@​mohammadraufzahed](https://togithub.com/mohammadraufzahed) made their first contribution in [https://github.com/fastify/fastify/pull/4656](https://togithub.com/fastify/fastify/pull/4656) - [@​tzafrirben](https://togithub.com/tzafrirben) made their first contribution in [https://github.com/fastify/fastify/pull/4681](https://togithub.com/fastify/fastify/pull/4681) **Full Changelog**: https://github.com/fastify/fastify/compare/v4.15.0...4.16.0
lit/lit (lit-element) ### [`v3.3.2`](https://togithub.com/lit/lit/blob/HEAD/packages/lit-element/CHANGELOG.md#​332) [Compare Source](https://togithub.com/lit/lit/compare/lit-element@3.3.1...lit-element@3.3.2) ##### Patch Changes - [#​3766](https://togithub.com/lit/lit/pull/3766) [`4431cbb8`](https://togithub.com/lit/lit/commit/4431cbb85428e54bafa090088056a325fe623aa1) - Fix styleMap initial render of mixed-case custom props ### [`v3.3.1`](https://togithub.com/lit/lit/blob/HEAD/packages/lit-element/CHANGELOG.md#​331) [Compare Source](https://togithub.com/lit/lit/compare/lit-element@3.3.0...lit-element@3.3.1) ##### Patch Changes - [#​3720](https://togithub.com/lit/lit/pull/3720) [`575fb578`](https://togithub.com/lit/lit/commit/575fb578473031859b59b9ed98634ba091b389f7) - `lit-html/experimental-hydrate.js` and `lit-element/experimental-hydrate-support.js` have been moved to `@lit-labs/ssr-client`. The modules in the original location have been marked deprecated and will be removed in a future version.
lit/lit (lit-html) ### [`v2.7.3`](https://togithub.com/lit/lit/blob/HEAD/packages/lit-html/CHANGELOG.md#​273) [Compare Source](https://togithub.com/lit/lit/compare/lit-html@2.7.2...lit-html@2.7.3) ##### Patch Changes - [#​3825](https://togithub.com/lit/lit/pull/3825) [`343187b1`](https://togithub.com/lit/lit/commit/343187b1acbbdb02ce8d01fa0a0d326870419763) - `static-html` no longer adds an item to `TemplateResult`'s value array for the last consumed static value. This fixes an error with server-side rendering of static html. - [#​3766](https://togithub.com/lit/lit/pull/3766) [`4431cbb8`](https://togithub.com/lit/lit/commit/4431cbb85428e54bafa090088056a325fe623aa1) - Fix styleMap initial render of mixed-case custom props ### [`v2.7.2`](https://togithub.com/lit/lit/blob/HEAD/packages/lit-html/CHANGELOG.md#​272) [Compare Source](https://togithub.com/lit/lit/compare/lit-html@2.7.1...lit-html@2.7.2) ##### Patch Changes - [#​3788](https://togithub.com/lit/lit/pull/3788) [`88fe0390`](https://togithub.com/lit/lit/commit/88fe039015ff979e031efbdde1861ae5b11a0da5) - Allow numbers to be used as values in styleMap() ### [`v2.7.1`](https://togithub.com/lit/lit/blob/HEAD/packages/lit-html/CHANGELOG.md#​271) [Compare Source](https://togithub.com/lit/lit/compare/lit-html@2.7.0...lit-html@2.7.1) ##### Patch Changes - [#​3768](https://togithub.com/lit/lit/pull/3768) [`7c1191da`](https://togithub.com/lit/lit/commit/7c1191da8e2f33e145ea58265531b7c744835401) - Fix styleMap's handling of important flags - [#​3720](https://togithub.com/lit/lit/pull/3720) [`575fb578`](https://togithub.com/lit/lit/commit/575fb578473031859b59b9ed98634ba091b389f7) - `lit-html/experimental-hydrate.js` and `lit-element/experimental-hydrate-support.js` have been moved to `@lit-labs/ssr-client`. The modules in the original location have been marked deprecated and will be removed in a future version.
Microsoft/playwright ### [`v1.33.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.33.0) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.32.3...v1.33.0) ##### Locators Update - Use [`locator.or()`][locator.or()] to create a locator that matches either of the two locators. Consider a scenario where you'd like to click on a "New email" button, but sometimes a security settings dialog shows up instead. In this case, you can wait for either a "New email" button, or a dialog and act accordingly: ```js const newEmail = page.getByRole('button', { name: 'New' }); const dialog = page.getByText('Confirm security settings'); await expect(newEmail.or(dialog)).toBeVisible(); if (await dialog.isVisible()) await page.getByRole('button', { name: 'Dismiss' }).click(); await newEmail.click(); ``` - Use new options `hasNot` and `hasNotText` in [`locator.filter()`][locator.filter()] to find elements that **do not match** certain conditions. ```js const rowLocator = page.locator('tr'); await rowLocator .filter({ hasNotText: 'text in column 1' }) .filter({ hasNot: page.getByRole('button', { name: 'column 2 button' }) }) .screenshot(); ``` - Use new web-first assertion [`locatorAssertions.toBeAttached()`][locatorAssertions.toBeAttached()] to ensure that the element is present in the page's DOM. Do not confuse with the [`locatorAssertions.toBeVisible()`][locatorAssertions.toBeVisible()] that ensures that element is both attached & visible. ##### New APIs - [`locator.or()`][locator.or()] - New option `hasNot` in [`locator.filter()`][locator.filter()] - New option `hasNotText` in [`locator.filter()`][locator.filter()] - [`locatorAssertions.toBeAttached()`][locatorAssertions.toBeAttached()] - New option `timeout` in [`route.fetch()`][route.fetch()] - [`reporter.onExit()`][reporter.onExit()] ##### ⚠️ Breaking change - The `mcr.microsoft.com/playwright:v1.33.0` now serves a Playwright image based on Ubuntu Jammy. To use the focal-based image, please use `mcr.microsoft.com/playwright:v1.33.0-focal` instead. ##### Browser Versions - Chromium 113.0.5672.53 - Mozilla Firefox 112.0 - WebKit 16.4 This version was also tested against the following stable channels: - Google Chrome 112 - Microsoft Edge 112 [`locator.or()`]: https://playwright.dev/docs/api/class-locator#locator-or [`reporter.onExit()`]: https://playwright.dev/docs/api/class-reporter#reporter-on-exit [`locator.filter()`]: https://playwright.dev/docs/api/class-locator#locator-filter [`locatorAssertions.toBeAttached()`]: https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-be-attached [`locatorAssertions.toBeVisible()`]: https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-be-visible [`route.fetch()`]: https://playwright.dev/docs/api/class-route#route-fetch ### [`v1.32.3`](https://togithub.com/microsoft/playwright/releases/tag/v1.32.3) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.32.2...v1.32.3) #### Highlights [https://github.com/microsoft/playwright/issues/22144](https://togithub.com/microsoft/playwright/issues/22144) - \[BUG] WebServer only starting after timeout[https://github.com/microsoft/playwright/pull/22191](https://togithub.com/microsoft/playwright/pull/22191)1 - chore: allow reusing browser between the tests[https://github.com/microsoft/playwright/issues/22215](https://togithub.com/microsoft/playwright/issues/22215)5 - \[BUG] Tests failing in toPass often marked as passed #### Browser Versions - Chromium 112.0.5615.29 - Mozilla Firefox 111.0 - WebKit 16.4 This version was also tested against the following stable channels: - Google Chrome 111 - Microsoft Edge 111 ### [`v1.32.2`](https://togithub.com/microsoft/playwright/releases/tag/v1.32.2) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.32.1...v1.32.2) #### Highlights [https://github.com/microsoft/playwright/issues/21993](https://togithub.com/microsoft/playwright/issues/21993) - \[BUG] Browser crash when using Playwright VSC extension and trace-viewer enabled in config[https://github.com/microsoft/playwright/issues/22003](https://togithub.com/microsoft/playwright/issues/22003)3 - \[Feature] Make Vue component mount props less restrictiv[https://github.com/microsoft/playwright/issues/22089](https://togithub.com/microsoft/playwright/issues/22089)89 - \[REGRESSION]: Tests failing with "Error: tracing.stopChunk" #### Browser Versions - Chromium 112.0.5615.29 - Mozilla Firefox 111.0 - WebKit 16.4 This version was also tested against the following stable channels: - Google Chrome 111 - Microsoft Edge 111
postcss/postcss ### [`v8.4.23`](https://togithub.com/postcss/postcss/blob/HEAD/CHANGELOG.md#​8423) [Compare Source](https://togithub.com/postcss/postcss/compare/8.4.22...8.4.23) - Fixed warnings in TypeDoc. ### [`v8.4.22`](https://togithub.com/postcss/postcss/blob/HEAD/CHANGELOG.md#​8422) [Compare Source](https://togithub.com/postcss/postcss/compare/8.4.21...8.4.22) - Fixed TypeScript support with `node16` (by Remco Haszing).
prettier/prettier ### [`v2.8.8`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#​288) [Compare Source](https://togithub.com/prettier/prettier/compare/2.8.7...2.8.8) This version is a republished version of v2.8.7. A bad version was accidentally published and [it can't be unpublished](https://togithub.com/npm/cli/issues/1686), apologies for the churn.
vitejs/vite ### [`v3.2.6`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small326-2023-04-18-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v3.2.5...v3.2.6) - fix: escape msg in render restricted error html, backport ([#​12889](https://togithub.com/vitejs/vite/issues/12889)) ([#​12892](https://togithub.com/vitejs/vite/issues/12892)) ([b48ac2a](https://togithub.com/vitejs/vite/commit/b48ac2a)), closes [#​12889](https://togithub.com/vitejs/vite/issues/12889) [#​12892](https://togithub.com/vitejs/vite/issues/12892)

Configuration

📅 Schedule: Branch creation - "before 6am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 Mend Renovate. View repository job log here.