Skip to content
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

Bump @angular/language-service from 14.2.12 to 15.2.1 #822

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 2, 2023

Bumps @angular/language-service from 14.2.12 to 15.2.1.

Release notes

Sourced from @​angular/language-service's releases.

v15.2.1

15.2.1 (2023-03-01)

common

Commit Description
fix - f0e926074d make Location.normalize() return the correct path when the base path contains characters that interfere with regex syntax. (#49181)

compiler-cli

Commit Description
fix - 04d8b6c61a do not persist component analysis if template/styles are missing (#49184)

core

Commit Description
fix - d60ea6ab5a update zone.js peerDependencies ranges (#49244)

migrations

Commit Description
fix - 44d095a61c avoid migrating the same class multiple times in standalone migration (#49245)
fix - 92b0bda9e4 delete barrel exports in standalone migration (#49176)

router

Commit Description
fix - 3062442728 add error message when using loadComponent with a NgModule (#49164)

Special Thanks

Alan Agius, Andrew Kushnir, Aristeidis Bampakos, Craig Spence, Doug Parker, Iván Navarro, Joey Perrott, Kristiyan Kostadinov, Matthieu Riegler, Michael Ziluck, Paul Gschwendtner, Stephanie Tuerk, Vincent and Virginia Dooley

v15.2.0

15.2.0 (2023-02-22)

Deprecations

  • Class and InjectionToken guards and resolvers are deprecated. Instead, write guards as plain JavaScript functions and inject dependencies with inject from @angular/core.

Commit Description
docs - 926c35f4ac Deprecate class and InjectionToken and resolvers (#47924)

common

Commit Description
feat - 54b24eb40f Add loaderParams attribute to NgOptimizedImage (#48907)

compiler-cli

Commit Description
fix - 0cf11167f1 incorrectly detecting forward refs when symbol already exists in file (#48988)

core

Commit Description

... (truncated)

Changelog

Sourced from @​angular/language-service's changelog.

15.2.1 (2023-03-01)

common

Commit Type Description
f0e926074d fix make Location.normalize() return the correct path when the base path contains characters that interfere with regex syntax. (#49181)

compiler-cli

Commit Type Description
04d8b6c61a fix do not persist component analysis if template/styles are missing (#49184)

core

Commit Type Description
d60ea6ab5a fix update zone.js peerDependencies ranges (#49244)

migrations

Commit Type Description
44d095a61c fix avoid migrating the same class multiple times in standalone migration (#49245)
92b0bda9e4 fix delete barrel exports in standalone migration (#49176)

router

Commit Type Description
3062442728 fix add error message when using loadComponent with a NgModule (#49164)

Special Thanks

Alan Agius, Andrew Kushnir, Aristeidis Bampakos, Craig Spence, Doug Parker, Iván Navarro, Joey Perrott, Kristiyan Kostadinov, Matthieu Riegler, Michael Ziluck, Paul Gschwendtner, Stephanie Tuerk, Vincent and Virginia Dooley

16.0.0-next.0 (2023-02-22)

Breaking Changes

compiler

  • Angular Compatibility Compiler (ngcc) has been removed. As a result, Angular View Engine libraries can no longer be used in v16+. Such libraries were not officially supported, but this is a hard break in compatibility.

common

  • MockPlatformLocation is now provided by default in tests. Existing tests may have behaviors which rely on BrowserPlatformLocation instead. For example, direct access to the window.history in either the test or the component rather than going through the Angular APIs (Location.getState()). The quickest fix is to update the providers in the test suite to override the provider again TestBed.configureTestingModule({providers: [{provide: PlatformLocation, useClass: BrowserPlatformLocation}]}). The ideal fix would be to update the code to instead be compatible with MockPlatformLocation instead.

core

  • RendererType2.styles no longer accepts a nested arrays.

router

  • The Scroll event's routerEvent property may also be a NavigationSkipped event. Previously, it was only a NavigationEnd event.
  • The RouterEvent type is no longer present in the Event union type representing all router event types. If you have code using something like filter((e: Event): e is RouterEvent => e instanceof RouterEvent), you'll need to update it to filter((e: Event|RouterEvent): e is RouterEvent => e instanceof RouterEvent).

... (truncated)

Commits
  • d014503 fix(language-service): generate forwardRef for same file imports (#48898)
  • 6beff5e refactor(compiler): rework and expose APIs to be used in schematics (#48730)
  • 13f10de test: update code fixes spec to work with esm-cjs interop lint (#48731)
  • 4ae384f feat(language-service): Allow auto-imports of a pipe via quick fix when its s...
  • 2a4c5b4 refactor(language-service): Improve the quick fix auto-import tests. (#48354)
  • 489243b fix(language-service): expose package.json for vscode extension resolution ...
  • 9fc950d fix(language-service): ship /api entry-point (#48670)
  • db8b3b7 fix(language-service): update packages/language-service/build.sh script to wo...
  • acf9826 refactor: update language-service package and tests to work with ESM (#48521)
  • 0138d75 refactor(language-service): make selector nullable (#48193)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 14.2.12 to 15.2.1.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/15.2.1/packages/language-service)

---
updated-dependencies:
- dependency-name: "@angular/language-service"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants