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 npm #822

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

fix(deps): update npm #822

wants to merge 1 commit into from

Conversation

truecharts-admin
Copy link
Contributor

@truecharts-admin truecharts-admin commented Sep 11, 2024

This PR contains the following updates:

Package Type Update Change
@astrojs/starlight (source) dependencies minor 0.27.1 -> 0.28.2
@astrojs/tailwind (source) dependencies patch 5.1.0 -> 5.1.1
astro (source) dependencies patch 4.15.4 -> 4.15.10
astro-better-image-service dependencies patch 2.0.29 -> 2.0.35
starlight-blog dependencies minor 0.12.0 -> 0.13.0
starlight-links-validator dependencies minor 0.11.0 -> 0.12.2
tailwindcss (source) dependencies patch 3.4.10 -> 3.4.13

Release Notes

withastro/starlight (@​astrojs/starlight)

v0.28.2

Compare Source

Patch Changes
  • #​2377 a257b83 Thanks @​HiDeoo! - Fixes an issue with synced <Tabs> components containing nested <Tabs> causing tab panels to not render correctly.

v0.28.1

Compare Source

Patch Changes

v0.28.0

Compare Source

Minor Changes
  • #​1923 5269aad Thanks @​HiDeoo! - Overhauls the built-in localization system which is now powered by the i18next library and available to use anywhere in your documentation website.

    See the “Using UI translations” guide to learn more about how to access built-in UI labels or your own custom strings in your project. Plugin authors can also use the new injectTranslations() helper to add or update translation strings.

    ⚠️ BREAKING CHANGE: The Astro.props.labels props has been removed from the props passed down to custom component overrides.

    If you are relying on Astro.props.labels (for example to read a built-in UI label), you will need to update your code to use the new Astro.locals.t() helper instead.

withastro/astro (@​astrojs/tailwind)

v5.1.1

Compare Source

Patch Changes
withastro/astro (astro)

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:

risu729/astro-better-image-service (astro-better-image-service)

v2.0.35

Compare Source

Bug Fixes

v2.0.34

Compare Source

Bug Fixes

v2.0.33

Compare Source

Bug Fixes

v2.0.32

Compare Source

Bug Fixes

v2.0.31

Compare Source

Bug Fixes

v2.0.30

Compare Source

Bug Fixes
HiDeoo/starlight-blog (starlight-blog)

v0.13.0

Compare Source

   🚀 Features
    View changes on GitHub
HiDeoo/starlight-links-validator (starlight-links-validator)

v0.12.2

Compare Source

   🐞 Bug Fixes
  • Fixes validation issue with the Astro base option and a custom slug  -  by @​HiDeoo (fe3d2)
    View changes on GitHub

v0.12.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.12.0

Compare Source

   🚀 Features
  • Adds a new errorOnInvalidHashes option defaulting to true to disable hash validation  -  by @​HiDeoo (32a92)
    The default validation behavior remains unchanged.
    View changes on GitHub
tailwindlabs/tailwindcss (tailwindcss)

v3.4.13

Compare Source

Fixed
  • Improve source glob verification performance (#​14481)

v3.4.12

Compare Source

Fixed
  • Ensure using @apply with utilities that use @defaults works with rules defined in the base layer when using optimizeUniversalDefaults (#​14427)

v3.4.11

Compare Source

Fixed
  • Allow anchor-size(…) in arbitrary values (#​14393)

Configuration

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


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

This PR has been generated by Renovate Bot.

Copy link

github-actions bot commented Sep 11, 2024

✅ Deploy Preview ready!

Name Link
🔨 Latest commit e5413a1
🔍 Latest deploy log https://github.com/truecharts/website/actions/runs/11131344529
😎 Deploy Preview Url https://8f067d18.chart-docs.pages.dev
🌳 Environment preview

@truecharts-admin truecharts-admin changed the title fix(deps): update dependency tailwindcss to v3.4.11 fix(deps): update npm Sep 12, 2024
@truecharts-admin truecharts-admin force-pushed the renovate/npm branch 8 times, most recently from f9db3af to fc50ecb Compare September 20, 2024 00:42
@truecharts-admin truecharts-admin force-pushed the renovate/npm branch 4 times, most recently from ab54f5a to 2f28a87 Compare September 25, 2024 18:31
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.

1 participant