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

fix(deps): update all minor dependencies #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@​openscript-ch/slidev-theme 0.8.0 -> 0.8.3 age adoption passing confidence
@slidev/cli (source) ^0.48.8 -> ^0.49.0 age adoption passing confidence
astro (source) 4.5.12 -> 4.15.11 age adoption passing confidence
pnpm (source) 8.15.1 -> 8.15.9 age adoption passing confidence
sharp (source, changelog) 0.33.3 -> 0.33.5 age adoption passing confidence

Release Notes

slidevjs/slidev (@​slidev/cli)

v0.49.29

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.28

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.27

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.26

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.25

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.24

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.23

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.22

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.21

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.20

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.19

Compare Source

   🚀 Features
    View changes on GitHub

v0.49.18

Compare Source

   🚀 Features
    View changes on GitHub

v0.49.17

Compare Source

   ✨ Highlights
  • Visit our brand new docs at https://sli.dev! It has a huge improvement in readability.
  • Relative path inside slides content like ![alt](./assets/img.png) is now supported.
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.16

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.15

Compare Source

No significant changes

    View changes on GitHub

v0.49.13

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.12

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.11

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.49.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.9

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.49.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.49.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.49.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.49.1

Compare Source

No significant changes

    View changes on GitHub

v0.49.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.48.9

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
withastro/astro (astro)

v4.15.11

Compare Source

Patch Changes
  • #​12097 11d447f Thanks @​ascorbic! - Fixes error where references in content layer schemas sometimes incorrectly report as missing

  • #​12108 918953b Thanks @​lameuler! - Fixes a bug where data URL images were not correctly handled. The bug resulted in an ENAMETOOLONG error.

  • #​12105 42037f3 Thanks @​ascorbic! - Returns custom statusText that has been set in a Response

  • #​12109 ea22558 Thanks @​ematipico! - Fixes a regression that was introduced by an internal refactor of how the middleware is loaded by the Astro application. The regression was introduced by #​11550.

    When the edge middleware feature is opted in, Astro removes the middleware function from the SSR manifest, and this wasn't taken into account during the refactor.

  • #​12106 d3a74da Thanks @​ascorbic! - Handles case where an immutable Response object is returned from an endpoint

  • #​12090 d49a537 Thanks @​markjaquith! - Server islands: changes the server island HTML placeholder comment so that it is much less likely to get removed by HTML minifiers.

v4.15.10

Compare Source

Patch Changes

v4.15.9

Compare Source

Patch Changes
  • #​12034 5b3ddfa Thanks @​ematipico! - Fixes an issue where the middleware wasn't called when a project uses 404.astro.

  • #​12042 243ecb6 Thanks @​ematipico! - Fixes a problem in the Container API, where a polyfill wasn't correctly applied. This caused an issue in some environments where crypto isn't supported.

  • #​12038 26ea5e8 Thanks @​ascorbic! - Resolves image paths in content layer with initial slash as project-relative

    When using the image() schema helper, previously paths with an initial slash were treated as public URLs. This was to match the behavior of markdown images. However this is a change from before, where paths with an initial slash were treated as project-relative. This change restores the previous behavior, so that paths with an initial slash are treated as project-relative.

v4.15.8

Compare Source

Patch Changes

v4.15.7

Compare Source

Patch Changes

v4.15.6

Compare Source

Patch Changes

v4.15.5

Compare Source

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:

v4.15.4

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from b8781d3 to 95fdeed Compare March 2, 2024 10:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from af9397e to 4ff1ebd Compare March 10, 2024 17:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from d74a9fd to d4c83b9 Compare March 17, 2024 23:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from b146b61 to 62d226f Compare March 21, 2024 09:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 8bb7d37 to 313d877 Compare August 16, 2024 17:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from d753845 to 8abd2f1 Compare August 26, 2024 18:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 7739b84 to 8402459 Compare September 2, 2024 13:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from fba59c8 to 7efe2d2 Compare September 6, 2024 16:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from be18366 to e0d3039 Compare September 19, 2024 15:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aa9858a to 264da78 Compare October 1, 2024 15:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 264da78 to fa2e811 Compare October 3, 2024 14:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants