timdeschryver / timdeschryver.dev

https://timdeschryver.dev
55 stars 30 forks source link

chore(deps): update all #312

Closed renovate[bot] closed 9 months ago

renovate[bot] commented 9 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sveltejs/adapter-vercel (source) 4.0.4 -> 4.0.5 age adoption passing confidence
@sveltejs/kit (source) 2.3.2 -> 2.4.0 age adoption passing confidence
prettier (source) 3.1.1 -> 3.2.4 age adoption passing confidence
svelte (source) 4.2.8 -> 4.2.9 age adoption passing confidence
svelte-check 3.6.2 -> 3.6.3 age adoption passing confidence

Release Notes

sveltejs/kit (@​sveltejs/adapter-vercel) ### [`v4.0.5`](https://togithub.com/sveltejs/kit/blob/HEAD/packages/adapter-vercel/CHANGELOG.md#405) [Compare Source](https://togithub.com/sveltejs/kit/compare/@sveltejs/adapter-vercel@4.0.4...@sveltejs/adapter-vercel@4.0.5) ##### Patch Changes - chore: upgrade esbuild to 0.19.11 ([#​11632](https://togithub.com/sveltejs/kit/pull/11632))
sveltejs/kit (@​sveltejs/kit) ### [`v2.4.0`](https://togithub.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#240) [Compare Source](https://togithub.com/sveltejs/kit/compare/@sveltejs/kit@2.3.5...@sveltejs/kit@2.4.0) ##### Minor Changes - feat: add `$app/server` module with `read` function for reading assets from filesystem ([#​11649](https://togithub.com/sveltejs/kit/pull/11649)) ### [`v2.3.5`](https://togithub.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#235) [Compare Source](https://togithub.com/sveltejs/kit/compare/@sveltejs/kit@2.3.4...@sveltejs/kit@2.3.5) ##### Patch Changes - fix: log a warning if fallback page overwrites prerendered page ([#​11661](https://togithub.com/sveltejs/kit/pull/11661)) ### [`v2.3.4`](https://togithub.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#234) [Compare Source](https://togithub.com/sveltejs/kit/compare/@sveltejs/kit@2.3.3...@sveltejs/kit@2.3.4) ##### Patch Changes - fix: don't stash away original `history` methods so other libs can monkeypatch it ([#​11657](https://togithub.com/sveltejs/kit/pull/11657)) ### [`v2.3.3`](https://togithub.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#233) [Compare Source](https://togithub.com/sveltejs/kit/compare/@sveltejs/kit@2.3.2...@sveltejs/kit@2.3.3) ##### Patch Changes - fix: remove internal `__sveltekit/` module declarations from types ([#​11620](https://togithub.com/sveltejs/kit/pull/11620))
prettier/prettier (prettier) ### [`v3.2.4`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#324) [Compare Source](https://togithub.com/prettier/prettier/compare/3.2.3...3.2.4) [diff](https://togithub.com/prettier/prettier/compare/3.2.3...3.2.4) ##### Fix incorrect parser inference ([#​15947](https://togithub.com/prettier/prettier/pull/15947) by [@​fisker](https://togithub.com/fisker)) Files like `.eslintrc.json` were incorrectly formatted as JSONC files. ```jsx // Input prettier --file-info .eslintrc.json { "ignored": false, "inferredParser": "jsonc" } // Prettier 3.2.4 prettier --file-info .eslintrc.json { "ignored": false, "inferredParser": "json" } ``` ### [`v3.2.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#323) [Compare Source](https://togithub.com/prettier/prettier/compare/3.2.2...3.2.3) [diff](https://togithub.com/prettier/prettier/compare/3.2.2...3.2.3) ##### Throw errors for invalid code ([#​15881](https://togithub.com/prettier/prettier/pull/15881) by [@​fisker](https://togithub.com/fisker), [@​Josh-Cena](https://togithub.com/Josh-Cena), [@​auvred](https://togithub.com/auvred)) ```ts // Input 1++; // Prettier 3.2.2 1++; // Prettier 3.2.3 SyntaxError: Invalid left-hand side expression in unary operation (1:1) > 1 | 1++; | ^ ``` ```ts // Input try {} catch (error = 1){} // Prettier 3.2.2 try { } catch (error) {} // Prettier 3.2.3 SyntaxError: Catch clause variable cannot have an initializer. (1:23) > 1 | try {} catch (error = 1){} | ^ ``` ##### Fix parser inference ([#​15927](https://togithub.com/prettier/prettier/pull/15927) by [@​fisker](https://togithub.com/fisker)) ```console // Prettier 3.2.2 prettier --file-info tsconfig.json { "ignored": false, "inferredParser": "json" } // Prettier 3.2.3 prettier --file-info tsconfig.json { "ignored": false, "inferredParser": "jsonc" } ``` ### [`v3.2.2`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#322) [Compare Source](https://togithub.com/prettier/prettier/compare/3.2.1...3.2.2) [diff](https://togithub.com/prettier/prettier/compare/3.2.1...3.2.2) ##### Fix crash when parsing template literal CSS in a JSX style tag using a spread attribute ([#​15896](https://togithub.com/prettier/prettier/pull/15896) by [@​eelco](https://togithub.com/eelco)) For example this code would crash before: ```jsx ``` ##### Fix formatting error on optional call expression and member chain ([#​15920](https://togithub.com/prettier/prettier/pull/15920) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ```jsx // Input a(() => {}, c?.d()); // Prettier 3.2.1 TypeError: Cannot read properties of undefined (reading 'type') // Prettier 3.2.2 a(() => {}, c?.d()); ``` ### [`v3.2.1`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#321) [Compare Source](https://togithub.com/prettier/prettier/compare/3.2.0...3.2.1) [diff](https://togithub.com/prettier/prettier/compare/3.2.0...3.2.1) ##### Fix formatting error on member chain ([#​15915](https://togithub.com/prettier/prettier/pull/15915) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ```jsx // Input test().test2().test2(thing?.something); // Prettier 3.2.0 TypeError: Cannot read properties of undefined (reading 'type') // Prettier 3.2.1 test().test2().test2(thing?.something); ``` ### [`v3.2.0`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#320) [Compare Source](https://togithub.com/prettier/prettier/compare/3.1.1...3.2.0) [diff](https://togithub.com/prettier/prettier/compare/3.1.1...3.2.0) 🔗 [Release Notes](https://prettier.io/blog/2024/01/13/3.2.0.html)
sveltejs/svelte (svelte) ### [`v4.2.9`](https://togithub.com/sveltejs/svelte/releases/tag/svelte%404.2.9) [Compare Source](https://togithub.com/sveltejs/svelte/compare/svelte@4.2.8...svelte@4.2.9) ##### Patch Changes - fix: add types for popover attributes and events ([#​10042](https://togithub.com/sveltejs/svelte/pull/10042)) - fix: add `gamepadconnected` and `gamepaddisconnected` events ([#​9864](https://togithub.com/sveltejs/svelte/pull/9864)) - fix: make `@types/estree` a dependency ([#​10149](https://togithub.com/sveltejs/svelte/pull/10149)) - fix: bump `axobject-query` ([#​10167](https://togithub.com/sveltejs/svelte/pull/10167))
sveltejs/language-tools (svelte-check) ### [`v3.6.3`](https://togithub.com/sveltejs/language-tools/releases/tag/svelte-check-3.6.3) [Compare Source](https://togithub.com/sveltejs/language-tools/compare/svelte-check-3.6.2...svelte-check-3.6.3) - fix: various snippet improvements - fix: don't remove non-null-assertion operator ([#​2248](https://togithub.com/sveltejs/language-tools/issues/2248)) - fix: prevent crash in moduleResolution Node16+ ([#​2230](https://togithub.com/sveltejs/language-tools/issues/2230)) - fix: correct declareMap reference line number ([#​2250](https://togithub.com/sveltejs/language-tools/issues/2250)) - feat: zero effort typings for reroute ([#​2252](https://togithub.com/sveltejs/language-tools/issues/2252))

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" in timezone Europe/Brussels, Automerge - At any time (no schedule defined).

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

github-actions[bot] commented 9 months ago

Azure Static Web Apps: Your stage site is ready! Visit it here: https://salmon-rock-0fb035b03-312.westeurope.1.azurestaticapps.net