@angular/cli
Commit | Description |
---|---|
improve bun lockfile detection and optimize lockfile checks |
@schematics/angular
Commit | Description |
---|---|
align labels in ai-config schema |
@angular-devkit/build-angular
Commit | Description |
---|---|
avoid extra tick in SSR builds |
@angular/build
Commit | Description |
---|---|
preserve names in esbuild for improved debugging in dev mode |
@angular/ssr
Commit | Description |
---|---|
introduce BootstrapContext for isolated server-side rendering |
Breaking Changes
@angular/ssr
-
The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.
Before:
const bootstrap = () => bootstrapApplication(AppComponent, config);
After:
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, config, context);