Socket
Socket
Sign inDemoInstall

@angular/language-service

Package Overview
Dependencies
0
Maintainers
2
Versions
765
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
2345
77Next

17.3.10

Diff

google-wombot
published 18.0.0 •

Changelog

Source

18.0.0-rc.1 (2024-05-08)

compiler

| Commit | Type | Description | | -- | -- | -- | | 91b007e58f | fix | add math elements to schema (#55631) | | a040fb720a | fix | maintain multiline CSS selectors during CSS scoping (#55509) |

core

| Commit | Type | Description | | -- | -- | -- | | d5edfde6ee | fix | afterRender hooks registered outside change detection can mark views dirty (#55623) | | 36130b2e72 | fix | don't schedule timer triggers on the server (#55605) | | 0510930a25 | fix | TestBed should not override NgZone from initTestEnvironment (#55226) |

http

| Commit | Type | Description | | -- | -- | -- | | d9b339fdbc | fix | resolve withRequestsMadeViaParent behavior with withFetch (#55652) |

migrations

| Commit | Type | Description | | -- | -- | -- | | 8459ee46cb | fix | handle more cases in HttpClientModule migration (#55640) |

platform-browser

| Commit | Type | Description | | -- | -- | -- | | 23f914f101 | fix | Use the right namespace for mathML. (#55622) |

platform-server

| Commit | Type | Description | | -- | -- | -- | | e71e869112 | fix | remove event dispatch script from HTML when hydration is disabled (#55681) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="17.3.8"></a>

google-wombot
published 18.0.0-rc.3 •

google-wombot
published 18.0.0-rc.2 •

google-wombot
published 17.3.9 •

Changelog

Source

17.3.9 (2024-05-15)

<!-- CHANGELOG SPLIT MARKER -->

<a name="17.3.8"></a>

google-wombot
published 18.0.0-rc.1 •

google-wombot
published 17.3.8 •

Changelog

Source

17.3.8 (2024-05-08)

compiler

| Commit | Type | Description | | -- | -- | -- | | c21b459ba6 | fix | add math elements to schema (#55631) (#55645) |

core

| Commit | Type | Description | | -- | -- | -- | | 3818436ebc | fix | don't schedule timer triggers on the server (#55605) |

<!-- CHANGELOG SPLIT MARKER -->

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

google-wombot
published 18.0.0-rc.0 •

Changelog

Source

18.0.0-rc.0 (2024-05-01)

core

| Commit | Type | Description | | -- | -- | -- | | 44c0ed83a6 | fix | hide implementation details of ExperimentalPendingTasks (#55516) | | a177abef1b | fix | render hooks should not specifically run outside the Angular zone (#55399) | | a5c57c7484 | fix | resolve error for multiple component instances that use fallback content (#55478) |

migrations

| Commit | Type | Description | | -- | -- | -- | | f93e5180be | fix | resolve multiple structural issues with HttpClient migration (#55557) |

router

| Commit | Type | Description | | -- | -- | -- | | aefee87074 | fix | Scroller should scroll as soon as change detection completes (#55105) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="17.3.7"></a>

google-wombot
published 17.3.7 •

Changelog

Source

17.3.7 (2024-05-01)

compiler-cli

| Commit | Type | Description | | -- | -- | -- | | 51ac883167 | fix | don't type check the bodies of control flow nodes in basic mode (#55558) |

core

| Commit | Type | Description | | -- | -- | -- | | af0eb846a5 | fix | render hooks should not specifically run outside the Angular zone (#55399) |

router

| Commit | Type | Description | | -- | -- | -- | | 3eea50da64 | fix | Scroller should scroll as soon as change detection completes (#55105) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.0.0-next.6"></a>

google-wombot
published 18.0.0-next.6 •

Changelog

Source

18.0.0-next.6 (2024-04-25)

Breaking Changes

animations

  • Deprecated matchesElement method has been removed from AnimationDriver as it is unused.

core

  • async has been removed, use waitForAsync instead.

http

  • By default we now prevent caching of HTTP requests that require authorization . To opt-out from this behaviour use the includeRequestsWithAuthHeaders option in withHttpTransferCache.

    Example:

    withHttpTransferCache({
      includeRequestsWithAuthHeaders: true,
    })
    

platform-browser

  • Deprecated StateKey, TransferState and makeStateKey have been removed from @angular/platform-browser, use the same APIs from @angular/core.

Deprecations

common

  • getCurrencySymbol, getLocaleCurrencyCode, getLocaleCurrencyName, getLocaleCurrencySymbol, getLocaleDateFormat, getLocaleDateTimeFormat, getLocaleDayNames, getLocaleDayPeriods, getLocaleDirection, getLocaleEraNames, getLocaleExtraDayPeriodRules, getLocaleExtraDayPeriods, getLocaleFirstDayOfWeek, getLocaleId, getLocaleMonthNames, getLocaleNumberFormat, getLocaleNumberSymbol, getLocalePluralCase, getLocaleTimeFormat, getLocaleWeekEndRange, getNumberOfCurrencyDigits

http

  • HttpClientModule, HttpClientXsrfModule and HttpClientJsonpModule

    As mentionned, those modules can be replaced by provider function only.

animations

| Commit | Type | Description | | -- | -- | -- | | bcce85af72 | refactor | remove deprecated matchesElement from AnimationDriver (#55479) |

common

| Commit | Type | Description | | -- | -- | -- | | d34c033902 | refactor | Deprecate Local Data API functions (#54483) |

compiler-cli

| Commit | Type | Description | | -- | -- | -- | | 7a16d7e969 | fix | don't type check the bodies of control flow nodes in basic mode (#55360) |

core

| Commit | Type | Description | | -- | -- | -- | | a730f09ae9 | feat | Add a public API to establish events to be replayed and an attribute to mark an element with an event handler. (#55356) | | 5f06ca8f55 | feat | add HOST_TAG_NAME token (#54751) | | ac863ded48 | feat | provide ExperimentalPendingTasks API (#55487) | | 5a10f405d3 | fix | complete the removal of deprecation async function (#55491) | | c175bca364 | fix | DeferBlockFixture.render should not wait for stability (#55271) | | 9894278e71 | fix | make ActivatedRoute inject correct instance inside @defer blocks (#55374) | | 5948193e13 | fix | skip defer timers on the server (#55480) |

http

| Commit | Type | Description | | -- | -- | -- | | 6f88d80758 | feat | allow caching requests with different origins between server and client (#55274) | | 8eacb6e4b9 | feat | exclude caching for authenticated HTTP requests (#55034) | | ef665a40a5 | refactor | Deprecate HttpClientModule & related modules (#54020) |

migrations

| Commit | Type | Description | | -- | -- | -- | | f914f6a362 | feat | Migration schematics for HttpClientModule (#54020) |

platform-browser

| Commit | Type | Description | | -- | -- | -- | | cba336d4f1 | refactor | remove deprecated transfer state APIs (#55474) |

platform-server

| Commit | Type | Description | | -- | -- | -- | | 5674c644ab | fix | add nonce attribute to event record script (#55495) |

router

| Commit | Type | Description | | -- | -- | -- | | 4a42961393 | feat | withNavigationErrorHandler can convert errors to redirects (#55370) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="17.3.6"></a>

2345
77Next
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc