shepherdjerred / webring

Collect the latest RSS items from your favorite feeds
https://www.npmjs.com/package/webring
GNU General Public License v3.0
3 stars 0 forks source link

fix(deps): update npm #51

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 2 months ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/mdx (source) 3.1.5 -> 3.1.6 age adoption passing confidence
astro (source) 4.15.4 -> 4.15.5 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/mdx) ### [`v3.1.6`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#316) [Compare Source](https://redirect.github.com/withastro/astro/compare/@astrojs/mdx@3.1.5...@astrojs/mdx@3.1.6) ##### Patch Changes - [#​11975](https://redirect.github.com/withastro/astro/pull/11975) [`c9ae7b1`](https://redirect.github.com/withastro/astro/commit/c9ae7b1b89e050900bbc111f29e8c5d95c26bf36) Thanks [@​bluwy](https://redirect.github.com/bluwy)! - Handles nested root hast node when optimizing MDX
withastro/astro (astro) ### [`v4.15.5`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4155) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@4.15.4...astro@4.15.5) ##### Patch Changes - [#​11939](https://redirect.github.com/withastro/astro/pull/11939) [`7b09c62`](https://redirect.github.com/withastro/astro/commit/7b09c62b565cd7b50c35fb68d390729f936a43fb) Thanks [@​bholmesdev](https://redirect.github.com/bholmesdev)! - Adds support for Zod discriminated unions on Action form inputs. This allows forms with different inputs to be submitted to the same action, using a given input to decide which object should be used for validation. This example accepts either a `create` or `update` form submission, and uses the `type` field to determine which object to validate against. ```ts import { defineAction } from 'astro:actions'; import { z } from 'astro:schema'; export const server = { changeUser: defineAction({ accept: 'form', input: z.discriminatedUnion('type', [ z.object({ type: z.literal('create'), name: z.string(), email: z.string().email(), }), z.object({ type: z.literal('update'), id: z.number(), name: z.string(), email: z.string().email(), }), ]), async handler(input) { if (input.type === 'create') { // input is { type: 'create', name: string, email: string } } else { // input is { type: 'update', id: number, name: string, email: string } } }, }), }; ``` The corresponding `create` and `update` forms may look like this:

Configuration

📅 Schedule: Branch creation - "after 3am on Sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 was generated by Mend Renovate. View the repository job log.