b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.
b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.
#115711c3265a Thanks @bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.
Make .safe() the default return value for actions. This means { data, error } will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the .orThrow() modifier.
import { actions } from 'astro:actions';
// Before
const { data, error } = await actions.like.safe();
// After
const { data, error } = await actions.like();
// Before
const newLikes = await actions.like();
// After
const newLikes = await actions.like.orThrow();
Migration
To migrate your existing action calls:
Remove .safe from existing safe action calls
Add .orThrow to existing unsafe action calls
#1157084189b6 Thanks @bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.
Updates the Astro Actions fallback to support action={actions.name} instead of using getActionProps(). This will submit a form to the server in zero-JS scenarios using a search parameter:
#115711c3265a Thanks @bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.
Make .safe() the default return value for actions. This means { data, error } will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the .orThrow() modifier.
import { actions } from 'astro:actions';
// Before
const { data, error } = await actions.like.safe();
// After
const { data, error } = await actions.like();
// Before
const newLikes = await actions.like();
// After
const newLikes = await actions.like.orThrow();
Migration
To migrate your existing action calls:
Remove .safe from existing safe action calls
Add .orThrow to existing unsafe action calls
#1157084189b6 Thanks @bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.
Updates the Astro Actions fallback to support action={actions.name} instead of using getActionProps(). This will submit a form to the server in zero-JS scenarios using a search parameter:
#11507a62345f Thanks @ematipico! - Adds color-coding to the console output during the build to highlight slow pages.
Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention.
#11379e5e2d3e Thanks @alexanderniebuhr! - The experimental.contentCollectionJsonSchema feature introduced behind a flag in v4.5.0 is no longer experimental and is available for general use.
If you are working with collections of type data, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in src/content/config.ts using a library called zod-to-json-schema.
This feature requires you to manually set your schema's file path as the value for $schema in each data entry file of the collection:
Alternatively, you can set this value in your editor settings. For example, to set this value in VSCode's json.schemas setting, provide the path of files to match and the location of your JSON schema:
#11507a62345f Thanks @ematipico! - Adds color-coding to the console output during the build to highlight slow pages.
Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention.
#11379e5e2d3e Thanks @alexanderniebuhr! - The experimental.contentCollectionJsonSchema feature introduced behind a flag in v4.5.0 is no longer experimental and is available for general use.
If you are working with collections of type data, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in src/content/config.ts using a library called zod-to-json-schema.
This feature requires you to manually set your schema's file path as the value for $schema in each data entry file of the collection:
Alternatively, you can set this value in your editor settings. For example, to set this value in VSCode's json.schemas setting, provide the path of files to match and the location of your JSON schema:
Bumps the production-dependencies group with 15 updates in the / directory:
0.7.0
0.9.1
3.1.0
3.1.3
3.5.0
3.6.1
4.0.6
4.0.7
3.1.5
3.1.6
0.35.3
0.35.4
0.35.3
0.35.4
1.1.192
1.1.204
0.0.13
0.1.1
4.10.2
4.13.0
2.1.10
2.2.0
0.35.3
0.35.4
0.49.0
0.50.0
0.10.13
0.10.14
3.4.4
3.4.7
Updates
@astrojs/check
from 0.7.0 to 0.9.1Release notes
Sourced from
@astrojs/check
's releases.Changelog
Sourced from
@astrojs/check
's changelog.... (truncated)
Commits
492b2bf
Version Packages (#926)93b5c30
Version Packages (#925)97d2558
Version Packages (#917)48689d1
Version Packages (#906)4a10d24
Version Packages (#899)9e45765
Version Packages (#894)b8a6af3
feat: Update to Volar 2.4 alpha (#879)a1769da
Add@astrojs/check
README (#883)Updates
@astrojs/mdx
from 3.1.0 to 3.1.3Release notes
Sourced from
@astrojs/mdx
's releases.Changelog
Sourced from
@astrojs/mdx
's changelog.Commits
aa05be3
[ci] release (#11481)2113a56
fix(deps): update all non-major dependencies (#11426)b9e906f
Revert "Fix attribute rendering for boolean values (#11369)" (#11408)e60aab9
fix(deps): update all non-major dependencies (#11383)e6de11f
Fix attribute rendering for boolean values (#11369)ce310f8
[ci] release (#11297)47e78d4
fix(deps): update all non-major dependencies (#11318)83c565b
[ci] release (#11233)7d59750
chore: logging cleanup (#11263)68f1d0d
chore(deps): update all non-major dependencies (#11269)Updates
@astrojs/react
from 3.5.0 to 3.6.1Release notes
Sourced from
@astrojs/react
's releases.... (truncated)
Changelog
Sourced from
@astrojs/react
's changelog.... (truncated)
Commits
49db004
[ci] release (#11524)1c3265a
Actions: Make.safe()
the default return value (#11571)84189b6
Actions: New fallback behavior withaction={actions.name}
(#11570)536209a
fix(deps): update all non-major dependencies (#11522)9c0c849
feat(container): client hydration (#11486)2113a56
fix(deps): update all non-major dependencies (#11426)e60aab9
fix(deps): update all non-major dependencies (#11383)47e78d4
fix(deps): update all non-major dependencies (#11318)83c565b
[ci] release (#11233)68f1d0d
chore(deps): update all non-major dependencies (#11269)Updates
@astrojs/rss
from 4.0.6 to 4.0.7Release notes
Sourced from
@astrojs/rss
's releases.Changelog
Sourced from
@astrojs/rss
's changelog.Commits
ce310f8
[ci] release (#11297)8ce66f2
fix(rss): correct types forRSSFeedItem
(#11299)464b0a1
fix(deps): update all non-major dependencies (#11151)Updates
@astrojs/sitemap
from 3.1.5 to 3.1.6Release notes
Sourced from
@astrojs/sitemap
's releases.Changelog
Sourced from
@astrojs/sitemap
's changelog.Commits
83c565b
[ci] release (#11233)7d59750
chore: logging cleanup (#11263)464b0a1
fix(deps): update all non-major dependencies (#11151)Updates
@expressive-code/plugin-collapsible-sections
from 0.35.3 to 0.35.4Release notes
Sourced from
@expressive-code/plugin-collapsible-sections
's releases.Changelog
Sourced from
@expressive-code/plugin-collapsible-sections
's changelog.Commits
c619dcc
[CI] Release (#229)Updates
@expressive-code/plugin-line-numbers
from 0.35.3 to 0.35.4Release notes
Sourced from
@expressive-code/plugin-line-numbers
's releases.Changelog
Sourced from
@expressive-code/plugin-line-numbers
's changelog.Commits
c619dcc
[CI] Release (#229)Updates
@iconify-json/lucide
from 1.1.192 to 1.1.204Commits
b378181
Update HeroIcons Outline, HeroIcons Solidd59357a
Update Carbon, Material Design Icons1b5091a
Update HeroIcons Outline, HeroIcons Solid, Google Material Icons, Material De...7e9cf22
Update Material Design Icons, Tabler Iconse23ae58
Update Material Design Icons, OpenMoji, Simple Icons9a765b9
Update Material Design Icons8c98f55
Update Carbon, Material Design Iconsd0d7ab6
Update Codicons, Octiconsc141407
Update Material Design Icons, OpenMojic31a1e1
Update Material Design Icons, Simple IconsUpdates
@playform/compress
from 0.0.13 to 0.1.1Release notes
Sourced from
@playform/compress
's releases.Changelog
Sourced from
@playform/compress
's changelog.Commits
102cf84
Compress/v0.1.16e14ed6
9f29c58
a57453f
49166ac
de89ff0
706d8e2
d2fe28a
c3d64a4
Compress/v0.1.0bbd04c3
Updates
astro
from 4.10.2 to 4.13.0Release notes
Sourced from astro's releases.
... (truncated)
Changelog
Sourced from astro's changelog.
... (truncated)
Commits
4474887
[ci] release (#11578)6aaeec5
Update errors-data.ts for Astro.rewrite release in 4.13 (#11580)750d532
fix(deps): update all non-major dependencies (#11565)45ad326
feat: stabilise the rewrite APIs (#11542)a62345f
feat: log slow pages in red (#11507)2cf770d
[ci] formate5e2d3e
chore: unflag contentCollectionJsonSchema (#11379)60b2766
Verify you can use server:defer on self-imported module (#11577)49db004
[ci] release (#11524)9f766d8
[ci] formatUpdates
astro-critters
from 2.1.10 to 2.2.0Release notes
Sourced from astro-critters's releases.
Changelog
Sourced from astro-critters's changelog.
Commits
32f3032
AstroCritters/v2.2.08136bfb
9cf78d9
Merge branch 'Current' into Alternative549b570
Merge branch 'Current' of ssh://github.com/PlayForm/Inline into Current008aa60
Inline/v0.1.070c3ab5
Merge pull request #307 from PlayForm/dependabot/npm_and_yarn/playform/build-...7c60ad6
Bump@playform/build
from 0.1.1 to 0.1.2aabc4b9
4404b20
PlayForm/Inline#2955cc7856
Updates
astro-expressive-code
from 0.35.3 to 0.35.4Release notes
Sourced from astro-expressive-code's releases.
Changelog
Sourced from astro-expressive-code's changelog.
Commits
c619dcc
[CI] Release (#229)Updates
monaco-editor
from 0.49.0 to 0.50.0Release notes
Sourced from monaco-editor's releases.
... (truncated)
Changelog
Sourced from monaco-editor's changelog.
Commits
c321d0f
Merge pull request #4572 from microsoft/satisfactory-beetle29a4a3a
updating the version in the package.json fileada2b3d
Merge pull request #4570 from microsoft/dependabot/npm_and_yarn/ws-8.17.18a98f87
Bump ws from 8.4.2 to 8.17.1d15d6ba
Bump express from 4.18.1 to 4.19.2 in /website (#4447)654fd3d
Bump express from 4.18.1 to 4.19.2 in /samples (#4446)1eed447
Bump braces from 3.0.2 to 3.0.3 in /samples (#4565)f883fe9
Bump braces from 3.0.2 to 3.0.3 (#4564)c49fdf9
Merge pull request #4482 from jakebailey/emit-file-diagnostics045e29b
Merge pull request #4504 from htcfreek/patch-1Updates
satori
from 0.10.13 to 0.10.14Release notes
Sourced from satori's releases.
Commits
965b3a1
fix: incorrect data URL parsing (#596)3d3bee3
chore: Remove Node 18 from CI; update test snapshots (#620)d1dfcce
Correctly position font baseline and line-height (#599)Updates
tailwindcss
from 3.4.4 to 3.4.7Release notes
Sourced from tailwindcss's releases.
Superseded by #64.