Bump the astro group in /app with 4 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(11 months ago)
(11 months ago)
dependencies javascript
poad
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
#14094
22e9087Thanks@ascorbic! - Correct types to allowpriorityon all images#14091
26c6b6dThanks@ascorbic! - Fixes a bug that caused a type error when defining session options without a driver#14082
93322cbThanks@louisescher! - Fixes an issue where Astro's default 404 route would incorrectly match routes containing "/404" in dev#14089
687d253Thanks@florian-lefebvre! - Fixes a case whereastro:envwould not load the right environments variables in dev#14092
6692c71Thanks@ascorbic! - Improves error handling in live collections#14074
144a950Thanks@abcfy2! - Fixes a bug that caused some image service builds to fail#14092
6692c71Thanks@ascorbic! - Fixes a case where zod could not be imported fromastro:contentvirtual module in live collection configastro@5.12.0
Minor Changes
#13971
fe35ee2Thanks@adamhl8! - Adds an experimental flagrawEnvValuesto disable coercion ofimport.meta.envvalues (e.g. converting strings to other data types) that are populated fromprocess.envAstro allows you to configure a type-safe schema for your environment variables, and converts variables imported via
astro:envinto the expected type.However, Astro also converts your environment variables used through
import.meta.envin 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.rawEnvValuesflag disables coercion ofimport.meta.envvalues that are populated fromprocess.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
6bd5f75Thanks@aditsachde! - Adds support for TOML files to Astro's built-inglob()andfile()content loaders.
... (truncated)
Changelog
Sourced from astro's changelog.
5.12.1
Patch Changes
#14094
22e9087Thanks@ascorbic! - Correct types to allowpriorityon all images#14091
26c6b6dThanks@ascorbic! - Fixes a bug that caused a type error when defining session options without a driver#14082
93322cbThanks@louisescher! - Fixes an issue where Astro's default 404 route would incorrectly match routes containing "/404" in dev#14089
687d253Thanks@florian-lefebvre! - Fixes a case whereastro:envwould not load the right environments variables in dev#14092
6692c71Thanks@ascorbic! - Improves error handling in live collections#14074
144a950Thanks@abcfy2! - Fixes a bug that caused some image service builds to fail#14092
6692c71Thanks@ascorbic! - Fixes a case where zod could not be imported fromastro:contentvirtual module in live collection config5.12.0
Minor Changes
#13971
fe35ee2Thanks@adamhl8! - Adds an experimental flagrawEnvValuesto disable coercion ofimport.meta.envvalues (e.g. converting strings to other data types) that are populated fromprocess.envAstro allows you to configure a type-safe schema for your environment variables, and converts variables imported via
astro:envinto the expected type.However, Astro also converts your environment variables used through
import.meta.envin 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.rawEnvValuesflag disables coercion ofimport.meta.envvalues that are populated fromprocess.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
d271698[ci] release (#14093)6692c71fix: give live collections their own astro:content entrypoint (#14092)144a950fix(astro): prevent image service resolution on client build (#14074)fa9936bdocs: fix store.set in docs (#14096)04e6011[ci] format22e9087fix: move priority prop to shared image props (#14094)a4065bb[ci] format93322cbfix: Modify route priority logic so user routes are preferred (#14082)687d253fix(astro): refresh loaded env (#14089)26c6b6dfix: session options type fix (#14091)- Additional commits viewable in compare view
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
Commits
9b0b0a4fix: release a new latest version- See full diff in compare view
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
Commits
cdfcefdfix: release a new latest versiond8c303efix: release a new latest version- See full diff in compare view
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
isolatedDeclarationsif enabled inconstructoroption (#11351)- typescript-eslint: infer tsconfigRootDir with v8 API (#11412)
- typescript-eslint: error on nested
extendsintseslint.config()(#11361)- typescript-estree: ensure the token type of the property name is Identifier (#11329)
❤️ Thank You
- Andrew Kazakov
@andreww2012- Kirk Waiblinger
@kirkwaiblinger- MK
@asdf93074- tao
- Younsang Na
@nayounsangYou 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
- Bill Collins
- Josh Goldberg ✨
- René
@Renegade334- Yukihiro Hasegawa
@y-hsgwYou 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
extendsintseslint.config()(#11361)- typescript-eslint: infer tsconfigRootDir with v8 API (#11412)
❤️ Thank You
- Kirk Waiblinger
@kirkwaiblingerYou 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
d11e79echore(release): publish 8.38.06d8fae9fix(typescript-eslint): error on nestedextendsintseslint.config()(#11...abb7c4dfix(typescript-eslint): infer tsconfigRootDir with v8 API (#11412)816be17chore(release): publish 8.37.07126c3afeat(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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
1
1
+4
-4
Package Dependencies
eslint-config-prettier
npm
10.1.5 → 10.1.8
Patch
/app
typescript-eslint
npm
8.36.0 → 8.38.0
Minor
/app
eslint-plugin-prettier
npm
5.5.1 → 5.5.3
Patch
/app
Technical Details
| ID: | 4023188 |
| UUID: | 2684919026 |
| Node ID: | PR_kwDOKYjiec6gCJzy |
| Host: | GitHub |
| Repository: | poad/astro-lambda-ssr-example |
| Merge State: | Unknown |