Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump astro from 4.14.2 to 4.15.6 #1588

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 16, 2024

Bumps astro from 4.14.2 to 4.15.6.

Release notes

Sourced from astro's releases.

astro@4.15.6

Patch Changes

  • #11993 ffba5d7 Thanks @​matthewp! - Fix getStaticPaths regression

    This reverts a previous change meant to remove a dependency, to fix a regression with multiple nested spread routes.

  • #11964 06eff60 Thanks @​TheOtterlord! - Add wayland (wl-copy) support to astro info

astro@4.15.5

Patch Changes

  • #11939 7b09c62 Thanks @​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.

    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:

... (truncated)

Changelog

Sourced from astro's changelog.

4.15.6

Patch Changes

  • #11993 ffba5d7 Thanks @​matthewp! - Fix getStaticPaths regression

    This reverts a previous change meant to remove a dependency, to fix a regression with multiple nested spread routes.

  • #11964 06eff60 Thanks @​TheOtterlord! - Add wayland (wl-copy) support to astro info

4.15.5

Patch Changes

  • #11939 7b09c62 Thanks @​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.

    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:

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 4.14.2 to 4.15.6.
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@4.15.6/packages/astro)

---
updated-dependencies:
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 16, 2024
Copy link

stackblitz bot commented Sep 16, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

netlify bot commented Sep 16, 2024

Deploy Preview for realworld-docs ready!

Name Link
🔨 Latest commit f761b42
🔍 Latest deploy log https://app.netlify.com/sites/realworld-docs/deploys/66e85e1eb7962b0008da565c
😎 Deploy Preview https://deploy-preview-1588--realworld-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Sep 16, 2024

Deploy Preview for frabjous-strudel-0577e0 failed.

Name Link
🔨 Latest commit f761b42
🔍 Latest deploy log https://app.netlify.com/sites/frabjous-strudel-0577e0/deploys/66e85e1eb71d9700087d2c5d

Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2024

Superseded by #1596.

@dependabot dependabot bot closed this Sep 30, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/astro-4.15.6 branch September 30, 2024 07:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants