PackageTrack

npm · #3838

@angular/core

22.1.4angular/angular

Angular - the core framework

Release timeline

1101 releases since 2016
20182020202220242026

Releases

  1. 20.0.0-next.930 Apr 2025pre-release
    Release notes

    common

    Commit Description
    Allow passing ScrollOptions to ViewportScroller (#61002)
    rename httpResource function in factory (#60022)

    compiler-cli

    Commit Description
    detect missing structural directive imports (#59443)

    core

    Commit Description
    introduce TestBed.tick() (#60993)
    move provideExperimentalCheckNoChangesForDebug to provideCheckNoChangesConfig (#60906)
    rename afterRender to afterEveryRender and stabilize (#60999)
    async EventEmitter error should not prevent stability (#61028)
    prevent stash listener conflicts (#59635)
    stop producing ng-reflect attributes by default (#60973)

    http

    Commit Description
    add keepalive support for fetch requests (#60621)

    Breaking Changes

    core

    • the TestBed.flushEffects() was removed - use the TestBed.tick() instead.

    • provideExperimentalCheckNoChangesForDebug has several breaking changes:

      • It is renamed to provideCheckNoChangesConfig
      • The behavior applies to all checkNoChanges runs
      • The useNgZoneOnStable option is removed. This wasn't found to be generally more useful than interval
    • afterRender was renamed to afterEveryRender.

    • This commit deprecates ng-reflect-* attributes and updates the runtime to stop producing them by default. Please refactor application and test code to avoid relying on ng-reflect-* attributes.

      To enable a more seamless upgrade to v20, we've added the provideNgReflectAttributes() function (can be imported from the @angular/core package), which enables the mode in which Angular would be producing those attribites (in dev mode only). You can add the provideNgReflectAttributes() function to the list of providers within the bootstrap call.

    Open source →
  2. 20.0.0-next.823 Apr 2025pre-release
    Release notes

    compiler

    Commit Description
    support the in keyword in Binary expression (#58432)

    core

    Commit Description
    Move zoneless change detection to dev preview (#60748)
    do not run change detection on global error events (#60944)
    inject migration should treat @Attribute as optional (#60916)

    forms

    Commit Description
    make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)

    platform-server

    Commit Description
    deprecate the testing entry point (#60915)

    router

    Commit Description
    add asynchronous redirects (#60863)
    relax required types on router commands to readonly array (#60345)

    Breaking Changes

    compiler

    • 'in' in an expression now refers to the operator

    core

    • provideExperimentalZonelessChangeDetection is renamed to provideZonelessChangeDetection as it is now "Developer Preview" rather than "Experimental".

    router

    • The RedirectFn can now return Observable or Promise. Any code that directly calls functions returning this type may need to be adjusted to account for this.
    • Several methods in the public API of the Router which required writable arrays have now been updated to accept readonly arrays when no mutations are done.

    Deprecations

    platform-server

    • @angular/platform-server/testing

      Use e2e tests to verify SSR behavior instead.

    Open source →
  3. 20.0.0-next.716 Apr 2025pre-release
    Release notes

    common

    Commit Description
    issue a warning instead of an error when NgOptimizedImage exceeds the preload limit (#60879)

    core

    Commit Description
    Add provider which reports unhandled errors on window to ErrorHandler (#60704)
    expose performance data in Chrome DevTools (#60789)
    mark linkedSignal API as public (#60865)
    stabilize incremental hydration api (#60888)
    stabilize withI18nSupport() api (#60889)
    inject migration: replace param with this. (#60713)

    http

    Commit Description
    Include HTTP status code and headers when HTTP requests errored in httpResource (#60802)
    Open source →
  4. 20.0.0-next.69 Apr 2025pre-release
    Release notes

    compiler

    Commit Description
    add extended diagnostic for uninvoked track function on @for blocks (#60495)

    compiler-cli

    Commit Description
    ensure HMR works with different output module type (#60797)

    core

    Commit Description
    mark toObservable as stable (#60449)
    stabilize linkedSignal API (#60741)
    Stabilize PendingTasks Injectable (#60716)
    fix docs for output migration (#60764)
    fix ng generate @angular/core:output-migration. Fixes angular#58650 (#60763)
    Flush animations when no component has been checked (#58089)
    reduce total memory usage of various migration schematics (#60774)
    run ApplicationRef.prototype.bootstrap in NgZone (#60720)

    http

    Commit Description
    Delay stabilization until next app synchronization (#60656)

    language-service

    Commit Description
    Do not provide element completions in end tag (#60616)
    Ensure dollar signs are escaped in completions (#60597)

    Breaking Changes

    core

    • Animations are guaranteed to be flushed when Angular runs automatic change detection or manual calls to ApplicationRef.tick. Prior to this change, animations would not be flushed in some situations if change detection did not run on any views attached to the application. This change can affect tests which may rely on the old behavior, often by making assertions on DOM elements that should have been removed but weren't because DOM removal is delayed until animations are flushed.
    Open source →
  5. 20.0.0-next.52 Apr 2025pre-release
    Release notes

    Commit Description
    step 6 tutorial docs (#60630)

    animations

    Commit Description
    add missing peer dependency on @angular/common (#60660)

    compiler

    Commit Description
    error if rawText isn't estimated correctly (#60529)
    throw for invalid "as" expression in if block (#60580)

    compiler-cli

    Commit Description
    correctly parse event name in HostListener (#60561)
    Produce fatal diagnostic on duplicate decorated properties (#60376)
    set correct target when type checking events (#60561)
    support relative imports to symbols outside rootDir (#60555)

    core

    Commit Description
    export signalGetFn from signal primitives (#60497)
    move DOCUMENT token into core (#60663)
    update Node.js version support (#60545)
    call DestroyRef on destroy callback if view is destroyed (#58008)
    check ngDevMode for undefined (#60565)
    Ensure errors in listeners report to the application error handler (#60251)
    fix ng generate @angular/core:output-migration (#60626)
    fix regexp for event types (#60592)
    fixes #592882 ng generate @angular/core:signal-queries-migration (#60688)
    preserve comments in internal inject migration (#60588)
    prevent omission of deferred pipes in full compilation (#60571)
    release hasPendingTasks observers (#59723)
    remove forceRoot flag for effects (#60535)
    run root effects in creation order (#60534)
    Deprecate the structural directives ngIf/ngFor/ngSwitch. (#60492)

    forms

    Commit Description
    add markAllAsDirty to AbstractControl (#58663)
    Allow to reset a form without emitting events (#60354)

    language-service

    Commit Description
    Update adapter to log instead of throw errors (#60651)

    migrations

    Commit Description
    handle shorthand assignments in super call (#60602)
    inject migration not handling super parameter referenced via this (#60602)

    router

    Commit Description
    Add ability to directly abort a navigation (#60380)
    support custom elements for RouterLink (#60290)
    Add missing types to transition (#60307)
    Remove 'any' type from route guards (#60378)

    service-worker

    Commit Description
    assign initializing client's app version, when a request is for worker script (#58131)

    Breaking Changes

    core

      • Angular no longer supports Node.js v18.
      • Node.js versions 22.0 to 22.10 are also no longer supported.

      Before upgrading to Angular v20, ensure the Node.js version is at least 20.11.1. For the full list of supported versions, visit: https://angular.dev/reference/versions

    • Uncaught errors in listeners which were previously only reported to ErrorHandler are now also reported to Angular's internal error handling machinery. For tests, this means that the error will be rethrown by default rather than only logging the error. Developers should fix these errors, catch them in the test if the test is intentionally covering an error case, or use rethrowApplicationErrors: false in configureTestingModule as a last resort.

    router

    • The guards arrays on Route no longer include any in the type union. The union includes functions for the functional guards as well as a type matching Injector.get: ProviderToken<T>|string. Note that string is still deprecated on both the route guards and Injector.get.

    Deprecations

    core

    • ngIf/ngFor/ngSwitch are deprecated. Use the control flow blocks instead (@for/@if/@switch).
    Open source →
  6. 20.0.0-next.427 Mar 2025pre-release
    Release notes

    common

    Commit Description
    resolve host binding type issues (#60481)

    core

    Commit Description
    fix used templates are not deleted (#60459)
    fixes timing of hydration cleanup on control flow (#60425)

    forms

    Commit Description
    resolve host binding type issues (#60481)

    localize

    Commit Description
    handle @angular/build:karma in ng add (#60513)

    platform-browser

    Commit Description
    ensure platformBrowserTesting includes platformBrowser providers (#60480)
    Open source →
  7. 20.0.0-next.319 Mar 2025pre-release
    Release notes

    compiler-cli

    Commit Description
    add extended diagnostic for invalid nullish coalescing (#60279)
    support type checking of host bindings (#60267)
    report more accurate diagnostic for invalid import (#60455)
    wrong event name for host listener decorators (#60460)

    core

    Commit Description
    add hook for producer creation side effects (#60333)
    add support for two-way bindings on dynamically-created components (#60342)
    mark the toSignal API as stable (#60442)
    remove TestBed.get (#60414)
    catch hydration marker with implicit body tag (#60429)
    execute timer trigger outside zone (#60392)
    include input name in error message (#60404)
    remove rejectErrors option encourages uncaught exceptions (#60397)
    remove unused parameter from listener instruction (#60406)

    platform-browser-dynamic

    Commit Description
    ensure compiler is loaded before @angular/common (#60458)

    upgrade

    Commit Description
    handle output emitters when downgrading a component (#60369)

    Breaking Changes

    core

      • TestBed.get has been removed. Use TestBed.inject instead.
    Open source →
  8. 20.0.0-next.212 Mar 2025pre-release
    Release notes

    <a name="20.0.0-next.2"></a>

    20.0.0-next.2 (2025-03-12)

    common

    Commit Description
    support equality function in httpResource (#60026)

    compiler

    Commit Description
    incorrect spans for template literals (#60323)

    compiler-cli

    Commit Description
    avoid fatal diagnostics for missing template files (#58673)
    handle transformed classes when generating HMR code (#60298)

    core

    Commit Description
    remove InjectFlags from public API (#60318)
    add migration away from InjectFlags (#60318)
    check whether application is destroyed before initializing event replay (#59789)
    ensures immediate trigger fires properly with lazy loaded routes (#60203)
    fix removal of a container reference used in the component file (#60210)
    fix typing on injector.get to omit 'any' (#60202)
    Surface errors from ApplicationRef.tick to callsite (#60102)

    forms

    Commit Description
    Make sure statusChanges is emitted (#57098)

    platform-browser

    Commit Description
    Deprecate the HammerJS integration (#60257)

    platform-server

    Commit Description
    add missing peer dependency for rxjs (#60308)

    router

    Commit Description
    Prevent dangling promise rejections from internal navigations (#60162)
    update symbols (#60233)

    Breaking Changes

    core

      • InjectFlags has been removed.
      • inject no longer accepts InjectFlags.
      • Injector.get no longer accepts InjectFlags.
      • EnvironmentInjector.get no longer accepts InjectFlags.
      • TestBed.get no longer accepts InjectFlags.
      • TestBed.inject no longer accepts InjectFlags.
    • The any overload has been removed from injector.get. It now only supports ProviderToken<T> and (deprecated since v4) string.
    • ApplicationRef.tick will no longer catch and report errors to the appplication ErrorHandler. Errors will instead be thrown out of the method and will allow callers to determine how to handle these errors, such as aborting follow-up work or reporting the error and continuing.

    Deprecations

    platform-browser

    • HammerJS support is deprecated and will be removed in a future major version.
    Open source →
  9. 20.0.0-next.15 Mar 2025pre-release
    Release notes

    <a name="20.0.0-next.1"></a>

    20.0.0-next.1 (2025-03-05)

    common

    Commit Description
    clean up onUrlChange listener when root scope is destroyed (#60004)
    Handle errors in async pipe subscriptions (#60057)

    compiler

    Commit Description
    support tagged template literals in expressions (#59947)
    exponentiation should be right-to-left associative (#60101)
    proper handling of typeof, void in RecursiveAstVisitor (#60101)

    compiler-cli

    Commit Description
    ensure template IDs are not reused if a source file changes (#60152)
    preserve required parens for nullish coalescing (#60060)
    preserve required parens in exponentiation expressions (#60101)

    core

    Commit Description
    add input binding support to dynamically-created components (#60137)
    add the ability to apply directives to dynamically-created components (#60137)
    drop support for TypeScript older than 5.8 (#60197)
    emit template function for template related profiler hooks (#60174)
    Expose Injector.destroy on Injector created with Injector.create (#60054)
    introduce new DI profiling event (#60158)
    support listening to outputs on dynamically-created components (#60137)
    added @angular/compiler as a peer dependency (#55610)
    cache ComponentRef inputs and outputs (#60156)
    Catch and report rejections in async function of PendingTasks.run (#60044)
    defer block render failures should report to application error handler (#60149)
    do not allow setInput to be used with inputBinding (#60137)
    input targeting not checking if input exists on host (#60137)
    prevent invoking replay listeners on disconnected nodes (#60103)
    prevents event replay from being called on comment nodes (#60130)

    language-service

    Commit Description
    Forward the tags for quick info from the type definition (#59524)

    Breaking Changes

    common

    • AsyncPipe now directly catches unhandled errors in subscriptions and promises and reports them to the application's ErrorHandler. For Zone-based applications, these errors would have been caught by ZoneJS and reported to ErrorHandler so the result is generally the same. The change to the exact mechanism for reporting can result in differences in test environments that will require test updates.

    core

      • TypeScript versions less than 5.8 are no longer supported.
    • PendingTasks.run no longer returns the result of the async function. If this behavior is desired, it can be re-implemented manually with the PendingTasks.add. Be aware, however, that promise rejections will need to be handled or they can cause the node process to shut down when using SSR.
    Open source →
  10. 20.0.0-next.026 Feb 2025pre-release
    Release notes

    <a name="20.0.0-next.0"></a>

    20.0.0-next.0 (2025-02-26)

    common

    Commit Description
    throw error for suspicious date patterns (#59798)

    compiler

    Commit Description
    support exponentiation operator in templates (#59894)
    support void operator in templates (#59894)

    core

    Commit Description
    Ensure ComponentFixture does not duplicate error reporting from FakeAsync (#60104)
    Remove duplicate reporting of errors in CDR.detectChanges (#60056)

    router

    Commit Description
    Allow resolvers to read resolved data from ancestors (#59860)
    Scroller should scroll as soon as change detection completes (#60086)

    Breaking Changes

    common

    • Using the Y formatter (week-numbering year) without also including w (week number) is now detected as suspicious date pattern, as y is typically intended.

    compiler

    • void in an expression now refers to the operator

      Previously an expression in the template like {{void}} referred to a property on the component class. After this change it now refers to the void operator, which would make the above example invalid. If you have existing expressions that need to refer to a property named void, change the expression to use this.void instead: {{this.void}}.

    Open source →
  11. 19.2.252 Jun 2026
    Release notes

    platform-server

    Commit Description
    throw on suspicious URLs and restrict protocol-relative URLs
    update domino to latest version
    Open source →
    Additional notes

    platform-server

    Commit Type Description
    e2fb854d55 fix throw on suspicious URLs and restrict protocol-relative URLs
    0a8befb493 fix update domino to latest version

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="20.3.24"></a>

    Open source →
  12. 19.2.2428 May 2026
    Release notes

    compiler

    Commit Description
    prevent namespaced SVG <style> elements from being stripped
    Open source →
    Additional notes

    compiler

    Commit Type Description
    6ea6379123 fix prevent namespaced SVG <style> elements from being stripped

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="20.3.23"></a>

    Open source →
  13. 19.2.2327 May 2026
    Release notes

    common

    Commit Description
    add upper bounds for digitsInfo
    sanitize placeholder

    compiler

    Commit Description
    normalize tag names with custom namespaces in DomElementSchemaRegistry
    sanitize dynamic href and xlink:href bindings on SVG a elements
    strip namespaced SVG script elements during template compilation

    core

    Commit Description
    reject script element as a dynamic component host
    sanitize meta selectors
    support prefix-insensitive DOM schema lookups and compile-time i18n attribute validation
    synchronize core sanitization schema with compiler
    wrap i18n dynamic element property updates in active index states

    http

    Commit Description
    exclude withCredentials requests from transfer cache
    skip TransferCache for cookie-bearing requests by default

    platform-server

    Commit Description
    normalize path parsing in ServerPlatformLocation
    secure location and document initialization against SSRF and path hijack

    service-worker

    Commit Description
    preserve redirect policy on reconstructed asset requests
    Preserves explicit 'credentials: omit' in asset requests
    Preserves HTTP cache mode in asset group requests
    Open source →
    Additional notes

    common

    Commit Type Description
    62dd27d6af fix add upper bounds for digitsInfo
    17326725ba fix sanitize placeholder

    compiler

    Commit Type Description
    932e0728db fix normalize tag names with custom namespaces in DomElementSchemaRegistry
    2e3d0371ab fix sanitize dynamic href and xlink:href bindings on SVG a elements
    fe1207e8c5 fix strip namespaced SVG script elements during template compilation

    core

    Commit Type Description
    c6bb0692e2 fix reject script element as a dynamic component host
    3960b21558 fix sanitize meta selectors
    3632fa4b69 fix support prefix-insensitive DOM schema lookups and compile-time i18n attribute validation
    620230dac4 fix synchronize core sanitization schema with compiler
    d31f84116c fix wrap i18n dynamic element property updates in active index states

    http

    Commit Type Description
    9940ffd781 fix exclude withCredentials requests from transfer cache
    0f67f0b962 fix skip TransferCache for cookie-bearing requests by default

    platform-server

    Commit Type Description
    d187e8aeda fix normalize path parsing in ServerPlatformLocation
    c75f60ef8a fix secure location and document initialization against SSRF and path hijack

    service-worker

    Commit Type Description
    37ee9ffd9e fix preserve redirect policy on reconstructed asset requests
    97f796203f fix Preserves explicit 'credentials: omit' in asset requests
    5619120931 fix Preserves HTTP cache mode in asset group requests

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="21.2.14"></a>

    Open source →
  14. 19.2.2212 May 2026
    Release notes

    core

    Commit Description
    disallow event attribute bindings in host bindings unconditionally (#68469)
    validate security-sensitive attributes in i18n bindings (#68469)

    platform-server

    Commit Description
    add allowedHosts option to renderModule and renderApplication
    ensure origin has a trailing slash when parsing url (#68469)
    Open source →
    Additional notes

    core

    Commit Type Description
    83a640516f fix disallow event attribute bindings in host bindings unconditionally (#68469)
    24a0103a98 fix validate security-sensitive attributes in i18n bindings (#68469)

    platform-server

    Commit Type Description
    8569db8875 fix add allowedHosts option to renderModule and renderApplication
    837a710217 fix ensure origin has a trailing slash when parsing url (#68469)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="20.3.21"></a>

    Open source →
  15. 19.2.2115 Apr 2026
    Release notes

    platform-server

    Commit Description
    prevent SSRF bypasses via protocol-relative and backslash URLs
    Open source →
    Additional notes

    platform-server

    Commit Type Description
    f3a5bfb949 fix prevent SSRF bypasses via protocol-relative and backslash URLs

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="20.3.19"></a>

    Open source →
  16. 19.2.2012 Mar 2026
    Release notes

    compiler

    Commit Description
    disallow translations of iframe src

    core

    Commit Description
    sanitize translated attribute bindings with interpolations
    sanitize translated form attributes
    Open source →
    Additional notes

    compiler

    Commit Type Description
    5be912eb55 fix disallow translations of iframe src

    core

    Commit Type Description
    b89b0a83a4 fix sanitize translated attribute bindings with interpolations
    621c7071ad fix sanitize translated form attributes

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="20.3.18"></a>

    Open source →
  17. 19.2.1925 Feb 2026
    Release notes

    core

    Commit Description
    block creation of sensitive URI attributes from ICU messages

    Breaking Changes

    core

    • Angular now only applies known attributes from HTML in translated ICU content. Unknown attributes are dropped and not rendered.

      (cherry picked from commit 03da204b6daa5e4583e0d0968c2107390bbd8235)

    Open source →
    Additional notes

    Breaking Changes

    core

    • Angular now only applies known attributes from HTML in translated ICU content. Unknown attributes are dropped and not rendered.

      (cherry picked from commit 03da204b6daa5e4583e0d0968c2107390bbd8235)

    core

    Commit Type Description
    747548721d fix block creation of sensitive URI attributes from ICU messages

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="20.3.17"></a>

    Open source →
  18. 19.2.187 Jan 2026
    Release notes

    core

    Commit Description
    sanitize sensitive attributes on SVG script elements
    Open source →
    Additional notes

    core

    Commit Type Description
    26cdc53d9c fix sanitize sensitive attributes on SVG script elements

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="21.0.7"></a>

    Open source →
  19. 19.2.171 Dec 2025
    Release notes

    compiler

    Commit Description
    prevent XSS via SVG animation attributeName and MathML/SVG URLs
    Open source →
    Additional notes

    compiler

    Commit Type Description
    7c42e2ebeb fix prevent XSS via SVG animation attributeName and MathML/SVG URLs

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.16"></a>

    Open source →
  20. 19.2.1626 Nov 2025
    Release notes

    http

    Commit Description
    prevent XSRF token leakage to protocol-relative URLs
    Open source →
    Additional notes

    http

    Commit Type Description
    05fe6686a9 fix prevent XSRF token leakage to protocol-relative URLs

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="20.3.14"></a>

    Open source →
  21. 19.2.1510 Sept 2025
    Release notes

    core

    Commit Description
    introduce BootstrapContext for improved server bootstrapping (#63639)

    Breaking Changes

    core

    • 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);
      

      A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

      In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    For more information please see: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

    Open source →
    Additional notes

    Breaking Changes

    core

    • 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);
      

      A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

      In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    core

    Commit Type Description
    70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="20.3.0"></a>

    Open source →
  22. 19.2.1428 May 2025
    Release notes

    compiler

    Commit Description
    lexer support for template literals in object literals (#61601)

    migrations

    Commit Description
    preserve comments when removing unused imports (#61674)
    Open source →
    Additional notes

    compiler

    Commit Type Description
    24bab55f0c fix lexer support for template literals in object literals (#61601)

    migrations

    Commit Type Description
    9e1cd49662 fix preserve comments when removing unused imports (#61674)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.13"></a>

    Open source →
  23. 19.2.1323 May 2025
    Release notes

    common

    Commit Description
    avoid injecting ApplicationRef in FetchBackend (#61649)

    service-worker

    Commit Description
    do not register service worker if app is destroyed before it is ready to register (#61101)
    Open source →
    Additional notes

    common

    Commit Type Description
    2c876b4fc5 fix avoid injecting ApplicationRef in FetchBackend (#61649)

    service-worker

    Commit Type Description
    b15bddfa04 fix do not register service worker if app is destroyed before it is ready to register (#61101)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.12"></a>

    Open source →
  24. 19.2.1221 May 2025
    Release notes

    common

    Commit Description
    cancel reader when app is destroyed (#61528)
    prevent reading chunks if app is destroyed (#61354)

    compiler

    Commit Description
    avoid conflicts between HMR code and local symbols (#61550)

    compiler-cli

    Commit Description
    Always retain prior results for all files (#61487)
    avoid ECMAScript private field metadata emit (#61227)

    core

    Commit Description
    cleanup rxResource abort listener (#58306)
    cleanup testability subscriptions (#61261)
    enable stashing only when withEventReplay() is invoked (#61352)
    Testing should not throw when Zone does not patch test FW APIs (#61376)
    unregister onDestroy in toSignal. (#61514)

    platform-server

    Commit Description
    speed up resolution of base (#61392)
    Open source →
    Additional notes

    common

    Commit Type Description
    126efc9972 fix cancel reader when app is destroyed (#61528)
    efda872453 fix prevent reading chunks if app is destroyed (#61354)

    compiler

    Commit Type Description
    44bb328eae fix avoid conflicts between HMR code and local symbols (#61550)

    compiler-cli

    Commit Type Description
    107180260f fix Always retain prior results for all files (#61487)
    1191e62d70 fix avoid ECMAScript private field metadata emit (#61227)

    core

    Commit Type Description
    2b1b14f4d3 fix cleanup rxResource abort listener (#58306)
    8f9b05eaaa fix cleanup testability subscriptions (#61261)
    eb53bda470 fix enable stashing only when withEventReplay() is invoked (#61352)
    94f5a4b4d6 fix Testing should not throw when Zone does not patch test FW APIs (#61376)
    c0c69a5abc fix unregister onDestroy in toSignal. (#61514)

    platform-server

    Commit Type Description
    8edafd0559 perf speed up resolution of base (#61392)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.11"></a>

    Open source →
  25. 19.2.1115 May 2025
    Release notes

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.10"></a>

    Open source →
  26. 19.2.107 May 2025
    Release notes

    common

    Commit Description
    cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

    core

    Commit Description
    missing useExisting providers throwing for optional calls (#61152)
    properly handle app stabilization with defer blocks (#61056)

    platform-server

    Commit Description
    less aggressive ngServerMode cleanup (#61106)
    Open source →
    Additional notes

    common

    Commit Type Description
    89056a0356 fix cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

    core

    Commit Type Description
    4623b61448 fix missing useExisting providers throwing for optional calls (#61152)
    400dbc5b89 fix properly handle app stabilization with defer blocks (#61056)

    platform-server

    Commit Type Description
    a6f0d5bc20 fix less aggressive ngServerMode cleanup (#61106)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.9"></a>

    Open source →
  27. 19.2.930 Apr 2025
    Release notes

    core

    Commit Description
    async EventEmitter error should not prevent stability (#61028)
    call DestroyRef on destroy callback if view is destroyed [patch] (#61061)
    prevent stash listener conflicts [patch] (#61063)
    Open source →
    Additional notes

    core

    Commit Type Description
    946b844e0d fix async EventEmitter error should not prevent stability (#61028)
    dbb87026ca fix call DestroyRef on destroy callback if view is destroyed [patch] (#61061)
    2e140a136a fix prevent stash listener conflicts [patch] (#61063)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.8"></a>

    Open source →
  28. 19.2.823 Apr 2025
    Release notes

    forms

    Commit Description
    make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)
    Open source →
    Additional notes

    forms

    Commit Type Description
    ea4a211216 fix make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.7"></a>

    Open source →
  29. 19.2.716 Apr 2025
    Release notes

    common

    Commit Description
    issue a warning instead of an error when NgOptimizedImage exceeds the preload limit (#60883)

    core

    Commit Description
    inject migration: replace param with this. (#60713)

    http

    Commit Description
    Include HTTP status code and headers when HTTP requests errored in httpResource (#60802)
    Open source →
    Additional notes

    common

    Commit Type Description
    37ab6814f5 fix issue a warning instead of an error when NgOptimizedImage exceeds the preload limit (#60883)

    core

    Commit Type Description
    b144126612 fix inject migration: replace param with this. (#60713)

    http

    Commit Type Description
    d39e09da41 fix Include HTTP status code and headers when HTTP requests errored in httpResource (#60802)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.6"></a>

    Open source →
  30. 19.2.69 Apr 2025
    Release notes

    compiler

    Commit Description
    error if rawText isn't estimated correctly (#60529) (#60753)

    compiler-cli

    Commit Description
    ensure HMR works with different output module type (#60797)

    core

    Commit Description
    fix docs for output migration (#60764)
    fix ng generate @angular/core:output-migration. Fixes angular#58650 (#60763)
    reduce total memory usage of various migration schematics (#60776)

    language-service

    Commit Description
    Do not provide element completions in end tag (#60616)
    Ensure dollar signs are escaped in completions (#60597)
    Open source →
    Additional notes

    compiler

    Commit Type Description
    3441f7b914 fix error if rawText isn't estimated correctly (#60529) (#60753)

    compiler-cli

    Commit Type Description
    fc946c5f72 fix ensure HMR works with different output module type (#60797)

    core

    Commit Type Description
    00bbd9b382 fix fix docs for output migration (#60764)
    f2bfa3151e fix fix ng generate @angular/core:output-migration. Fixes angular#58650 (#60763)
    9241615ad0 fix reduce total memory usage of various migration schematics (#60776)

    language-service

    Commit Type Description
    0e82d42774 fix Do not provide element completions in end tag (#60616)
    fcdef1019f fix Ensure dollar signs are escaped in completions (#60597)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.5"></a>

    Open source →
  31. 19.2.52 Apr 2025
    Release notes

    Commit Description
    step 6 tutorial docs (#60630)

    animations

    Commit Description
    add missing peer dependency on @angular/common (#60660)

    compiler

    Commit Description
    throw for invalid "as" expression in if block (#60580)

    compiler-cli

    Commit Description
    Produce fatal diagnostic on duplicate decorated properties (#60376)
    support relative imports to symbols outside rootDir (#60555)

    core

    Commit Description
    check ngDevMode for undefined (#60565)
    fix ng generate @angular/core:output-migration (#60626)
    fix regexp for event types (#60592)
    fixes #592882 ng generate @angular/core:signal-queries-migration (#60688)
    preserve comments in internal inject migration (#60588)
    prevent omission of deferred pipes in full compilation (#60571)

    language-service

    Commit Description
    Update adapter to log instead of throw errors (#60651)

    migrations

    Commit Description
    handle shorthand assignments in super call (#60602)
    inject migration not handling super parameter referenced via this (#60602)

    router

    Commit Description
    Add missing types to transition (#60307)

    service-worker

    Commit Description
    assign initializing client's app version, when a request is for worker script (#58131)
    Open source →
    Additional notes

    Commit Type Description
    e61d06afb5 fix step 6 tutorial docs (#60630)

    animations

    Commit Type Description
    fa48f98d9f fix add missing peer dependency on @angular/common (#60660)

    compiler

    Commit Type Description
    ca5aa4d55b fix throw for invalid "as" expression in if block (#60580)

    compiler-cli

    Commit Type Description
    f4c4b10ea8 fix Produce fatal diagnostic on duplicate decorated properties (#60376)
    22a0e54ac4 fix support relative imports to symbols outside rootDir (#60555)

    core

    Commit Type Description
    64da69f7b6 fix check ngDevMode for undefined (#60565)
    8f68d1bec3 fix fix ng generate @angular/core:output-migration (#60626)
    bc79985c65 fix fix regexp for event types (#60592)
    006ac7f22f fix fixes #592882 ng generate @angular/core:signal-queries-migration (#60688)
    da6e93f434 fix preserve comments in internal inject migration (#60588)
    dbbddd1617 fix prevent omission of deferred pipes in full compilation (#60571)

    language-service

    Commit Type Description
    0e9e0348dd fix Update adapter to log instead of throw errors (#60651)

    migrations

    Commit Type Description
    15f53f035b fix handle shorthand assignments in super call (#60602)
    4b161e6234 fix inject migration not handling super parameter referenced via this (#60602)

    router

    Commit Type Description
    958e98e4f7 fix Add missing types to transition (#60307)

    service-worker

    Commit Type Description
    7cd89ad2c6 fix assign initializing client's app version, when a request is for worker script (#58131)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.4"></a>

    Open source →
  32. 19.2.427 Mar 2025
    Release notes

    core

    Commit Description
    fix used templates are not deleted (#60459)

    localize

    Commit Description
    handle @angular/build:karma in ng add (#60513)

    platform-browser

    Commit Description
    ensure platformBrowserTesting includes platformBrowser providers (#60480)
    Open source →
    Additional notes

    core

    Commit Type Description
    081f5f5a83f fix fix used templates are not deleted (#60459)

    localize

    Commit Type Description
    a2f622d82d6 fix handle @angular/build:karma in ng add (#60513)

    platform-browser

    Commit Type Description
    8e8ccc79279 fix ensure platformBrowserTesting includes platformBrowser providers (#60480)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.3"></a>

    Open source →
  33. 19.2.319 Mar 2025
    Release notes

    compiler-cli

    Commit Description
    report more accurate diagnostic for invalid import (#60455)

    core

    Commit Description
    catch hydration marker with implicit body tag (#60429)
    execute timer trigger outside zone (#60392)
    include input name in error message (#60404)

    platform-browser-dynamic

    Commit Description
    ensure compiler is loaded before @angular/common (#60458)

    upgrade

    Commit Description
    handle output emitters when downgrading a component (#60369)
    Open source →
    Additional notes

    compiler-cli

    Commit Type Description
    aa8ea7a5b2 fix report more accurate diagnostic for invalid import (#60455)

    core

    Commit Type Description
    13a8709b2b fix catch hydration marker with implicit body tag (#60429)
    296aded9da fix execute timer trigger outside zone (#60392)
    0615ffb4f7 fix include input name in error message (#60404)

    platform-browser-dynamic

    Commit Type Description
    1e06c8e8b6 fix ensure compiler is loaded before @angular/common (#60458)

    upgrade

    Commit Type Description
    9e1a1030c8 fix handle output emitters when downgrading a component (#60369)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.2"></a>

    Open source →
  34. 19.2.212 Mar 2025
    Release notes

    <a name="19.2.2"></a>

    19.2.2 (2025-03-12)

    common

    Commit Description
    support equality function in httpResource (#60026)

    compiler

    Commit Description
    incorrect spans for template literals (#60323) (#60331)

    compiler-cli

    Commit Description
    handle transformed classes when generating HMR code (#60298)

    core

    Commit Description
    check whether application is destroyed before initializing event replay (#59789)
    ensures immediate trigger fires properly with lazy loaded routes (#60203)
    fix removal of a container reference used in the component file (#60210)

    platform-server

    Commit Description
    add missing peer dependency for rxjs (#60308)

    router

    Commit Description
    update symbols (#60233)
    Open source →
    Additional notes

    common

    Commit Type Description
    90a16a1088 fix support equality function in httpResource (#60026)

    compiler

    Commit Type Description
    56b551d273 fix incorrect spans for template literals (#60323) (#60331)

    compiler-cli

    Commit Type Description
    23ca88522b fix handle transformed classes when generating HMR code (#60298)

    core

    Commit Type Description
    6dc41265fd fix check whether application is destroyed before initializing event replay (#59789)
    bb12b30d52 fix ensures immediate trigger fires properly with lazy loaded routes (#60203)
    b144dd946e fix fix removal of a container reference used in the component file (#60210)

    platform-server

    Commit Type Description
    15c42969fc fix add missing peer dependency for rxjs (#60308)

    router

    Commit Type Description
    7bcdf7c143 fix update symbols (#60233)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.1"></a>

    Open source →
  35. 19.2.15 Mar 2025
    Release notes

    <a name="19.2.1"></a>

    19.2.1 (2025-03-05)

    common

    Commit Description
    clean up onUrlChange listener when root scope is destroyed (#60004)

    compiler-cli

    Commit Description
    ensure template IDs are not reused if a source file changes (#60152)

    core

    Commit Description
    cache ComponentRef inputs and outputs (#60156)
    prevent invoking replay listeners on disconnected nodes (#60103)
    prevents event replay from being called on comment nodes (#60130)

    language-service

    Commit Description
    Forward the tags for quick info from the type definition (#59524)
    Open source →
    Additional notes

    common

    Commit Type Description
    c2de5f68b3 fix clean up onUrlChange listener when root scope is destroyed (#60004)

    compiler-cli

    Commit Type Description
    1dd94476b3 fix ensure template IDs are not reused if a source file changes (#60152)

    core

    Commit Type Description
    1b3b05bf72 fix cache ComponentRef inputs and outputs (#60156)
    330c24aed9 fix prevent invoking replay listeners on disconnected nodes (#60103)
    cfad089cc3 fix prevents event replay from being called on comment nodes (#60130)

    language-service

    Commit Type Description
    3f0116607d fix Forward the tags for quick info from the type definition (#59524)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.2.0"></a>

    Open source →
  36. 19.2.026 Feb 2025
    Release notes

    <a name="19.2.0"></a>

    19.2.0 (2025-02-26)

    common

    Commit Description
    introduce experimental httpResource (#59876)

    compiler

    Commit Description
    Add Skip Hydration diagnostic. (#59576)
    support untagged template literals in expressions (#59230)

    core

    Commit Description
    pass signal node to throwInvalidWriteToSignalErrorFn (#59600)
    support default value in resource() (#59655)
    support streaming resources (#59573)
    support TypeScript 5.8 (#59830)
    add hasValue narrowing to ResourceRef (#59708)
    cancel in-progress request when same value is assigned (#59280)
    Defer afterRender until after first CD (#59455) (#59551)
    Don't run effects in check no changes pass (#59455) (#59551)
    fix resource()'s previous.state (#59708)
    fix race condition in resource() (#59851)
    preserve tracing snapshot until tick finishes (#59796)

    forms

    Commit Description
    support type set in form validators (#45793)

    migrations

    Commit Description
    add migration to convert templates to use self-closing tags (#57342)

    platform-browser

    Commit Description
    automatically disable animations on the server (#59762)

    platform-server

    Commit Description
    decouple server from animations module (#59762)
    Open source →
    Additional notes

    common

    Commit Type Description
    3e39da593a feat introduce experimental httpResource (#59876)

    compiler

    Commit Type Description
    5b20bab96d feat Add Skip Hydration diagnostic. (#59576)
    fe8a68329b feat support untagged template literals in expressions (#59230)

    core

    Commit Type Description
    2588985f43 feat pass signal node to throwInvalidWriteToSignalErrorFn (#59600)
    168516462a feat support default value in resource() (#59655)
    bc2ad7bfd3 feat support streaming resources (#59573)
    146ab9a76e feat support TypeScript 5.8 (#59830)
    6c92d65349 fix add hasValue narrowing to ResourceRef (#59708)
    96e602ebe9 fix cancel in-progress request when same value is assigned (#59280)
    6789c7ef94 fix Defer afterRender until after first CD (#59455) (#59551)
    c87e581dd9 fix Don't run effects in check no changes pass (#59455) (#59551)
    127fc0dc84 fix fix resource()'s previous.state (#59708)
    b592b1b051 fix fix race condition in resource() (#59851)
    a299e02e91 fix preserve tracing snapshot until tick finishes (#59796)

    forms

    Commit Type Description
    fa0c3e3210 feat support type set in form validators (#45793)

    migrations

    Commit Type Description
    1cd3a7db83 feat add migration to convert templates to use self-closing tags (#57342)

    platform-browser

    Commit Type Description
    e6cb411e43 fix automatically disable animations on the server (#59762)

    platform-server

    Commit Type Description
    fc5d187da5 fix decouple server from animations module (#59762)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.8"></a>

    Open source →
  37. 19.2.0-rc.019 Feb 2025pre-release
    Release notes

    <a name="19.2.0-rc.0"></a>

    19.2.0-rc.0 (2025-02-19)

    common

    Commit Description
    introduce experimental httpResource (#59876)
    clean up urlChanges subscribers when root scope is destroyed (#59703)

    compiler

    Commit Description
    Add Skip Hydration diagnostic. (#59576)

    compiler-cli

    Commit Description
    avoid crash in isolated transform operations (#59869)

    core

    Commit Description
    pass signal node to throwInvalidWriteToSignalErrorFn (#59600)

    forms

    Commit Description
    Fix typing on FormRecord. (#59993)

    migrations

    Commit Description
    add migration to convert templates to use self-closing tags (#57342)
    Open source →
  38. 19.2.0-next.313 Feb 2025pre-release
    Release notes

    <a name="19.2.0-next.3"></a>

    19.2.0-next.3 (2025-02-13)

    compiler

    Commit Description
    handle tracking expressions requiring temporary variables (#58520)

    compiler-cli

    Commit Description
    handle deferred blocks with shared dependencies correctly (#59926)

    core

    Commit Description
    Defer afterRender until after first CD (#59455) (#59551)
    Don't run effects in check no changes pass (#59455) (#59551)
    invalidate HMR component if replacement throws an error (#59854)

    migrations

    Commit Description
    account for let declarations in control flow migration (#59861)
    count used dependencies inside existing control flow (#59861)
    Open source →
  39. 19.2.0-next.26 Feb 2025pre-release
    Release notes

    <a name="19.2.0-next.2"></a>

    19.2.0-next.2 (2025-02-06)

    compiler-cli

    Commit Description
    gracefully fall back if const enum cannot be passed through (#59815)
    handle const enums used inside HMR data (#59815)
    handle enum members without initializers in partial evaluator (#59815)

    core

    Commit Description
    support TypeScript 5.8 (#59830)
    fix race condition in resource() (#59851)
    preserve tracing snapshot until tick finishes (#59796)

    forms

    Commit Description
    support type set in form validators (#45793)
    Open source →
  40. 19.2.0-next.129 Jan 2025pre-release
    Release notes

    <a name="19.2.0-next.1"></a>

    19.2.0-next.1 (2025-01-29)

    core

    Commit Description
    support default value in resource() (#59655)
    add hasValue narrowing to ResourceRef (#59708)
    cancel in-progress request when same value is assigned (#59280)
    check whether application is destroyed before printing hydration stats (#59716)
    ensure type is preserved during HMR (#59700)
    fix resource()'s previous.state (#59708)
    fixes test timer-based test flakiness in CI (#59674)

    elements

    Commit Description
    not setting initial value on signal-based input (#59773)

    platform-browser

    Commit Description
    automatically disable animations on the server (#59762)
    prepend baseHref to sourceMappingURL in CSS content (#59730)
    Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)
    Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)
    Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)

    platform-server

    Commit Description
    decouple server from animations module (#59762)

    router

    Commit Description
    prevent error handling when injector is destroyed (#59457)

    service-worker

    Commit Description
    add missing rxjs peer dependency (#59747)
    Open source →
  41. 19.2.0-next.022 Jan 2025pre-release
    Release notes

    <a name="19.2.0-next.0"></a>

    19.2.0-next.0 (2025-01-22)

    compiler

    Commit Description
    support untagged template literals in expressions (#59230)

    compiler-cli

    Commit Description
    detect missing structural directive imports (#59443)

    core

    Commit Description
    support streaming resources (#59573)
    Open source →
  42. 19.1.826 Feb 2025
    Release notes

    <a name="19.1.8"></a>

    19.1.8 (2025-02-26)

    benchpress

    Commit Description
    Ensure future-proof correct initialization order (#60025)

    common

    Commit Description
    make types for HttpClient more readable (#59901)

    core

    Commit Description
    capture stack for HMR errors (#60067)

    language-service

    Commit Description
    provide correct rename info for elements (#60088)
    Open source →
    Additional notes

    benchpress

    Commit Type Description
    f0990c67e6 fix Ensure future-proof correct initialization order (#60025)

    common

    Commit Type Description
    1fbaeab37d fix make types for HttpClient more readable (#59901)

    core

    Commit Type Description
    c611c8d212 fix capture stack for HMR errors (#60067)

    language-service

    Commit Type Description
    4c9d09c643 fix provide correct rename info for elements (#60088)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.7"></a>

    Open source →
  43. 19.1.719 Feb 2025
    Release notes

    <a name="19.1.7"></a>

    19.1.7 (2025-02-19)

    common

    Commit Description
    clean up urlChanges subscribers when root scope is destroyed (#59703)

    compiler-cli

    Commit Description
    avoid crash in isolated transform operations (#59869)

    forms

    Commit Description
    Fix typing on FormRecord. (#59993)
    Open source →
    Additional notes

    common

    Commit Type Description
    e9f10eb4c9 fix clean up urlChanges subscribers when root scope is destroyed (#59703)

    compiler-cli

    Commit Type Description
    16fc074689 fix avoid crash in isolated transform operations (#59869)

    forms

    Commit Type Description
    ec1e4c3d94 fix Fix typing on FormRecord. (#59993)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.6"></a>

    Open source →
  44. 19.1.612 Feb 2025
    Release notes

    <a name="19.1.6"></a>

    19.1.6 (2025-02-12)

    compiler

    Commit Description
    handle tracking expressions requiring temporary variables (#58520)

    compiler-cli

    Commit Description
    handle deferred blocks with shared dependencies correctly (#59926)

    core

    Commit Description
    invalidate HMR component if replacement throws an error (#59854)

    migrations

    Commit Description
    account for let declarations in control flow migration (#59861)
    count used dependencies inside existing control flow (#59861)
    Open source →
    Additional notes

    compiler

    Commit Type Description
    01f669a274 fix handle tracking expressions requiring temporary variables (#58520)

    compiler-cli

    Commit Type Description
    dcfb9f1959 fix handle deferred blocks with shared dependencies correctly (#59926)

    core

    Commit Type Description
    cab7a9b69c fix invalidate HMR component if replacement throws an error (#59854)

    migrations

    Commit Type Description
    710759ddcc fix account for let declarations in control flow migration (#59861)
    46f36a58bf fix count used dependencies inside existing control flow (#59861)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.5"></a>

    Open source →
  45. 19.1.56 Feb 2025
    Release notes

    <a name="19.1.5"></a>

    19.1.5 (2025-02-06)

    compiler-cli

    Commit Description
    gracefully fall back if const enum cannot be passed through (#59815)
    handle const enums used inside HMR data (#59815)
    handle enum members without initializers in partial evaluator (#59815)
    Open source →
    Additional notes

    compiler-cli

    Commit Type Description
    d7b5c597ffc fix gracefully fall back if const enum cannot be passed through (#59815)
    53a4668b58b fix handle const enums used inside HMR data (#59815)
    976125e0b4c fix handle enum members without initializers in partial evaluator (#59815)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.4"></a>

    Open source →
  46. 19.1.429 Jan 2025
    Release notes

    <a name="19.1.4"></a>

    19.1.4 (2025-01-29)

    core

    Commit Description
    check whether application is destroyed before printing hydration stats (#59716)
    ensure type is preserved during HMR (#59700)
    fixes test timer-based test flakiness in CI (#59674)

    elements

    Commit Description
    not setting initial value on signal-based input (#59773)

    platform-browser

    Commit Description
    prepend baseHref to sourceMappingURL in CSS content (#59730)
    Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)
    Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)
    Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)

    router

    Commit Description
    prevent error handling when injector is destroyed (#59457)

    service-worker

    Commit Description
    add missing rxjs peer dependency (#59747)
    Open source →
    Additional notes

    core

    Commit Type Description
    544b9ee7ca0 fix check whether application is destroyed before printing hydration stats (#59716)
    d6e78c072dc fix ensure type is preserved during HMR (#59700)
    c2436702df9 fix fixes test timer-based test flakiness in CI (#59674)

    elements

    Commit Type Description
    44180645992 fix not setting initial value on signal-based input (#59773)

    platform-browser

    Commit Type Description
    1828a840620 fix prepend baseHref to sourceMappingURL in CSS content (#59730)
    1c84cbca30e fix Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)
    12256574626 fix Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)
    3f4d5f636aa fix Update pseudoevent created by createMouseSpecialEvent to populate _originalEvent property (#59690)

    router

    Commit Type Description
    e3da35ec749 fix prevent error handling when injector is destroyed (#59457)

    service-worker

    Commit Type Description
    522acbf3d7e fix add missing rxjs peer dependency (#59747)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.3"></a>

    Open source →
  47. 19.1.322 Jan 2025
    Release notes

    <a name="19.1.3"></a>

    19.1.3 (2025-01-22)

    compiler

    Commit Description
    handle :host-context with comma-separated child selector (#59276)

    compiler-cli

    Commit Description
    extract parenthesized dependencies during HMR (#59644)
    handle conditional expressions when extracting dependencies (#59637)
    handle new expressions when extracting dependencies (#59637)

    core

    Commit Description
    capture self-referencing component during HMR (#59644)
    replace metadata in place during HMR (#59644)
    skip component ID collision warning during SSR (#59625)

    migrations

    Commit Description
    avoid applying the same replacements twice when cleaning up unused imports (#59656)

    platform-browser

    Commit Description
    clear renderer cache during HMR when using async animations (#59644)
    Open source →
    Additional notes

    compiler

    Commit Type Description
    ecfb74d287 fix handle :host-context with comma-separated child selector (#59276)

    compiler-cli

    Commit Type Description
    53160e504d fix extract parenthesized dependencies during HMR (#59644)
    39690969af fix handle conditional expressions when extracting dependencies (#59637)
    78af7a5059 fix handle new expressions when extracting dependencies (#59637)

    core

    Commit Type Description
    408af24ff3 fix capture self-referencing component during HMR (#59644)
    d7575c201c fix replace metadata in place during HMR (#59644)
    26f6d4c485 fix skip component ID collision warning during SSR (#59625)

    migrations

    Commit Type Description
    a62c84bc18 fix avoid applying the same replacements twice when cleaning up unused imports (#59656)

    platform-browser

    Commit Type Description
    b2b3816cb1 fix clear renderer cache during HMR when using async animations (#59644)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.2"></a>

    Open source →
  48. 19.1.220 Jan 2025
    Release notes

    <a name="19.1.2"></a>

    19.1.2 (2025-01-20)

    compiler

    Commit Description
    update @ng/component URL to be relative (#59620)

    compiler-cli

    Commit Description
    disable tree shaking during HMR (#59595)

    core

    Commit Description
    animation sometimes renderer not being destroyed during HMR (#59574)
    change Resource to use explicit undefined in its typings (#59024)
    cleanup _ejsa when app is destroyed (#59492)
    cleanup stash listener when app is destroyed (#59598)
    handle shadow DOM encapsulated component with HMR (#59597)
    HMR not matching component that injects ViewContainerRef (#59596)
    treat exceptions in equal as part of computation (#55818)
    Open source →
    Additional notes

    compiler

    Commit Type Description
    8dcd889987 fix update @ng/component URL to be relative (#59620)

    compiler-cli

    Commit Type Description
    95a05bb202 fix disable tree shaking during HMR (#59595)

    core

    Commit Type Description
    a4eb74c79c fix animation sometimes renderer not being destroyed during HMR (#59574)
    906413aba3 fix change Resource to use explicit undefined in its typings (#59024)
    4eb541837c fix cleanup _ejsa when app is destroyed (#59492)
    5497102769 fix cleanup stash listener when app is destroyed (#59598)
    266a8f2f2e fix handle shadow DOM encapsulated component with HMR (#59597)
    6f7716268a fix HMR not matching component that injects ViewContainerRef (#59596)
    d12a186d53 fix treat exceptions in equal as part of computation (#55818)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.1"></a>

    Open source →
  49. 19.1.116 Jan 2025
    Release notes

    <a name="19.1.1"></a>

    19.1.1 (2025-01-16)

    core

    Commit Description
    run HMR replacement in the zone (#59562)

    platform-browser

    Commit Description
    roll back HMR fix (#59557)
    Open source →
    Additional notes

    core

    Commit Type Description
    357795cb96 fix run HMR replacement in the zone (#59562)

    platform-browser

    Commit Type Description
    eb0b1851f4 fix roll back HMR fix (#59557)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.1.0"></a>

    Open source →
  50. 19.1.015 Jan 2025
    Release notes

    <a name="19.1.0"></a>

    19.1.0 (2025-01-15)

    common

    Commit Description
    expose component instance in NgComponentOutlet (#58698)

    compiler

    Commit Description
    allow $any in two-way bindings (#59362)
    use chunk origin in template HMR request URL (#59459)

    compiler-cli

    Commit Description
    check event side of two-way bindings (#59002)

    core

    Commit Description
    add event listener options to renderer (#59092)
    add utility for resolving defer block information to ng global (#59184)
    extend the set of profiler events (#59183)
    set kind field on template and effect nodes (#58865)
    support TypeScript 5.7 (#58609)
    Defer afterRender until after first CD (#58250)
    Don't run effects in check no changes pass (#58250)

    migrations

    Commit Description
    add schematic to clean up unused imports (#59353)
    resolve text replacement issue (#59452)

    platform-browser

    Commit Description
    avoid circular DI error in async renderer (#59256)

    router

    Commit Description
    complete router events on dispose (#59327)
    Open source →
    Additional notes

    common

    Commit Type Description
    e4c50b3bea feat expose component instance in NgComponentOutlet (#58698)

    compiler

    Commit Type Description
    ceadd28ea1 fix allow $any in two-way bindings (#59362)
    aed49ddaaa fix use chunk origin in template HMR request URL (#59459)

    compiler-cli

    Commit Type Description
    c5c20e9d86 fix check event side of two-way bindings (#59002)

    core

    Commit Type Description
    d010e11b73 feat add event listener options to renderer (#59092)
    57f3550219 feat add utility for resolving defer block information to ng global (#59184)
    22f191f763 feat extend the set of profiler events (#59183)
    e894a5daea feat set kind field on template and effect nodes (#58865)
    bd1f1294ae feat support TypeScript 5.7 (#58609)
    9870b643bf fix Defer afterRender until after first CD (#58250)
    a5fc962094 fix Don't run effects in check no changes pass (#58250)

    migrations

    Commit Type Description
    d298d25426 feat add schematic to clean up unused imports (#59353)
    14fb8ce4c0 fix resolve text replacement issue (#59452)

    platform-browser

    Commit Type Description
    8c5db3cfb7 fix avoid circular DI error in async renderer (#59256)

    router

    Commit Type Description
    52a6710f54 fix complete router events on dispose (#59327)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.0.7"></a>

    Open source →
  51. 19.1.0-rc.08 Jan 2025pre-release
    Release notes

    <a name="19.1.0-rc.0"></a>

    19.1.0-rc.0 (2025-01-08)

    compiler

    Commit Description
    allow $any in two-way bindings (#59362)

    compiler-cli

    Commit Description
    account for more expression types when determining HMR dependencies (#59323)
    preserve defer block dependencies during HMR when class metadata is disabled (#59313)

    core

    Commit Description
    Defer afterRender until after first CD (#58250)
    Don't run effects in check no changes pass (#58250)
    Ensure that a destroyed effect never run. (#59415)

    migrations

    Commit Description
    add schematic to clean up unused imports (#59353)

    platform-browser

    Commit Description
    avoid circular DI error in async renderer (#59256)
    styles not replaced during HMR when using animations renderer (#59393)

    router

    Commit Description
    avoid component ID collisions with user code (#59300)
    complete router events on dispose (#59327)
    Open source →
  52. 19.1.0-next.418 Dec 2024pre-release
    Release notes

    <a name="19.1.0-next.4"></a>

    19.1.0-next.4 (2024-12-18)

    core

    Commit Description
    add utility for resolving defer block information to ng global (#59184)
    extend the set of profiler events (#59183)
    avoid triggering on timer and on idle on the server (#59177)
    Fix nested timer serialization (#59173)

    platform-server

    Commit Description
    Warn user when transfer state happens more than once (#58935)
    Open source →
  53. 19.1.0-next.312 Dec 2024pre-release
    Release notes

    <a name="19.1.0-next.3"></a>

    19.1.0-next.3 (2024-12-12)

    compiler-cli

    Commit Description
    check event side of two-way bindings (#59002)
    consider pre-release versions when detecting feature support (#59061)
    error in unused standalone imports diagnostic (#59064)

    core

    Commit Description
    add event listener options to renderer (#59092)
    Fix a bug where snapshotted functions are being run twice if they return a nullish/falsey value. (#59073)

    platform-browser

    Commit Description
    collect external component styles from server rendering (#59031)
    Open source →
  54. 19.1.0-next.24 Dec 2024pre-release
    Release notes

    <a name="19.1.0-next.2"></a>

    19.1.0-next.2 (2024-12-04)

    Open source →
  55. 19.1.0-next.14 Dec 2024pre-release
    Release notes

    <a name="19.1.0-next.1"></a>

    19.1.0-next.1 (2024-12-04)

    compiler-cli

    Commit Description
    account for multiple generated namespace imports in HMR (#58924)

    core

    Commit Description
    set kind field on template and effect nodes (#58865)
    Explicitly manage TracingSnapshot lifecycle and dispose of it once it's been used. (#58929)

    migrations

    Commit Description
    class content being deleted in some edge cases (#58959)
    correctly strip away parameters surrounded by comments in inject migration (#58959)
    don't migrate classes with parameters that can't be injected (#58959)
    inject migration aggressively removing imports (#58959)
    inject migration dropping code if everything except super is removed (#58959)
    preserve type literals and tuples in inject migrations (#58959)

    platform-server

    Commit Description
    remove peer dependency on animations (#58997)
    Open source →
  56. 19.1.0-next.026 Nov 2024pre-release
    Release notes

    <a name="19.1.0-next.0"></a>

    19.1.0-next.0 (2024-11-26)

    common

    Commit Description
    expose component instance in NgComponentOutlet (#58698)

    core

    Commit Description
    support TypeScript 5.7 (#58609)
    Open source →
  57. 19.0.715 Jan 2025
    Release notes

    <a name="19.0.7"></a>

    19.0.7 (2025-01-15)

    compiler-cli

    Commit Description
    handle more node types when extracting dependencies (#59445)

    core

    Commit Description
    destroy renderer when replacing styles during HMR (#59514)

    migrations

    Commit Description
    incorrect stats when migrating queries with best effort mode (#59463)
    Open source →
    Additional notes

    compiler-cli

    Commit Type Description
    2b4b7c3ebf fix handle more node types when extracting dependencies (#59445)

    core

    Commit Type Description
    f893d07232 fix destroy renderer when replacing styles during HMR (#59514)

    migrations

    Commit Type Description
    eb2fcd1896 fix incorrect stats when migrating queries with best effort mode (#59463)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.0.6"></a>

    Open source →
  58. 19.0.68 Jan 2025
    Release notes

    <a name="19.0.6"></a>

    19.0.6 (2025-01-08)

    compiler-cli

    Commit Description
    account for more expression types when determining HMR dependencies (#59323)
    preserve defer block dependencies during HMR when class metadata is disabled (#59313)

    core

    Commit Description
    Ensure that a destroyed effect never run. (#59415)

    platform-browser

    Commit Description
    avoid circular DI error in async renderer (#59271)
    styles not replaced during HMR when using animations renderer (#59393)

    router

    Commit Description
    avoid component ID collisions with user code (#59300)
    Open source →
    Additional notes

    compiler-cli

    Commit Type Description
    06a55e9817 fix account for more expression types when determining HMR dependencies (#59323)
    17fb20f85d fix preserve defer block dependencies during HMR when class metadata is disabled (#59313)

    core

    Commit Type Description
    07afce81b8 fix Ensure that a destroyed effect never run. (#59415)

    platform-browser

    Commit Type Description
    dbb8980d03 fix avoid circular DI error in async renderer (#59271)
    6d00efde95 fix styles not replaced during HMR when using animations renderer (#59393)

    router

    Commit Type Description
    144bccb687 fix avoid component ID collisions with user code (#59300)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.0.5"></a>

    Open source →
  59. 19.0.518 Dec 2024
    Release notes

    <a name="19.0.5"></a>

    19.0.5 (2024-12-18)

    core

    Commit Description
    avoid triggering on timer and on idle on the server (#59177)
    Fix nested timer serialization (#59173)

    platform-server

    Commit Description
    Warn user when transfer state happens more than once (#58935)
    Open source →
    Additional notes

    core

    Commit Type Description
    3793218e77 fix avoid triggering on timer and on idle on the server (#59177)
    cfc96ed82c fix Fix nested timer serialization (#59173)

    platform-server

    Commit Type Description
    9085a8fbd8 fix Warn user when transfer state happens more than once (#58935)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.0.4"></a>

    Open source →
  60. 19.0.412 Dec 2024
    Release notes

    <a name="19.0.4"></a>

    19.0.4 (2024-12-12)

    compiler-cli

    Commit Description
    consider pre-release versions when detecting feature support (#59061)
    error in unused standalone imports diagnostic (#59064)

    core

    Commit Description
    Fix a bug where snapshotted functions are being run twice if they return a nullish/falsey value. (#59073)

    platform-browser

    Commit Description
    collect external component styles from server rendering (#59031)
    Open source →
    Additional notes

    compiler-cli

    Commit Type Description
    7e612171709 fix consider pre-release versions when detecting feature support (#59061)
    cd764a31152 fix error in unused standalone imports diagnostic (#59064)

    core

    Commit Type Description
    34ded10fa60 fix Fix a bug where snapshotted functions are being run twice if they return a nullish/falsey value. (#59073)

    platform-browser

    Commit Type Description
    ae0802d63c5 fix collect external component styles from server rendering (#59031)

    <!-- CHANGELOG SPLIT MARKER -->

    <a name="19.0.3"></a>

    Open source →