An open index of dependabot pull requests across open source projects.

Bump the astro group in /app with 4 updates

Open
Number: #214
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: July 22, 2025 at 09:53 AM UTC
(11 months ago)
Updated: July 22, 2025 at 09:53 AM UTC
(11 months ago)
Labels:
dependencies javascript
Assignees:
poad
Description:

Bumps the astro group in /app with 4 updates: astro, eslint-config-prettier, eslint-plugin-prettier and typescript-eslint.

Updates astro from 5.11.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 eslint-config-prettier from 10.1.5 to 10.1.8

    Release notes

    Sourced from eslint-config-prettier's releases.

    v10.1.8

    republish latest version

    Full Changelog: https://github.com/prettier/eslint-config-prettier/compare/v10.1.5...v10.1.8

    Changelog

    Sourced from eslint-config-prettier's changelog.

    eslint-config-prettier

    Commits

    Updates eslint-plugin-prettier from 5.5.1 to 5.5.3

    Release notes

    Sourced from eslint-plugin-prettier's releases.

    v5.5.3

    republish the latest version

    Full Changelog: https://github.com/prettier/eslint-plugin-prettier/compare/v5.5.2...v5.5.3

    v5.5.2

    republish the latest version

    Full Changelog: https://github.com/prettier/eslint-plugin-prettier/compare/v5.5.1...v5.5.2

    Changelog

    Sourced from eslint-plugin-prettier's changelog.

    Changelog

    Commits

    Updates typescript-eslint from 8.36.0 to 8.38.0

    Release notes

    Sourced from typescript-eslint's releases.

    v8.38.0

    8.38.0 (2025-07-21)

    🚀 Features

    • typescript-estree: forbid optional chain in TemplateTaggedLiteral (#11391)

    🩹 Fixes

    • disallow extra properties in rule options (#11397)
    • eslint-plugin: [consistent-generic-constructors] resolve conflict with isolatedDeclarations if enabled in constructor option (#11351)
    • typescript-eslint: infer tsconfigRootDir with v8 API (#11412)
    • typescript-eslint: error on nested extends in tseslint.config() (#11361)
    • typescript-estree: ensure the token type of the property name is Identifier (#11329)

    ❤️ Thank You

    You can read about our versioning strategy and releases on our website.

    v8.37.0

    8.37.0 (2025-07-14)

    🚀 Features

    • typescript-estree: infer tsconfigRootDir from call stack (#11370)

    🩹 Fixes

    • eslint-plugin: [unified-signatures] fix false positives for ignoreOverloadsWithDifferentJSDoc option (#11381)
    • type-utils: add missing 'types' dependency to 'type-utils' (#11383)
    • type-utils: handle namespaced exports in specifier matching (#11380)

    ❤️ Thank You

    You can read about our versioning strategy and releases on our website.

    Changelog

    Sourced from typescript-eslint's changelog.

    8.38.0 (2025-07-21)

    🩹 Fixes

    • typescript-eslint: error on nested extends in tseslint.config() (#11361)
    • typescript-eslint: infer tsconfigRootDir with v8 API (#11412)

    ❤️ Thank You

    You can read about our versioning strategy and releases on our website.

    8.37.0 (2025-07-14)

    🚀 Features

    • typescript-estree: infer tsconfigRootDir from call stack (#11370)

    ❤️ Thank You

    • Josh Goldberg ✨

    You can read about our versioning strategy and releases on our website.

    Commits
    • d11e79e chore(release): publish 8.38.0
    • 6d8fae9 fix(typescript-eslint): error on nested extends in tseslint.config() (#11...
    • abb7c4d fix(typescript-eslint): infer tsconfigRootDir with v8 API (#11412)
    • 816be17 chore(release): publish 8.37.0
    • 7126c3a feat(typescript-estree): infer tsconfigRootDir from call stack (#11370)
    • See full diff 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
    Pull Request Statistics
    Commits:
    1
    Files Changed:
    1
    Additions:
    +4
    Deletions:
    -4
    Package Dependencies
    Package:
    astro
    Ecosystem:
    npm
    Version Change:
    5.11.0 → 5.12.1
    Update Type:
    Minor
    Path:
    /app
    Ecosystem:
    npm
    Version Change:
    10.1.5 → 10.1.8
    Update Type:
    Patch
    Path:
    /app
    Ecosystem:
    npm
    Version Change:
    8.36.0 → 8.38.0
    Update Type:
    Minor
    Path:
    /app
    Ecosystem:
    npm
    Version Change:
    5.5.1 → 5.5.3
    Update Type:
    Patch
    Path:
    /app
    Technical Details
    ID: 4023188
    UUID: 2684919026
    Node ID: PR_kwDOKYjiec6gCJzy
    Host: GitHub
    Repository: poad/astro-lambda-ssr-example
    Merge State: Unknown