unjs / ipx

🖼️ High performance, secure and easy-to-use image optimizer.
MIT License
1.54k stars 61 forks source link

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

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
@vitest/coverage-c8 ^0.24.3 -> ^0.25.2 age adoption passing confidence
changelogen ^0.3.5 -> ^0.4.0 age adoption passing confidence
defu ^6.1.0 -> ^6.1.1 age adoption passing confidence
destr ^1.1.1 -> ^1.2.1 age adoption passing confidence
eslint (source) ^8.25.0 -> ^8.28.0 age adoption passing confidence
listhen ^0.3.4 -> ^0.3.5 age adoption passing confidence
ohmyfetch ^0.4.20 -> ^0.4.21 age adoption passing confidence
pnpm (source) 7.13.5 -> 7.17.0 age adoption passing confidence
serve-handler ^6.1.3 -> ^6.1.5 age adoption passing confidence
sharp (changelog) ^0.31.1 -> ^0.31.2 age adoption passing confidence
typescript (source) ^4.8.4 -> ^4.9.3 age adoption passing confidence
vitest ^0.24.3 -> ^0.25.2 age adoption passing confidence

Release Notes

vitest-dev/vitest ### [`v0.25.2`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.2) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.1...v0.25.2) #####    🐞 Bug Fixes - Dates are equal, if both are invalid  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2326](https://togithub.com/vitest-dev/vitest/issues/2326) - Don't ignore properties, when put on a default function in CJS context  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2325](https://togithub.com/vitest-dev/vitest/issues/2325) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.1...v0.25.2) ### [`v0.25.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.1) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.0...v0.25.1) #####    🚀 Features - Add `vi.setConfig` helper  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2293](https://togithub.com/vitest-dev/vitest/issues/2293) - Allow hooks to be executed in a stack or list  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2294](https://togithub.com/vitest-dev/vitest/issues/2294) #####    🐞 Bug Fixes - Always rewrite defined jsdom keys  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2290](https://togithub.com/vitest-dev/vitest/issues/2290) - Default reporter regression  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/vitest-dev/vitest/issues/2292](https://togithub.com/vitest-dev/vitest/issues/2292) - Don't fail `bench` when using options  -  by [@​poyoho](https://togithub.com/poyoho) in [https://github.com/vitest-dev/vitest/issues/2295](https://togithub.com/vitest-dev/vitest/issues/2295) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.0...v0.25.1) ### [`v0.25.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.0) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.24.5...v0.25.0) #####    ✅ Builtin TypeChecking In v0.25.0, Vitest allows you to write tests for your types, using `expectTypeOf` or `assertType` syntaxes. By default all tests inside `*.test-d.ts` files are considered type tests. Run `vitest typecheck` to run type tests. ```ts // my.test-d.ts import { assertType, expectTypeOf } from 'vitest' import { mount } from './mount.js' test('my types work properly', () => { expectTypeOf(mount).toBeFunction() expectTypeOf(mount).parameter(0).toMatchTypeOf<{ name: string }>() // @​ts-expect-error name is a string assertType(mount({ name: 42 })) }) ``` Learn more at [the documentation](https://vitest.dev/guide/testing-types.html) and this [RFC](https://togithub.com/vitest-dev/vitest/issues/1954) #####    🚨 Breaking Changes - Return context in `startVitest()`  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/vitest-dev/vitest/issues/2072](https://togithub.com/vitest-dev/vitest/issues/2072) #####    🚀 Features - `onTestFailed` hook  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/vitest-dev/vitest/issues/2210](https://togithub.com/vitest-dev/vitest/issues/2210) - Display error frame if present (like Vite)  -  by [@​haikyuu](https://togithub.com/haikyuu) and [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2257](https://togithub.com/vitest-dev/vitest/issues/2257) - Benchmark table report  -  by [@​poyoho](https://togithub.com/poyoho) in [https://github.com/vitest-dev/vitest/issues/2179](https://togithub.com/vitest-dev/vitest/issues/2179) - Add typechecking functionality  -  by [@​sheremet-va](https://togithub.com/sheremet-va) and [@​antfu](https://togithub.com/antfu) in [https://github.com/vitest-dev/vitest/issues/2107](https://togithub.com/vitest-dev/vitest/issues/2107) #####    🐞 Bug Fixes - Clear full screen only in watch mode  -  by [@​sheremet-va](https://togithub.com/sheremet-va) [(c3d89)](https://togithub.com/vitest-dev/vitest/commit/c3d89504) - Don't serialize symbols and immutables  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2266](https://togithub.com/vitest-dev/vitest/issues/2266) - Use --conditions instead of -C  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2267](https://togithub.com/vitest-dev/vitest/issues/2267) - Show correct stack trace in errors and console  -  by [@​sheremet-va](https://togithub.com/sheremet-va) and [@​antfu](https://togithub.com/antfu) in [https://github.com/vitest-dev/vitest/issues/2248](https://togithub.com/vitest-dev/vitest/issues/2248) - Align `.each` behavior with jest  -  by [@​bartoszgolebiowski](https://togithub.com/bartoszgolebiowski) and [@​antfu](https://togithub.com/antfu) in [https://github.com/vitest-dev/vitest/issues/2064](https://togithub.com/vitest-dev/vitest/issues/2064) - Remove undefined values in options  -  by [@​g4rry420](https://togithub.com/g4rry420) and [@​antfu](https://togithub.com/antfu) in [https://github.com/vitest-dev/vitest/issues/2281](https://togithub.com/vitest-dev/vitest/issues/2281) - **coverage**: Istanbul provider to preserve implicit else  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2275](https://togithub.com/vitest-dev/vitest/issues/2275) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.24.5...v0.25.0) ### [`v0.24.5`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.24.5) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.24.4...v0.24.5) #####    🚀 Features - **vite-node**: Trigger beforeFullReload / beforePrune / invalidate hook  -  by [@​ycmjason](https://togithub.com/ycmjason) in [https://github.com/vitest-dev/vitest/issues/2079](https://togithub.com/vitest-dev/vitest/issues/2079) #####    🐞 Bug Fixes - Respect folders with dot at the start, when mocking  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2244](https://togithub.com/vitest-dev/vitest/issues/2244) - Prevent using mocks in rpc  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2254](https://togithub.com/vitest-dev/vitest/issues/2254) - Show actual unhandled errors, serialize DOMErrors  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2253](https://togithub.com/vitest-dev/vitest/issues/2253) - Load deps reporter  -  by [@​poyoho](https://togithub.com/poyoho) in [https://github.com/vitest-dev/vitest/issues/2249](https://togithub.com/vitest-dev/vitest/issues/2249) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.24.4...v0.24.5) ### [`v0.24.4`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.24.4) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.24.3...v0.24.4) #####    🚀 Features - **vite-node**: Don't exit on uncaughtException in watch mode  -  by [@​poyoho](https://togithub.com/poyoho) in [https://github.com/vitest-dev/vitest/issues/2186](https://togithub.com/vitest-dev/vitest/issues/2186) #####    🐞 Bug Fixes - Add/Update `repository` properties in `package.json`  -  by [@​silverwind](https://togithub.com/silverwind) in [https://github.com/vitest-dev/vitest/issues/2151](https://togithub.com/vitest-dev/vitest/issues/2151) - Ignore benchmark.reporters in getSerializableConfig  -  by [@​kainstar](https://togithub.com/kainstar) in [https://github.com/vitest-dev/vitest/issues/2164](https://togithub.com/vitest-dev/vitest/issues/2164) - Improve config's default exclude  -  by [@​haikyuu](https://togithub.com/haikyuu) and [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2188](https://togithub.com/vitest-dev/vitest/issues/2188) - Always use node condition  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/1919](https://togithub.com/vitest-dev/vitest/issues/1919) - Clear terminal output before running tests, show errors in correct order  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2228](https://togithub.com/vitest-dev/vitest/issues/2228) - Improve compatibility with native Node CJS resolution  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2226](https://togithub.com/vitest-dev/vitest/issues/2226) - Don't use resolved paths if they don't actually exist  -  by [@​simon-abbott](https://togithub.com/simon-abbott) in [https://github.com/vitest-dev/vitest/issues/1868](https://togithub.com/vitest-dev/vitest/issues/1868) - **cli**: - Set inputNamePattern to RegExp source instead of string  -  by [@​rafedramzi](https://togithub.com/rafedramzi) in [https://github.com/vitest-dev/vitest/issues/2201](https://togithub.com/vitest-dev/vitest/issues/2201) - Normalize argument path  -  by [@​poyoho](https://togithub.com/poyoho) in [https://github.com/vitest-dev/vitest/issues/2180](https://togithub.com/vitest-dev/vitest/issues/2180) - **coverage**: - Trim URL parameters from file paths in istanbul coverage  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2232](https://togithub.com/vitest-dev/vitest/issues/2232) - Trim URL parameters from file paths in c8 coverage  -  by [@​OrestHk](https://togithub.com/OrestHk) and [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2181](https://togithub.com/vitest-dev/vitest/issues/2181) - **reporter**: - Load custom reporter using `executeFile`  -  by [@​poyoho](https://togithub.com/poyoho) in [https://github.com/vitest-dev/vitest/issues/2184](https://togithub.com/vitest-dev/vitest/issues/2184) - **vitest**: - Return detailed error when using toHaveReturnedWith  -  by [@​azaleta](https://togithub.com/azaleta) in [https://github.com/vitest-dev/vitest/issues/2163](https://togithub.com/vitest-dev/vitest/issues/2163) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.24.3...v0.24.4)
unjs/changelogen ### [`v0.4.0`](https://togithub.com/unjs/changelogen/blob/HEAD/CHANGELOG.md#v040) [Compare Source](https://togithub.com/unjs/changelogen/compare/v0.3.5...v0.4.0) [compare changes](https://togithub.com/unjs/changelogen/compare/v0.3.5...v0.4.0) ##### 🚀 Enhancements - ⚠️ Resolve github usernames using `ungh/ungh` ([#​46](https://togithub.com/unjs/changelogen/pull/46)) ##### 🩹 Fixes - **markdown:** Avoid rendering `noreply.github.com` emails ([4871721](https://togithub.com/unjs/changelogen/commit/4871721)) - Avoid rendering authors with `[bot]` in their name ([4f3f644](https://togithub.com/unjs/changelogen/commit/4f3f644)) - Format name to avoid duplicates ([f74a988](https://togithub.com/unjs/changelogen/commit/f74a988)) ##### ⚠️ Breaking Changes - ⚠️ Resolve github usernames using `ungh/ungh` ([#​46](https://togithub.com/unjs/changelogen/pull/46)) ##### ❤️ Contributors - Pooya Parsa ([@​pi0](http://github.com/pi0))
unjs/defu ### [`v6.1.1`](https://togithub.com/unjs/defu/blob/HEAD/CHANGELOG.md#​611-httpsgithubcomunjsdefucomparev610v611-2022-11-14) [Compare Source](https://togithub.com/unjs/defu/compare/v6.1.0...v6.1.1)
unjs/destr ### [`v1.2.1`](https://togithub.com/unjs/destr/blob/HEAD/CHANGELOG.md#​121-httpsgithubcomunjsdestrcomparev120v121-2022-11-14) [Compare Source](https://togithub.com/unjs/destr/compare/v1.2.0...v1.2.1) ### [`v1.2.0`](https://togithub.com/unjs/destr/blob/HEAD/CHANGELOG.md#​120-httpsgithubcomunjsdestrcomparev111v120-2022-10-19) [Compare Source](https://togithub.com/unjs/destr/compare/v1.1.1...v1.2.0) ##### Features - add option `strict` that throws an error if the input is not valid JSON ([#​11](https://togithub.com/unjs/destr/issues/11)) ([36c7121](https://togithub.com/unjs/destr/commit/36c712171dc3eac6f720a64b449d3e661d2e511b)) ##### [1.1.1](https://togithub.com/unjs/destr/compare/v1.1.0...v1.1.1) (2022-04-07)
eslint/eslint ### [`v8.28.0`](https://togithub.com/eslint/eslint/releases/tag/v8.28.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.27.0...v8.28.0) #### Features - [`63bce44`](https://togithub.com/eslint/eslint/commit/63bce44e7b6326e1e94fc7f6283df8de7bbac273) feat: add `ignoreClassFieldInitialValues` option to no-magic-numbers ([#​16539](https://togithub.com/eslint/eslint/issues/16539)) (Milos Djermanovic) - [`8385ecd`](https://togithub.com/eslint/eslint/commit/8385ecdbbe342211e20aebe76fa7affe8ec04c33) feat: multiline properties in rule `key-spacing` with option `align` ([#​16532](https://togithub.com/eslint/eslint/issues/16532)) (Francesco Trotta) - [`a4e89db`](https://togithub.com/eslint/eslint/commit/a4e89dbe85589dab982885872dc206e090c27b3c) feat: `no-obj-calls` support `Intl` ([#​16543](https://togithub.com/eslint/eslint/issues/16543)) (Sosuke Suzuki) #### Bug Fixes - [`c50ae4f`](https://togithub.com/eslint/eslint/commit/c50ae4f840d1ee9dc7b80a46c887398c0ec0a67c) fix: Ensure that dot files are found with globs. ([#​16550](https://togithub.com/eslint/eslint/issues/16550)) (Nicholas C. Zakas) - [`9432b67`](https://togithub.com/eslint/eslint/commit/9432b67f76ddd7b8a73d37e8a041a9ff25822f0c) fix: throw error for first unmatched pattern ([#​16533](https://togithub.com/eslint/eslint/issues/16533)) (Milos Djermanovic) - [`e76c382`](https://togithub.com/eslint/eslint/commit/e76c3827727b48c16af8467c02c31160e5595d83) fix: allow `* 1` when followed by `/` in no-implicit-coercion ([#​16522](https://togithub.com/eslint/eslint/issues/16522)) (Milos Djermanovic) #### Documentation - [`34c05a7`](https://togithub.com/eslint/eslint/commit/34c05a779ada3142995392ae12978461900088df) docs: Language Options page intro and tweaks ([#​16511](https://togithub.com/eslint/eslint/issues/16511)) (Ben Perlmutter) - [`3e66387`](https://togithub.com/eslint/eslint/commit/3e663873c97773ab1ecdff54aaa122075d5bb389) docs: add intro and edit ignoring files page ([#​16510](https://togithub.com/eslint/eslint/issues/16510)) (Ben Perlmutter) - [`436f712`](https://togithub.com/eslint/eslint/commit/436f712843360f98b2bd63256bf0c4f77013b54c) docs: fix Header UI inconsistency ([#​16464](https://togithub.com/eslint/eslint/issues/16464)) (Tanuj Kanti) - [`f743816`](https://togithub.com/eslint/eslint/commit/f74381696703d8eed0e175d42f96904a3d1cb4cb) docs: switch to wrench emoji for auto-fixable rules ([#​16545](https://togithub.com/eslint/eslint/issues/16545)) (Bryan Mishkin) - [`bc0547e`](https://togithub.com/eslint/eslint/commit/bc0547eb149a1e04211826662d2d798fb331983d) docs: improve styles for versions and languages page ([#​16553](https://togithub.com/eslint/eslint/issues/16553)) (Nitin Kumar) - [`6070f58`](https://togithub.com/eslint/eslint/commit/6070f58d802d77c6c781c6bc1f554eef8b3d8f68) docs: clarify esquery issue workaround ([#​16556](https://togithub.com/eslint/eslint/issues/16556)) (Milos Djermanovic) - [`b48e4f8`](https://togithub.com/eslint/eslint/commit/b48e4f89c59bd1c5408e3db492a0e95a402820bd) docs: Command Line Interface intro and tweaks ([#​16535](https://togithub.com/eslint/eslint/issues/16535)) (Ben Perlmutter) - [`b92b30f`](https://togithub.com/eslint/eslint/commit/b92b30f93db64314827305b552cbb832c63fa949) docs: Add Rules page intro and content tweaks ([#​16523](https://togithub.com/eslint/eslint/issues/16523)) (Ben Perlmutter) - [`1769b42`](https://togithub.com/eslint/eslint/commit/1769b423392512db4adf1eff75896c1ac0c3606b) docs: Integrations page introduction ([#​16548](https://togithub.com/eslint/eslint/issues/16548)) (Ben Perlmutter) - [`a8d0a57`](https://togithub.com/eslint/eslint/commit/a8d0a57cbc29a917258df41d3254ecd29bcf61ab) docs: make table of contents sticky on desktop ([#​16506](https://togithub.com/eslint/eslint/issues/16506)) (Sam Chen) - [`a01315a`](https://togithub.com/eslint/eslint/commit/a01315a7d8f3a70468b7a644fde01d6983778c6b) docs: fix route of japanese translation site ([#​16542](https://togithub.com/eslint/eslint/issues/16542)) (Tanuj Kanti) - [`0515628`](https://togithub.com/eslint/eslint/commit/05156285396eba9ce3d3a0990a8c89d5bc229636) docs: use emoji instead of svg for deprecated rule ([#​16536](https://togithub.com/eslint/eslint/issues/16536)) (Bryan Mishkin) - [`68f1288`](https://togithub.com/eslint/eslint/commit/68f12882fbaeda8ffb26425d42d261346ff5af51) docs: set default layouts ([#​16484](https://togithub.com/eslint/eslint/issues/16484)) (Percy Ma) - [`776827a`](https://togithub.com/eslint/eslint/commit/776827a1748da88a25e7903bd794f5439de922b5) docs: init config about specifying shared configs ([#​16483](https://togithub.com/eslint/eslint/issues/16483)) (Percy Ma) - [`5c39425`](https://togithub.com/eslint/eslint/commit/5c39425fc55ecc0b97bbd07ac22654c0eb4f789c) docs: fix broken link to plugins ([#​16520](https://togithub.com/eslint/eslint/issues/16520)) (Ádám T. Nagy) - [`c97c789`](https://togithub.com/eslint/eslint/commit/c97c7897686ac4dc2828537d6a017f3c99f7d905) docs: Add missing no-new-native-nonconstructor docs code fence ([#​16503](https://togithub.com/eslint/eslint/issues/16503)) (Brandon Mills) #### Chores - [`e94a4a9`](https://togithub.com/eslint/eslint/commit/e94a4a95ee301b0344d3292c37a0b29d8e18ab30) chore: Add tests to verify [#​16038](https://togithub.com/eslint/eslint/issues/16038) is fixed ([#​16538](https://togithub.com/eslint/eslint/issues/16538)) (Nicholas C. Zakas) - [`e13f194`](https://togithub.com/eslint/eslint/commit/e13f194f89f591730aa955f7b62192c7e8296069) chore: stricter validation of `meta.docs.description` in core rules ([#​16529](https://togithub.com/eslint/eslint/issues/16529)) (Milos Djermanovic) - [`72dbfbc`](https://togithub.com/eslint/eslint/commit/72dbfbc0c45d2b9d19b21c6a5a6b4ca71403ffbf) chore: use `pkg` parameter in `getNpmPackageVersion` ([#​16525](https://togithub.com/eslint/eslint/issues/16525)) (webxmsj) ### [`v8.27.0`](https://togithub.com/eslint/eslint/releases/tag/v8.27.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.26.0...v8.27.0) ##### Features - [`f14587c`](https://togithub.com/eslint/eslint/commit/f14587c42bb0fe6ec89529aede045a488083d6ee) feat: new `no-new-native-nonconstructor` rule ([#​16368](https://togithub.com/eslint/eslint/issues/16368)) (Sosuke Suzuki) - [`978799b`](https://togithub.com/eslint/eslint/commit/978799bd5c76fecf4ce8f17d89ad6c9f436c3228) feat: add new rule `no-empty-static-block` ([#​16325](https://togithub.com/eslint/eslint/issues/16325)) (Sosuke Suzuki) - [`69216ee`](https://togithub.com/eslint/eslint/commit/69216ee69c7172e847b64e0e934b5121a34d0ea3) feat: no-empty suggest to add comment in empty BlockStatement ([#​16470](https://togithub.com/eslint/eslint/issues/16470)) (Nitin Kumar) - [`319f0a5`](https://togithub.com/eslint/eslint/commit/319f0a5491598825bbd528c6d1fc12771056a74c) feat: use `context.languageOptions.ecmaVersion` in core rules ([#​16458](https://togithub.com/eslint/eslint/issues/16458)) (Milos Djermanovic) ##### Bug Fixes - [`c3ce521`](https://togithub.com/eslint/eslint/commit/c3ce5212f672d95dde3465d7d3c4bf99ff665f8b) fix: Ensure unmatched glob patterns throw an error ([#​16462](https://togithub.com/eslint/eslint/issues/16462)) (Nicholas C. Zakas) - [`886a038`](https://togithub.com/eslint/eslint/commit/886a0386897f96d2da95eba8c52bd893fcbf7e86) fix: handle files with unspecified path in `getRulesMetaForResults` ([#​16437](https://togithub.com/eslint/eslint/issues/16437)) (Francesco Trotta) ##### Documentation - [`ce93b42`](https://togithub.com/eslint/eslint/commit/ce93b429bf917640473dd7e26b49bba993c68ce4) docs: Stylelint property-no-unknown ([#​16497](https://togithub.com/eslint/eslint/issues/16497)) (Nick Schonning) - [`d2cecb4`](https://togithub.com/eslint/eslint/commit/d2cecb4ad2a6d33444cf0288a863c43acb3b468a) docs: Stylelint declaration-block-no-shorthand-property-overrides ([#​16498](https://togithub.com/eslint/eslint/issues/16498)) (Nick Schonning) - [`0a92805`](https://togithub.com/eslint/eslint/commit/0a92805d7713118866e519b0ff2a61c5d6238ad9) docs: stylelint color-hex-case ([#​16496](https://togithub.com/eslint/eslint/issues/16496)) (Nick Schonning) - [`74a5af4`](https://togithub.com/eslint/eslint/commit/74a5af487ac7296a46a8078e585f00df72b63d83) docs: fix stylelint error ([#​16491](https://togithub.com/eslint/eslint/issues/16491)) (Milos Djermanovic) - [`324db1a`](https://togithub.com/eslint/eslint/commit/324db1a11e43ba9d954dc522763faea19129ce6a) docs: explicit stylelint color related rules ([#​16465](https://togithub.com/eslint/eslint/issues/16465)) (Nick Schonning) - [`94dc4f1`](https://togithub.com/eslint/eslint/commit/94dc4f19ba49fe2358f8bcc2fc3555d222766755) docs: use Stylelint for HTML files ([#​16468](https://togithub.com/eslint/eslint/issues/16468)) (Nick Schonning) - [`cc6128d`](https://togithub.com/eslint/eslint/commit/cc6128db4f489c3ab80fff2f9dbeea313e72208d) docs: enable stylelint declaration-block-no-duplicate-properties ([#​16466](https://togithub.com/eslint/eslint/issues/16466)) (Nick Schonning) - [`d03a8bf`](https://togithub.com/eslint/eslint/commit/d03a8bf8978bd330aeb951f18cc92bf1ad24eeec) docs: Add heading to justification explanation ([#​16430](https://togithub.com/eslint/eslint/issues/16430)) (Maritaria) - [`8a15968`](https://togithub.com/eslint/eslint/commit/8a159686f9d497262d573dd601855ce28362199b) docs: add Stylelint configuration and cleanup ([#​16379](https://togithub.com/eslint/eslint/issues/16379)) (Nick Schonning) - [`9b0a469`](https://togithub.com/eslint/eslint/commit/9b0a469d1e4650c1d9da26239357e715b11b2d97) docs: note commit messages don't support scope ([#​16435](https://togithub.com/eslint/eslint/issues/16435)) (Andy Edwards) - [`1581405`](https://togithub.com/eslint/eslint/commit/15814057fd69319b3744bdea5db2455f85d2e74f) docs: improve context.getScope() docs ([#​16417](https://togithub.com/eslint/eslint/issues/16417)) (Ben Perlmutter) - [`b797149`](https://togithub.com/eslint/eslint/commit/b7971496e9b44add405ca0360294f5c3be85b540) docs: update formatters template ([#​16454](https://togithub.com/eslint/eslint/issues/16454)) (Milos Djermanovic) - [`5ac4de9`](https://togithub.com/eslint/eslint/commit/5ac4de911f712cb3a5a16eb7a4063eee09dfc97c) docs: fix link to formatters on the Core Concepts page ([#​16455](https://togithub.com/eslint/eslint/issues/16455)) (Vladislav) - [`33313ef`](https://togithub.com/eslint/eslint/commit/33313ef56258a6a96b00a3e70025b94bd2f2fe9f) docs: core-concepts: fix link to semi rule ([#​16453](https://togithub.com/eslint/eslint/issues/16453)) (coderaiser) ### [`v8.26.0`](https://togithub.com/eslint/eslint/releases/tag/v8.26.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.25.0...v8.26.0) ##### Features - [`4715787`](https://togithub.com/eslint/eslint/commit/4715787724a71494ba0bb0c5fe4639570bb6985b) feat: check `Object.create()` in getter-return ([#​16420](https://togithub.com/eslint/eslint/issues/16420)) (Yuki Hirasawa) - [`28d1902`](https://togithub.com/eslint/eslint/commit/28d190264017dbaa29f2ab218f73b623143cd1af) feat: `no-implicit-globals` supports `exported` block comment ([#​16343](https://togithub.com/eslint/eslint/issues/16343)) (Sosuke Suzuki) - [`e940be7`](https://togithub.com/eslint/eslint/commit/e940be7a83d0caea15b64c1e1c2785a6540e2641) feat: Use ESLINT_USE_FLAT_CONFIG environment variable for flat config ([#​16356](https://togithub.com/eslint/eslint/issues/16356)) (Tomer Aberbach) - [`dd0c58f`](https://togithub.com/eslint/eslint/commit/dd0c58f0f34d24331ae55139af39cf2747125f5e) feat: Swap out Globby for custom globbing solution. ([#​16369](https://togithub.com/eslint/eslint/issues/16369)) (Nicholas C. Zakas) ##### Bug Fixes - [`df77409`](https://togithub.com/eslint/eslint/commit/df7740967ffab2915974c7b310ac76ea2915ac2d) fix: use `baseConfig` constructor option in FlatESLint ([#​16432](https://togithub.com/eslint/eslint/issues/16432)) (Milos Djermanovic) - [`33668ee`](https://togithub.com/eslint/eslint/commit/33668ee9d22e1988ba03e07fb547738bdb21dc0e) fix: Ensure that glob patterns are matched correctly. ([#​16449](https://togithub.com/eslint/eslint/issues/16449)) (Nicholas C. Zakas) - [`740b208`](https://togithub.com/eslint/eslint/commit/740b20826fadc5322ea5547c1ba41793944e571d) fix: ignore messages without a `ruleId` in `getRulesMetaForResults` ([#​16409](https://togithub.com/eslint/eslint/issues/16409)) (Francesco Trotta) - [`8f9759e`](https://togithub.com/eslint/eslint/commit/8f9759e2a94586357d85fac902e038fabdba79a7) fix: `--ignore-pattern` in flat config mode should be relative to `cwd` ([#​16425](https://togithub.com/eslint/eslint/issues/16425)) (Milos Djermanovic) - [`325ad37`](https://togithub.com/eslint/eslint/commit/325ad375a52d1c7b8b8fd23943350c91781366a2) fix: make `getRulesMetaForResults` return a plain object in trivial case ([#​16438](https://togithub.com/eslint/eslint/issues/16438)) (Francesco Trotta) - [`a2810bc`](https://togithub.com/eslint/eslint/commit/a2810bc485d9f1123a86b60702fcaa51e19d71a3) fix: Ensure that directories can be unignored. ([#​16436](https://togithub.com/eslint/eslint/issues/16436)) (Nicholas C. Zakas) - [`35916ad`](https://togithub.com/eslint/eslint/commit/35916ad9bfc07dab63361721df1bd7f21e43e094) fix: Ensure unignore and reignore work correctly in flat config. ([#​16422](https://togithub.com/eslint/eslint/issues/16422)) (Nicholas C. Zakas) ##### Documentation - [`651649b`](https://togithub.com/eslint/eslint/commit/651649b12797594a86c0d659d6a0d1cdbda6f57b) docs: Core concepts page ([#​16399](https://togithub.com/eslint/eslint/issues/16399)) (Ben Perlmutter) - [`631cf72`](https://togithub.com/eslint/eslint/commit/631cf72e82f316a2cc08770e5c81b858637ab04a) docs: note --ignore-path not supported with flat config ([#​16434](https://togithub.com/eslint/eslint/issues/16434)) (Andy Edwards) - [`1692840`](https://togithub.com/eslint/eslint/commit/1692840a2f763737a4891419dc304db4ebedab5d) docs: fix syntax in examples for new config files ([#​16427](https://togithub.com/eslint/eslint/issues/16427)) (Milos Djermanovic) - [`d336cfc`](https://togithub.com/eslint/eslint/commit/d336cfc9145a72bf8730250ee1e331a135e6ee2c) docs: Document extending plugin with new config ([#​16394](https://togithub.com/eslint/eslint/issues/16394)) (Ben Perlmutter) ##### Chores - [`e917a9a`](https://togithub.com/eslint/eslint/commit/e917a9a2e555d398c64b985fc933d44a42c958f0) ci: add node v19 ([#​16443](https://togithub.com/eslint/eslint/issues/16443)) (Koichi ITO) - [`4b70b91`](https://togithub.com/eslint/eslint/commit/4b70b91a6e28669ab8e2a4ce2a6d9ed40be20fa7) chore: Add VS Code issues link ([#​16423](https://togithub.com/eslint/eslint/issues/16423)) (Nicholas C. Zakas) - [`232d291`](https://togithub.com/eslint/eslint/commit/232d2916ac5e44db55c2ffbd2f3b37ad70037b7b) chore: suppress a Node.js deprecation warning ([#​16398](https://togithub.com/eslint/eslint/issues/16398)) (Koichi ITO)
unjs/listhen ### [`v0.3.5`](https://togithub.com/unjs/listhen/blob/HEAD/CHANGELOG.md#​035-httpsgithubcomunjslisthencomparev034v035-2022-11-02) [Compare Source](https://togithub.com/unjs/listhen/compare/v0.3.4...v0.3.5)
unjs/ohmyfetch ### [`v0.4.21`](https://togithub.com/unjs/ohmyfetch/blob/HEAD/CHANGELOG.md#​0421-httpsgithubcomunjsofetchcomparev0420v0421-2022-11-03) [Compare Source](https://togithub.com/unjs/ohmyfetch/compare/v0.4.20...v0.4.21)
pnpm/pnpm ### [`v7.17.0`](https://togithub.com/pnpm/pnpm/releases/tag/v7.17.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.16.1...v7.17.0) #### Minor Changes - Added a new command `pnpm licenses list`, which displays the licenses of the packages [#​2825](https://togithub.com/pnpm/pnpm/issues/2825) #### Patch Changes - `pnpm update --latest !foo` should not update anything if the only dependency in the project is the ignored one [#​5643](https://togithub.com/pnpm/pnpm/pull/5643). - `pnpm audit` should send the versions of workspace projects for audit. - Hoisting with symlinks should not override external symlinks and directories in the root of node_modules. - The `pnpm.updateConfig.ignoreDependencies` setting should work with multiple dependencies in the array [#​5639](https://togithub.com/pnpm/pnpm/issues/5639). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.16.1`](https://togithub.com/pnpm/pnpm/releases/tag/v7.16.1) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.16.0...v7.16.1) #### Patch Changes - Sync all injected dependencies when hoisted node linker is used [#​5630](https://togithub.com/pnpm/pnpm/pull/5630) #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.16.0`](https://togithub.com/pnpm/pnpm/releases/tag/v7.16.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.15.0...v7.16.0) #### Minor Changes - Support `pnpm env list` to list global or remote Node.js versions [#​5546](https://togithub.com/pnpm/pnpm/issues/5546). #### Patch Changes - Replace environment variable placeholders with their values, when reading `.npmrc` files in subdirectories inside a workspace [#​2570](https://togithub.com/pnpm/pnpm/issues/2570). - Fix an error that sometimes happen on projects with linked local dependencies [#​5327](https://togithub.com/pnpm/pnpm/issues/5327). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.15.0`](https://togithub.com/pnpm/pnpm/releases/tag/v7.15.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.14.2...v7.15.0) #### Minor Changes - Support `--format=json` option to output outdated packages in JSON format with `outdated` command [#​2705](https://togithub.com/pnpm/pnpm/issues/2705). ```bash pnpm outdated --format=json #or pnpm outdated --json ``` - A new setting supported for ignoring vulnerabilities by their CVEs. The ignored CVEs may be listed in the `pnpm.auditConfig.ignoreCves` field of `package.json`. For instance: ```json { "pnpm": { "auditConfig": { "ignoreCves": [ "CVE-2019-10742", "CVE-2020-28168", "CVE-2021-3749", "CVE-2020-7598" ] } } } ``` #### Patch Changes - The reporter should not crash when the CLI process is kill during lifecycle scripts execution [#​5588](https://togithub.com/pnpm/pnpm/pull/5588). - Installation shouldn't fail when the injected dependency has broken symlinks. The broken symlinks should be just skipped [#​5598](https://togithub.com/pnpm/pnpm/issues/5598). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.14.2`](https://togithub.com/pnpm/pnpm/releases/tag/v7.14.2) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.14.1...v7.14.2) ##### Patch Changes - Don't fail if cannot override the name field of the error object [#​5572](https://togithub.com/pnpm/pnpm/issues/5572). - Don't fail on rename across devices. ##### Our Gold Sponsors
##### Our Silver Sponsors
### [`v7.14.1`](https://togithub.com/pnpm/pnpm/releases/tag/v7.14.1) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.14.0...v7.14.1) #### Patch Changes - `pnpm list --long --json` should print licenses and authors of packages [#​5533](https://togithub.com/pnpm/pnpm/pull/5533). - Don't crash on lockfile with no packages field [#​5553](https://togithub.com/pnpm/pnpm/issues/5553). - Version overrider should have higher priority then custom read package hook from `.pnpmfile.cjs`. - Don't print context information when running install for the `pnpm dlx` command. - Print a warning if a `package.json` has a workspaces field but there is no `pnpm-workspace.yaml` file [#​5363](https://togithub.com/pnpm/pnpm/issues/5363). - It should be possible to set a custom home directory for pnpm by changing the PNPM_HOME environment variable. #### Our Gold Sponsors
config help if that's undesired.


  • [ ] If you want to rebase/retry this PR, check this box

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

codecov[bot] commented 1 year ago

Codecov Report

Merging #87 (41d0276) into main (c6ab8ae) will not change coverage. The diff coverage is 0.00%.

@@           Coverage Diff           @@
##             main      #87   +/-   ##
=======================================
  Coverage   58.95%   58.95%           
=======================================
  Files          10       10           
  Lines         782      782           
  Branches       43       43           
=======================================
  Hits          461      461           
  Misses        321      321           
Impacted Files Coverage Δ
src/middleware.ts 24.16% <0.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.