惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
GbyAI
GbyAI
P
Proofpoint News Feed
B
Blog
MyScale Blog
MyScale Blog
V
V2EX
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
量子位
Jina AI
Jina AI
博客园 - 叶小钗
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
罗磊的独立博客
L
LangChain Blog
I
InfoQ
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
小众软件
小众软件
V
Visual Studio Blog
月光博客
月光博客
The Cloudflare Blog
雷峰网
雷峰网

The Astro Blog

Astro 6.4 Astro 6.3 Starlight 0.39 Astro 6.2 What's new in Astro - April 2026 What's new in Astro - March 2026 Astro 6.1 CloudCannon Joins Astro as an Official CMS Partner Astro 6.0 What's new in Astro - February 2026 What's new in Astro - January 2026 Astro 5.17 Supporting the future of Astro The Astro Technology Company joins Cloudflare Astro 6 Beta What's new in Astro - December 2025 What's new in Astro - November 2025 Astro 5.16 Stainless Sponsors Astro, Launches Astro-Powered Docs Platform What's new in Astro - October 2025 Astro 5.15 Spirit of Astro: meet the winning designs What's new in Astro - September 2025 Astro 5.14 Cloudflare Donates $150,000 to Support Astro's Open Source Mission Webflow Donates $150,000 to Support Astro's Open Source Mission Mux: Our Official Video Partner Unleashing creativity: How CodeTV built a video streaming platform with Astro and Mux | Astro What's new in Astro - August 2025 Astro 5.13
Astro 4.7
Erika, Emanuele Stoppa, Matthew Phillips, Nate Moore, Bjorn Lu, · 2024-04-25 · via The Astro Blog

Astro 4.7 is now available! This release includes extensive improvements to the API for making toolbar apps, more ways to keep your Astro project up to date, and more.

Full release highlights include:

  • Significant improvements to the Dev Toolbar API
  • Update checker
  • allowJs: true for strictest TypeScript preset

To upgrade an existing project, use the automated @astrojs/upgrade CLI tool. Alternatively, upgrade manually by running the upgrade command for your package manager:

# Recommended:

npx @astrojs/upgrade

# Manual:

npm install astro@latest

pnpm upgrade astro --latest

yarn upgrade astro --latest

Astro 4.7 includes considerable improvements to the API for making toolbar apps. One of our main goal this release was to make it easier to build and maintain toolbar apps, and we are excited to bring you:

  • a defineToolbarApp() helper that makes it easier to define toolbar apps. This pattern should feel familiar as it is similar to defineConfig() in your Astro config and defineMiddleware() for defining middleware.
  • new app and server helpers to make it easier to send and receive messages between the toolbar and the server.
  • a brand new starter project for building toolbar apps. This will help you get started building your own toolbar apps in no time. Run npm create astro@latest -- --template toolbar-app and start building your toolbar app.
  • a recipe guiding you step-by-step through building your own toolbar app from scratch, including how to build your app using JSX frameworks like React or Preact.
  • revamped documentation of the Dev Toolbar App API, with all examples updated to show using the new methods.

We hope you’ll enjoy these improvements and we can’t wait to see what you build with them!

Update checker

Starting from this release, Astro will now check for updates when you run the dev server. If a new version is available, you’ll see a message in the terminal with instructions on how to update and in the dev toolbar.

A screenshot of the message that Astro shows in the terminal when an update is available: update > New version of Astro available: 4.6.3. Run npx @astrojs/upgrade to update.

To avoid spamming you with too many update messages, Astro will only check for updates once every 10 days and will only show the message if you’re multiple versions behind. You can disable this feature by running astro preferences disable checkUpdates or setting the ASTRO_DISABLE_UPDATE_CHECK environment variable to false.

allowJs: true for strictest TypeScript preset

Our strictest TypeScript preset previously included allowJs: false, to disable the use of .js files completely. This proved to be a bit too strict for the average user and often caused confusion. We’ve now changed this to allowJs: true, which allows you to use .js files in your project.

This should not be a breaking change, but if you’re using the strictest preset and would like to still disable .js files, set allowJs: false manually in your tsconfig.json.

Bug Fixes

As usual, Astro 4.7 includes more bug fixes and smaller improvements that couldn’t make it into this post! Check out the full release notes to learn more.