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

build(deps-dev): bump @angular/language-service from 15.2.8 to 16.0.0 #2117

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 4, 2023

Bumps @angular/language-service from 15.2.8 to 16.0.0.

Release notes

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

v16.0.0

16.0.0 (2023-05-03)

Commit Description
refactor - 48aa96ea13 remove Angular Compatibility Compiler (ngcc) (#49101)
refactor - 2703fd6260 remove deprecated EventManager method addGlobalEventListener (#49645)

common

Commit Description
feat - 5dce2a5a3a Provide MockPlatformLocation by default in BrowserTestingModule (#49137)
fix - d47fef72cb strict type checking for ngtemplateoutlet (#48374)
refactor - c41a21658c remove deprecated XhrFactory export from http entrypoint (#49251)

compiler

Commit Description
feat - 1a6ca68154 add support for compile-time required inputs (#49304)
feat - 13dd614cd1 add support for compile-time required inputs (#49453)
feat - 8f539c11f4 add support for compile-time required inputs (#49468)
feat - 79cdfeb392 drop support for TypeScript 4.8 (#49155)
feat - 1407a9aeaf support multiple configuration files in extends (#49125)
fix - 9de1e9da8f incorrectly matching directives on attribute bindings (#49713)
fix - 6623810e4d Produce diagnositc if directive used in host binding is not exported (#49527)

compiler-cli

Commit Description
feat - 03d1d00ad9 Add an extended diagnostic for nSkipHydration (#49512)
fix - ed817e32fe Catch FatalDiagnosticError during template type checking (#49527)
perf - 49fe974501 optimize NgModule emit for standalone components (#49837)

core

Commit Description
feat - 89d291c367 add assertInInjectionContext (#49529)
feat - 4e9531f777 add mergeApplicationConfig method (#49253)
feat - d7d6514add Add ability to configure NgZone in bootstrapApplication (#49557)
feat - bc5ddabdcb add Angular Signals to the public API (#49150)
feat - 17e9862653 add API to provide CSP nonce for inline stylesheets (#49444)
feat - 605c536420 add migration to remove moduleId references (#49496)
feat - 99d874fe3b add support for TypeScript 5.0 (#49126)
feat - d1617c449d allow removal of previously registered DestroyRef callbacks (#49493)
feat - b2327f4df1 Allow typeguards on QueryList.filter (#48042)
feat - 061f3d1086 Drop public factories property for IterableDiffers : Breaking change (#49598)
feat - fdf61974d1 drop support for zone.js versions <=0.12.0 (#49331)
feat - 9c5fd50de4 effects can optionally return a cleanup function (#49625)
feat - c024574f46 expose makeStateKey, StateKey and TransferState (#49563)
feat - a5f1737d1c expose onDestroy on ApplicationRef (#49677)
feat - e883198460 implement takeUntilDestroyed in rxjs-interop (#49154)
feat - 0814f20594 introduce runInInjectionContext and deprecate prior version (#49396)
feat - 0f5c8003cc introduce concept of DestroyRef (#49158)

... (truncated)

Changelog

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

16.0.0 (2023-05-03)

Blog post "Angular v16 is now available".

Breaking Changes

  • Angular Compatibility Compiler (ngcc) has been removed and as a result Angular View Engine libraries will no longer work
  • Deprecated EventManager method addGlobalEventListener has been removed as it is not used by Ivy.

bazel

  • Several changes to the Angular Package Format (APF)
    • Removal of FESM2015
    • Replacing ES2020 with ES2022
    • Replacing FESM2020 with FESM2022
  • Several changes to the Angular Package Format (APF)
    • Removal of FESM2015
    • Replacing ES2020 with ES2022
    • Replacing FESM2020 with FESM2022

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.
  • If the 'ngTemplateOutletContext' is different from the context, it will result in a compile-time error.

Before the change, the following template was compiling:

interface MyContext {
  $implicit: string;
}
@​Component({
standalone: true,
imports: [NgTemplateOutlet],
selector: 'person',
template: &lt;ng-container *ngTemplateOutlet=&quot; myTemplateRef; context: { $implicit: 'test', xxx: 'xxx' } &quot;&gt;&lt;/ng-container&gt;,
})
export class PersonComponent {
myTemplateRef!: TemplateRef<MyContext>;
</tr></table>

... (truncated)

Commits
  • 6da1054 fix(compiler-cli): catch fatal diagnostic when getting diagnostics for compon...
  • 898eecb build: update minimum supported Node version from 16.13.0 -> 16.14.0 (#49771)
  • be97c87 refactor(compiler): required inputs prerequisite refactors (#49333)
  • f594725 refactor(core): remove Node.js v14 support (#49255)
  • 99d874f feat(core): add support for TypeScript 5.0 (#49126)
  • 83a6e20 refactor(compiler): drop obsolete NgFactory and NgSummary config options (#48...
  • See full diff 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:/angular/angular/tree/HEAD/packages/language-service) from 15.2.8 to 16.0.0.
- [Release notes](https:/angular/angular/releases)
- [Changelog](https:/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https:/angular/angular/commits/16.0.0/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] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 4, 2023
@codecov-commenter
Copy link

Codecov Report

Merging #2117 (74e0a89) into master (0c9e143) will not change coverage.
The diff coverage is n/a.

📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

@@           Coverage Diff           @@
##           master    #2117   +/-   ##
=======================================
  Coverage   41.94%   41.94%           
=======================================
  Files          52       52           
  Lines         801      801           
  Branches       59       59           
=======================================
  Hits          336      336           
  Misses        461      461           
  Partials        4        4           

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@github-actions github-actions bot merged commit f25c7e7 into master May 4, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/angular/language-service-16.0.0 branch May 4, 2023 03:02
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.

1 participant