Skip to content

build(deps): bump the all group across 1 directory with 11 updates#30

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-854a64fcb6
Closed

build(deps): bump the all group across 1 directory with 11 updates#30
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-854a64fcb6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 22, 2025

Copy link
Copy Markdown
Contributor

Bumps the all group with 11 updates in the / directory:

Package From To
@astrojs/mdx 4.3.0 4.3.1
@astrojs/sitemap 3.4.0 3.4.1
astro 5.8.0 5.12.1
lucide 0.475.0 0.525.0
nanostores 0.11.4 1.0.1
sharp 0.33.5 0.34.3
zod 3.25.30 4.0.5
zod-validation-error 3.4.1 3.5.3
@types/node 22.15.23 24.0.15
@types/react 19.1.6 19.1.8
prettier 3.5.3 3.6.2

Updates @astrojs/mdx from 4.3.0 to 4.3.1

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.3.1

Patch Changes

  • Updated dependencies [6bd5f75]:
    • @​astrojs/markdown-remark@​6.3.3
Changelog

Sourced from @​astrojs/mdx's changelog.

4.3.1

Patch Changes

  • Updated dependencies [6bd5f75]:
    • @​astrojs/markdown-remark@​6.3.3
Commits

Updates @astrojs/sitemap from 3.4.0 to 3.4.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.4.1

Patch Changes

  • #13871 8a1e849 Thanks @​blimmer! - Uncaught errors in the filter method will now bubble, causing the astro build to fail.
Changelog

Sourced from @​astrojs/sitemap's changelog.

3.4.1

Patch Changes

  • #13871 8a1e849 Thanks @​blimmer! - Uncaught errors in the filter method will now bubble, causing the astro build to fail.
Commits

Updates astro from 5.8.0 to 5.12.1

Release notes

Sourced from astro's releases.

astro@5.12.1

Patch Changes

astro@5.12.0

Minor Changes

  • #13971 fe35ee2 Thanks @​adamhl8! - Adds an experimental flag rawEnvValues to disable coercion of import.meta.env values (e.g. converting strings to other data types) that are populated from process.env

    Astro allows you to configure a type-safe schema for your environment variables, and converts variables imported via astro:env into the expected type.

    However, Astro also converts your environment variables used through import.meta.env in some cases, and this can prevent access to some values such as the strings "true" (which is converted to a boolean value), and "1" (which is converted to a number).

    The experimental.rawEnvValues flag disables coercion of import.meta.env values that are populated from process.env, allowing you to use the raw value.

    To enable this feature, add the experimental flag in your Astro config:

    import { defineConfig } from "astro/config"
    export default defineConfig({
    
    experimental: {
    rawEnvValues: true,
    }
    })

If you were relying on this coercion, you may need to update your project code to apply it manually:

- const enabled: boolean = import.meta.env.ENABLED
+ const enabled: boolean = import.meta.env.ENABLED === "true"

See the experimental raw environment variables reference docs for more information.

  • #13941 6bd5f75 Thanks @​aditsachde! - Adds support for TOML files to Astro's built-in glob() and file() content loaders.

  • ... (truncated)

    Changelog

    Sourced from astro's changelog.

    5.12.1

    Patch Changes

    5.12.0

    Minor Changes

    • #13971 fe35ee2 Thanks @​adamhl8! - Adds an experimental flag rawEnvValues to disable coercion of import.meta.env values (e.g. converting strings to other data types) that are populated from process.env

      Astro allows you to configure a type-safe schema for your environment variables, and converts variables imported via astro:env into the expected type.

      However, Astro also converts your environment variables used through import.meta.env in some cases, and this can prevent access to some values such as the strings "true" (which is converted to a boolean value), and "1" (which is converted to a number).

      The experimental.rawEnvValues flag disables coercion of import.meta.env values that are populated from process.env, allowing you to use the raw value.

      To enable this feature, add the experimental flag in your Astro config:

      import { defineConfig } from "astro/config"
      export default defineConfig({
      
      experimental: {
      rawEnvValues: true,
      }
      })

    If you were relying on this coercion, you may need to update your project code to apply it manually:

    - const enabled: boolean = import.meta.env.ENABLED
    + const enabled: boolean = import.meta.env.ENABLED === "true"

    See the experimental raw environment variables reference docs for more information.

    ... (truncated)

    Commits

    Updates lucide from 0.475.0 to 0.525.0

    Release notes

    Sourced from lucide's releases.

    Version 0.525.0

    What's Changed

    New Contributors

    Full Changelog: lucide-icons/lucide@0.524.0...0.525.0

    Version 0.524.0

    What's Changed

    Full Changelog: lucide-icons/lucide@0.523.0...0.524.0

    Version 0.523.0

    What's Changed

    Full Changelog: lucide-icons/lucide@0.522.0...0.523.0

    Version 0.522.0

    What's Changed

    Full Changelog: lucide-icons/lucide@0.521.0...0.522.0

    Version 0.521.0

    What's Changed

    New Contributors

    ... (truncated)

    Commits

    Updates nanostores from 0.11.4 to 1.0.1

    Release notes

    Sourced from nanostores's releases.

    1.0.1

    • Fixed types.

    1.0.0

    Changelog

    Sourced from nanostores's changelog.

    1.0.1

    • Fixed types.

    1.0.0

    Commits

    Updates sharp from 0.33.5 to 0.34.3

    Commits
    • 276ac2d Release v0.34.3
    • 2dedcf3 Prerelease v0.34.3-rc.1
    • 92f2145 Upgrade to sharp-libvips v1.2.0
    • 2cd2f84 Upgrade to libvips v8.17.1
    • 8ee8d27 Provide XMP as a string, as well as a Buffer, where possible
    • 4e3f379 Add keepXmp and withXmp for control over output XMP metadata #4416
    • df5454e Add support for RAW digicam input, requires custom libvips+libraw
    • 32cf6be Docs: update benchmark results ahead of v0.34.3
    • 96dfd40 Tests: update benchmark environment
    • 1422798 Upgrade to sharp-libvips v1.2.0-rc.3
    • Additional commits viewable in compare view

    Updates zod from 3.25.30 to 4.0.5

    Release notes

    Sourced from zod's releases.

    v4.0.5

    Commits:

    • f91a73ec23f9ec28d908af2caa643a54088516c5 Support pipes in discriminated unions. Closes #4856 (#4861)
    • 45afab0f846dffd591362b6f770017507eb185b5 4.0.5

    v4.0.4

    Commits:

    • 9335f0543d6359f9236e3e33b78cc5b2788dbe0f Adds ZodFirstPartyTypeKind stub to fix module resolution failure inside zod-to-json-schema

    v4.0.3

    Commits:

    • 5905a8d810eff6f4677e6aa9e557f92a676805cf Improve check-versions script
    • f3e749b1b057a2cf0a0bce7e07abec4e0520e0f8 Remove global File interface
    • 44a936cb77961e57a0988d8a3c63d9c71fce69ac 4.0.2
    • 74006edd49e3fe8d74010090462859593c2bd1e2 Fix JSR provenance
    • ff4af5e889d4ad7136a9cde7202b16261db5c83c 4.0.3
    • ce573e8799f86e2f68307eba95c2d40fc92617b7 Update test badge
    • 9a7161a976d6349f738c00cb6d6528c0407a65e8 Fix versions

    v4.0.0

    With this release, zod@4.0.0 has been published to npm. There were no code changes between 3.25.76 and 4.0.0!

    Zod 4 has been stable for the past 6 weeks, but it was published inside zod@3.25.x on npm. this transitionary window gave the ecosystem time to incrementally support for Zod 4 (without dropping support for Zod 3). As there is now near-universal support for Zod 4 in the ecosystem, ths time feels right to finally put a bow on things 🎀

    To upgrade to Zod 4:

    npm upgrade zod@^4.0.0
    

    If you’ve already migrated to Zod 4 using the subpaths, there are no changes required. however you can optionally simplify your imports (recommended)

    // after upgrading to zod@4.0.0:
    import * as z from "zod"; // Zod 4 (regular)
    import * as z from "zod/mini" // Zod 4 Mini
    // these still work, but are no longer needed
    import * as z from "zod/v4";
    import * as z from "zod/v4-mini":
    // if you still need Zod 3
    import * as z from "zod/v3"; // Zod 3

    ... (truncated)

    Commits

    Updates zod-validation-error from 3.4.1 to 3.5.3

    Release notes

    Sourced from zod-validation-error's releases.

    v3.5.2

    Patch Changes

    • 3809f85: Include paths of sub-issues of union.

    v3.5.1

    Patch Changes

    • e7713d5: Add compatibility with older node versions and module-resolution strategies + improve docs

    v3.5.0

    Minor Changes

    • bf72012: Add support for zod v4
    Changelog

    Sourced from zod-validation-error's changelog.

    @​causaly/zod-validation-error

    4.0.0-beta.2

    Patch Changes

    • b979890: Add support for zod v4 as a peer dependency.

    4.0.0-beta.1

    Major Changes

    • 9be31d2: Make v4 the default export of zod-validation-error
    • 3f77fd9: Default opt-in to error formatting, without needing to specify a custom error map. The previous functionality was default opt-out. Now you need to explicitly pass error: false to opt-out.

    3.5.2

    Patch Changes

    • 3809f85: Include paths of sub-issues of union.

    3.5.1

    Patch Changes

    • e7713d5: Add compatibility with older node versions and module-resolution strategies + improve docs

    3.5.0

    Minor Changes

    • bf72012: Add support for zod v4
    Commits

    Updates @types/node from 22.15.23 to 24.0.15

    Commits

    Updates @types/react from 19.1.6 to 19.1.8

    Commits

    Updates prettier from 3.5.3 to 3.6.2

    Release notes

    Sourced from prettier's releases.

    3.6.2

    What's Changed

    🔗 Changelog

    3.6.1

    • Fix "Warning: File descriptor 39 closed but not opened in unmanaged mode" error when running --experimental-cli

    🔗 Changelog

    3.6.0

    diff

    🔗 Release note "Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!"

    Changelog

    Sourced from prettier's changelog.

    3.6.2

    diff

    Markdown: Add missing blank line around code block (#17675 by @​fisker)

    <!-- Input -->
    1. Some text, and code block below, with newline after code block
    ---
    foo: bar
    
    
    Another
    List
    
    <!-- Prettier 3.6.1 -->
    
    
    Some text, and code block below, with newline after code block
    ---
    foo: bar
    
    
    Another
    List
    
    
    
    <!-- Prettier 3.6.2 -->
    
    
    Some text, and code block below, with newline after code block
    ---
    foo: bar
    
    
    Another
    List

    3.6.1

    diff

    TypeScript: Allow const without initializer (#17650, #17654 by @​fisker)

    // Input
    </tr></table> 

    ... (truncated)

    Commits
    • 7a8b05f Release 3.6.2
    • 46526b4 Add missing blank line around code block (#17675)
    • a04ec11 chore(deps): update babel to v7.27.7 (#17684)
    • 32be5b6 chore(deps): update dependency flow-parser to v0.274.1 (#17676)
    • b55e777 Update docs about "TypeScript Configuration Files" (#17677)
    • b197c99 chore(deps): update dependency @​vitejs/plugin-react to v4.6.0 (#17674)
    • 1185f83 chore(deps): update dependency @​angular/compiler to v20.0.5 (#17680)
    • aa1316f chore(deps): update dependency browserslist to v4.25.1 (#17671)
    • c468d33 chore(deps): update dependency oxc-parser to v0.75.0 (#17672)
    • 3f46d91 chore(deps): update dependency vite to v7 (#17673)
    • Additional commits viewable in compare view

    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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

    Bumps the all group with 11 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `4.3.0` | `4.3.1` |
    | [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.4.0` | `3.4.1` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.8.0` | `5.12.1` |
    | [lucide](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide) | `0.475.0` | `0.525.0` |
    | [nanostores](https://github.com/nanostores/nanostores) | `0.11.4` | `1.0.1` |
    | [sharp](https://github.com/lovell/sharp) | `0.33.5` | `0.34.3` |
    | [zod](https://github.com/colinhacks/zod) | `3.25.30` | `4.0.5` |
    | [zod-validation-error](https://github.com/causaly/zod-validation-error) | `3.4.1` | `3.5.3` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.15.23` | `24.0.15` |
    | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.6` | `19.1.8` |
    | [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.6.2` |
    
    
    
    Updates `@astrojs/mdx` from 4.3.0 to 4.3.1
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@4.3.1/packages/integrations/mdx)
    
    Updates `@astrojs/sitemap` from 3.4.0 to 3.4.1
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/sitemap@3.4.1/packages/integrations/sitemap)
    
    Updates `astro` from 5.8.0 to 5.12.1
    - [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@5.12.1/packages/astro)
    
    Updates `lucide` from 0.475.0 to 0.525.0
    - [Release notes](https://github.com/lucide-icons/lucide/releases)
    - [Commits](https://github.com/lucide-icons/lucide/commits/0.525.0/packages/lucide)
    
    Updates `nanostores` from 0.11.4 to 1.0.1
    - [Release notes](https://github.com/nanostores/nanostores/releases)
    - [Changelog](https://github.com/nanostores/nanostores/blob/main/CHANGELOG.md)
    - [Commits](nanostores/nanostores@0.11.4...1.0.1)
    
    Updates `sharp` from 0.33.5 to 0.34.3
    - [Release notes](https://github.com/lovell/sharp/releases)
    - [Commits](lovell/sharp@v0.33.5...v0.34.3)
    
    Updates `zod` from 3.25.30 to 4.0.5
    - [Release notes](https://github.com/colinhacks/zod/releases)
    - [Commits](colinhacks/zod@v3.25.30...v4.0.5)
    
    Updates `zod-validation-error` from 3.4.1 to 3.5.3
    - [Release notes](https://github.com/causaly/zod-validation-error/releases)
    - [Changelog](https://github.com/causaly/zod-validation-error/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/causaly/zod-validation-error/commits)
    
    Updates `@types/node` from 22.15.23 to 24.0.15
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `@types/react` from 19.1.6 to 19.1.8
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `prettier` from 3.5.3 to 3.6.2
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.5.3...3.6.2)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/mdx"
      dependency-version: 4.3.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all
    - dependency-name: "@astrojs/sitemap"
      dependency-version: 3.4.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all
    - dependency-name: astro
      dependency-version: 5.12.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all
    - dependency-name: lucide
      dependency-version: 0.525.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all
    - dependency-name: nanostores
      dependency-version: 1.0.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all
    - dependency-name: sharp
      dependency-version: 0.34.3
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all
    - dependency-name: zod
      dependency-version: 4.0.5
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all
    - dependency-name: zod-validation-error
      dependency-version: 3.5.3
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all
    - dependency-name: "@types/node"
      dependency-version: 24.0.15
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all
    - dependency-name: "@types/react"
      dependency-version: 19.1.8
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all
    - dependency-name: prettier
      dependency-version: 3.6.2
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all
    ...
    
    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 Jul 22, 2025
    @dependabot @github

    dependabot Bot commented on behalf of github Aug 4, 2025

    Copy link
    Copy Markdown
    Contributor Author

    Looks like these dependencies are updatable in another way, so this is no longer needed.

    @dependabot dependabot Bot closed this Aug 4, 2025
    @dependabot dependabot Bot deleted the dependabot/npm_and_yarn/all-854a64fcb6 branch August 4, 2025 21:38
    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