Skip to content

feat(core): Promote zoneless to stable #62699

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat(core): Promote zoneless to stable
This commit moves zoneless from developer preview to stable and updates the roadmap to indicate it is ready for production use.
  • Loading branch information
atscott committed Jul 21, 2025
commit 28841a5b2ee6f6e9880e367d7ce717d92e910a6f
2 changes: 1 addition & 1 deletion adev/src/content/guide/zoneless.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The main advantages to removing ZoneJS as a dependency are:

## Enabling Zoneless in an application

The API for enabling Zoneless is currently in developer preview. The shape of the API and underlying behavior can change in patch versions.


```typescript
// standalone bootstrap
Expand Down
4 changes: 2 additions & 2 deletions adev/src/content/reference/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ Start developing with the latest Angular features from our roadmap. This list re

### Available to experiment with

* [Zoneless change detection](/guide/zoneless)
* [Resource API](/guide/signals/resource)
* [httpResource](/api/common/http/httpResource)

### Production ready

* [Zoneless change detection](/guide/zoneless)
* [Linked Signal API](/guide/signals/linked-signal)
* [Incremental hydration](/guide/incremental-hydration)
* [Effect API](/api/core/effect)
Expand Down Expand Up @@ -54,7 +54,7 @@ Start developing with the latest Angular features from our roadmap. This list re

In v19 we introduced zoneless support in server-side rendering, addressed some edge cases, and created a schematic to scaffold zoneless projects. We transitioned <a href="https://fonts.google.com/">Google Fonts</a> to zoneless which improved performance, developer experience, and allowed us to identify gaps that we need to address before moving this feature to developer preview.

As of Angular v20, Zoneless Angular is now in developer preview and includes improvements in error handling and server-side rendering.
As of Angular v20.2, Zoneless Angular is now stable and includes improvements in error handling and server-side rendering.
</docs-card>
<docs-card title="Signal integrations" href="">
We're working towards improving the integration of fundamental Angular packages, such as forms, HTTP, and router, with Signals. As part of this project, we'll seek opportunities to introduce convenient signal-based APIs or wrappers to improve the holistic developer experience.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,11 +365,8 @@ export class ChangeDetectionSchedulerImpl implements ChangeDetectionScheduler {
* ]});
* ```
*
* This API is experimental. Neither the shape, nor the underlying behavior is stable and can change
* in patch versions. There are known feature gaps and API ergonomic considerations. We will iterate
* on the exact API based on the feedback and our understanding of the problem and solution space.
* @publicApi 20.2
*
* @developerPreview 20.0
* @see {@link /api/platform-browser/bootstrapApplication bootstrapApplication}
*/
export function provideZonelessChangeDetection(): EnvironmentProviders {
Expand Down