AVGVSTVS96 / astroSite

Built with Astro and TailwindCSS, this MPA portfolio & blog site is version 3 of my personal website, my first MPA.
https://astrosite-aid.pages.dev/
GNU Affero General Public License v3.0
0 stars 0 forks source link

chore(dev-deps): update dev-dependencies #489

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/check (source) 0.7.0 -> 0.8.1 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
type-coverage 2.29.0 -> 2.29.1 age adoption passing confidence
typescript (source) 5.5.2 -> 5.5.3 age adoption passing confidence
wrangler (source) 3.62.0 -> 3.64.0 age adoption passing confidence

Release Notes

withastro/language-tools (@​astrojs/check) ### [`v0.8.1`](https://togithub.com/withastro/language-tools/blob/HEAD/packages/astro-check/CHANGELOG.md#081) [Compare Source](https://togithub.com/withastro/language-tools/compare/@astrojs/check@0.8.0...@astrojs/check@0.8.1) ##### Patch Changes - [`5eb20f2`](https://togithub.com/withastro/language-tools/commit/5eb20f2): Fixes installation on Yarn 4 - Updated dependencies \[[`5eb20f2`](https://togithub.com/withastro/language-tools/commit/5eb20f2)] - [@​astrojs/language-server](https://togithub.com/astrojs/language-server)[@​2](https://togithub.com/2).11.1 ### [`v0.8.0`](https://togithub.com/withastro/language-tools/blob/HEAD/packages/astro-check/CHANGELOG.md#080) [Compare Source](https://togithub.com/withastro/language-tools/compare/@astrojs/check@0.7.0...@astrojs/check@0.8.0) ##### Minor Changes - [`b8a6af3`](https://togithub.com/withastro/language-tools/commit/b8a6af3): Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags. ##### Patch Changes - [`a1769da`](https://togithub.com/withastro/language-tools/commit/a1769da): Adds a README with helpful links - Updated dependencies \[[`b8a6af3`](https://togithub.com/withastro/language-tools/commit/b8a6af3)] - [@​astrojs/language-server](https://togithub.com/astrojs/language-server)[@​2](https://togithub.com/2).11.0
prettier/prettier (prettier) ### [`v3.3.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#333) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) [diff](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) ##### Add parentheses for nullish coalescing in ternary ([#​16391](https://togithub.com/prettier/prettier/pull/16391) by [@​cdignam-segment](https://togithub.com/cdignam-segment)) This change adds clarity to operator precedence. ```js // Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.2 foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.3 foo ? (bar ?? foo) : baz; (foo ?? bar) ? a : b; a ? b : (foo ?? bar); ``` ##### Add parentheses for decorator expressions ([#​16458](https://togithub.com/prettier/prettier/pull/16458) by [@​y-schneider](https://togithub.com/y-schneider)) Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5. ```ts // Input @​(foo`tagged template`) class X {} // Prettier 3.3.2 @​foo`tagged template` class X {} // Prettier 3.3.3 @​(foo`tagged template`) class X {} ``` ##### Support `@let` declaration syntax ([#​16474](https://togithub.com/prettier/prettier/pull/16474) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) Adds support for Angular v18 `@let` declaration syntax. Please see the following code example. The `@let` declaration allows you to define local variables within the template: ```html @​let name = 'Frodo';

Dashboard for {{name}}

Hello, {{name}} ``` For more details, please refer to the excellent blog post by the Angular Team: [Introducing @​let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f). We also appreciate the Angular Team for kindly answering our questions to implement this feature.
plantain-00/type-coverage (type-coverage) ### [`v2.29.1`](https://togithub.com/plantain-00/type-coverage/blob/HEAD/CHANGELOG.md#2291-2024-07-09) [Compare Source](https://togithub.com/plantain-00/type-coverage/compare/v2.29.0...v2.29.1) - fix: handle class static block delclaration ([367f9bd](https://togithub.com/plantain-00/type-coverage/commit/367f9bd2f659d3f63504ee14a3a0d16b03f7b5fd)) - chore: update dependencies ([051d7e5](https://togithub.com/plantain-00/type-coverage/commit/051d7e56a369453b976ef918db83863b6e133174))
Microsoft/TypeScript (typescript) ### [`v5.5.3`](https://togithub.com/Microsoft/TypeScript/compare/v5.5.2...f0e992167440686f948965e5441a918b34251886) [Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.5.2...v5.5.3)
cloudflare/workers-sdk (wrangler) ### [`v3.64.0`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3640) ##### Minor Changes - [#​4925](https://togithub.com/cloudflare/workers-sdk/pull/4925) [`7d4a4d0`](https://togithub.com/cloudflare/workers-sdk/commit/7d4a4d047be4f18312976efb3339ebba28cf0d82) Thanks [@​dom96](https://togithub.com/dom96)! - feature: whoami, logout and login commands mention the CLOUDFLARE_API_TOKEN env var now It is easy to get confused when trying to logout while the CLOUDFLARE_API_TOKEN env var is set. The logout command normally prints out a message which states that the user is not logged in. This change rectifes this to explicitly call out that the CLOUDFLARE_API_TOKEN is set and requests that the user unsets it to logout. ##### Patch Changes - [#​5032](https://togithub.com/cloudflare/workers-sdk/pull/5032) [`75f7928`](https://togithub.com/cloudflare/workers-sdk/commit/75f7928b3c19a39468d4f2c49c8fbed9281f55be) Thanks [@​dbenCF](https://togithub.com/dbenCF)! - Adding client side error handling for R2 when the user tries to create a bucket with an invalid name. The purpose of this addition is to provide the user with more context when encountering this error. - [#​4398](https://togithub.com/cloudflare/workers-sdk/pull/4398) [`4b1e5bc`](https://togithub.com/cloudflare/workers-sdk/commit/4b1e5bcc1dcdbf4c2e4251b066b1f30eec32d8ce) Thanks [@​mattpocock](https://togithub.com/mattpocock)! - fix: update tsconfig for Workers generated by wrangler init ### [`v3.63.2`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3632) ##### Patch Changes - [#​6199](https://togithub.com/cloudflare/workers-sdk/pull/6199) [`88313e5`](https://togithub.com/cloudflare/workers-sdk/commit/88313e50512ffbcfe8717dc60cf83a4d07a7509d) Thanks [@​dario-piotrowicz](https://togithub.com/dario-piotrowicz)! - fix: make sure `getPlatformProxy`'s `ctx` methods throw illegal invocation errors like workerd in workerd detaching the `waitUntil` and `passThroughOnException` methods from the `ExecutionContext` object results in them throwing `illegal invocation` errors, such as for example: ```js export default { async fetch(_request, _env, { waitUntil }) { waitUntil(() => {}); // <-- throws an illegal invocation error return new Response("Hello World!"); }, }; ``` make sure that the same behavior is applied to the `ctx` object returned by `getPlatformProxy` - [#​5569](https://togithub.com/cloudflare/workers-sdk/pull/5569) [`75ba960`](https://togithub.com/cloudflare/workers-sdk/commit/75ba9608faa9e5710fe1dc75b5852ae446696245) Thanks [@​penalosa](https://togithub.com/penalosa)! - fix: Simplify `wrangler pages download config`: - Don't include inheritable keys in the production override if they're equal to production - Only create a preview environment if needed, otherwise put the preview config at the top level ### [`v3.63.1`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3631) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.63.0...wrangler@3.63.1) ##### Patch Changes - [#​6192](https://togithub.com/cloudflare/workers-sdk/pull/6192) [`b879ce4`](https://togithub.com/cloudflare/workers-sdk/commit/b879ce49aff454f9fe34f86886fc97db8ff8083e) Thanks [@​petebacondarwin](https://togithub.com/petebacondarwin)! - fix: do not report D1 user errors to Sentry - [#​6150](https://togithub.com/cloudflare/workers-sdk/pull/6150) [`d993409`](https://togithub.com/cloudflare/workers-sdk/commit/d9934090594a7101912bd35aacc86ceb4cc15c3a) Thanks [@​CarmenPopoviciu](https://togithub.com/CarmenPopoviciu)! - fix: Fix `pages dev` watch mode \[\_worker.js] The watch mode in `pages dev` for Advanced Mode projects is currently partially broken, as it only watches for changes in the "\_worker.js" file, but not for changes in any of its imported dependencies. This means that given the following "\_worker.js" file import { graham } from "./graham-the-dog"; export default { fetch(request, env) { return new Response(graham) } } `pages dev` will reload for any changes in the `_worker.js` file itself, but not for any changes in `graham-the-dog.js`, which is its dependency. Similarly, `pages dev` will not reload for any changes in non-JS module imports, such as wasm/html/binary module imports. This commit fixes all the aforementioned issues. ### [`v3.63.0`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3630) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.62.0...wrangler@3.63.0) ##### Minor Changes - [#​6167](https://togithub.com/cloudflare/workers-sdk/pull/6167) [`e048958`](https://togithub.com/cloudflare/workers-sdk/commit/e048958778bf8c43a0a23c0f555c1538acc32f09) Thanks [@​threepointone](https://togithub.com/threepointone)! - feature: alias modules in the worker Sometimes, users want to replace modules with other modules. This commonly happens inside a third party dependency itself. As an example, a user might have imported `node-fetch`, which will probably never work in workerd. You can use the alias config to replace any of these imports with a module of your choice. Let's say you make a `fetch-nolyfill.js` ```ts export default fetch; // all this does is export the standard fetch function` ``` You can then configure `wrangler.toml` like so: ```toml ```

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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.

codesandbox[bot] commented 3 months ago

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders
Open Preview

cloudflare-workers-and-pages[bot] commented 3 months ago

Deploying astrosite with  Cloudflare Pages  Cloudflare Pages

Latest commit: c2e8f8e
Status: ✅  Deploy successful!
Preview URL: https://fd6f168c.astrosite-aid.pages.dev
Branch Preview URL: https://renovate-dev-dependencies.astrosite-aid.pages.dev

View logs