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

chore(e2e/a18): update angular monorepo (patch) #8782

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 17, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular/animations (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
@angular/common (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
@angular/compiler (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
@angular/compiler-cli (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
@angular/core (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
@angular/forms (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
@angular/platform-browser (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
@angular/platform-browser-dynamic (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
@angular/router (source) 18.0.0-next.4 -> 18.0.0 age adoption passing confidence
zone.js (source, changelog) 0.14.4 -> 0.14.6 age adoption passing confidence

Release Notes

angular/angular (@​angular/animations)

v18.0.0

Compare Source

Breaking Changes

animations
  • Deprecated matchesElement method has been removed from AnimationDriver as it is unused.
common
  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.
compiler
  • Angular only supports writable expressions inside of two-way bindings.
compiler-cli
    • Angular no longer supports TypeScript versions older than 5.4.
core
  • OnPush views at the root of the application need to
    be marked dirty for their host bindings to refresh. Previously, the host
    bindings were refreshed for all root views without respecting the
    OnPush change detection strategy.

  • OnPush views at the root of the application need to
    be marked dirty for their host bindings to refresh. Previously, the host
    bindings were refreshed for all root views without respecting the
    OnPush change detection strategy.

  • The ComponentFixture autoDetect feature will no
    longer refresh the component's host view when the component is OnPush
    and not marked dirty. This exposes existing issues in components which
    claim to be OnPush but do not correctly call markForCheck when they
    need to be refreshed. If this change causes test failures, the easiest
    fix is to change the component to ChangeDetectionStrategy.Default.

  • ComponentFixture.whenStable now matches the
    ApplicationRef.isStable observable. Prior to this change, stability
    of the fixture did not include everything that was considered in
    ApplicationRef. whenStable of the fixture will now include unfinished
    router navigations and unfinished HttpClient requests. This will cause
    tests that await the whenStable promise to time out when there are
    incomplete requests. To fix this, remove the whenStable,
    instead wait for another condition, or ensure HttpTestingController
    mocks responses for all requests. Try adding HttpTestingController.verify()
    before your await fixture.whenStable to identify the open requests.
    Also, make sure your tests wait for the stability promise. We found many
    examples of tests that did not, meaning the expectations did not execute
    within the test body.

    In addition, ComponentFixture.isStable would synchronously switch to
    true in some scenarios but will now always be asynchronous.

  • Angular will ensure change detection runs, even when the state update originates from
    outside the zone, tests may observe additional rounds of change
    detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests.
    This should usually be seen as more correct and the test should be updated,
    but in cases where it is too much effort to debug, the test can revert to the old behavior by adding
    provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly})
    to the TestBed providers.

    Similarly, applications which may want to update state outside the zone
    and not trigger change detection can add
    provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly})
    to the providers in bootstrapApplication or add
    schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the
    BootstrapOptions of bootstrapModule.

  • When Angular runs change detection, it will continue to
    refresh any views attached to ApplicationRef that are still marked for
    check after one round completes. In rare cases, this can result in infinite
    loops when certain patterns continue to mark views for check using
    ChangeDetectorRef.detectChanges. This will be surfaced as a runtime
    error with the NG0103 code.

  • async has been removed, use waitForAsync instead.

  • The ComponentFixture.autoDetect feature now executes
    change detection for the fixture within ApplicationRef.tick. This more
    closely matches the behavior of how a component would refresh in
    production. The order of component refresh in tests may be slightly
    affected as a result, especially when dealing with additional components
    attached to the application, such as dialogs. Tests sensitive to this
    type of change (such as screenshot tests) may need to be updated.
    Concretely, this change means that the component will refresh before
    additional views attached to ApplicationRef (i.e. dialog components).
    Prior to this change, the fixture component would refresh after other
    views attached to the application.

  • The exact timing of change detection execution when
    using event or run coalescing with NgZone is now the first of either
    setTimeout or requestAnimationFrame. Code which relies on this
    timing (usually by accident) will need to be adjusted. If a callback
    needs to execute after change detection, we recommend afterNextRender
    instead of something like setTimeout.

  • Newly created and views marked for check and reattached
    during change detection are now guaranteed to be refreshed in that same
    change detection cycle. Previously, if they were attached at a location
    in the view tree that was already checked, they would either throw
    ExpressionChangedAfterItHasBeenCheckedError or not be refreshed until
    some future round of change detection. In rare circumstances, this
    correction can cause issues. We identified one instance that relied on
    the previous behavior by reading a value on initialization which was
    queued to be updated in a microtask instead of being available in the
    current change detection round. The component only read this value during
    initialization and did not read it again after the microtask updated it.

  • Testability methods increasePendingRequestCount,
    decreasePendingRequestCount and getPendingRequestCount have been
    removed. This information is tracked with zones.

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.
platform-browser-dynamic
  • No longer used RESOURCE_CACHE_PROVIDER APIs have been removed.
platform-server
  • deprecated platformDynamicServer has been removed. Add an import @​angular/compiler and replace the usage with platformServer

  • deprecated ServerTransferStateModule has been removed. TransferState can be use without providing this module.

  • deprecated useAbsoluteUrl and baseUrl been removed from PlatformConfig. Provide and absolute url instead.

  • Legacy handling or Node.js URL parsing has been removed from ServerPlatformLocation.

    The main differences are;

    • pathname is always suffixed with a /.
    • port is empty when http: protocol and port in url is 80
    • port is empty when https: protocol and port in url is 443
router
  • Guards can now return RedirectCommand for redirects
    in addition to UrlTree. Code which expects only boolean or UrlTree
    values in Route types will need to be adjusted.
  • This change allows Route.redirectTo to be a function
    in addition to the previous string. Code which expects redirectTo to
    only be a string on Route objects will need to be adjusted.
  • When a a guard returns a UrlTree as a redirect, the
    redirecting navigation will now use replaceUrl if the initial
    navigation was also using the replaceUrl option. If this is not
    desirable, the redirect can configure new NavigationBehaviorOptions by
    returning a RedirectCommand with the desired options instead of UrlTree.
  • Providers available to the routed components always
    come from the injector heirarchy of the routes and never inherit from
    the RouterOutlet. This means that providers available only to the
    component that defines the RouterOutlet will no longer be available to
    route components in any circumstances. This was already the case
    whenever routes defined providers, either through lazy loading an
    NgModule or through explicit providers on the route config.
  • Providers available to the routed components always
    come from the injector heirarchy of the routes and never inherit from
    the RouterOutlet. This means that providers available only to the
    component that defines the RouterOutlet will no longer be available to
    route components in any circumstances. This was already the case
    whenever routes defined providers, either through lazy loading an
    NgModule or through explicit providers on the route config.

Deprecations

common
  • getCurrencySymbol, getLocaleCurrencyCode, getLocaleCurrencyName, getLocaleCurrencySymbol, getLocaleDateFormat, getLocaleDateTimeFormat, getLocaleDayNames, getLocaleDayPeriods, getLocaleDirection, getLocaleEraNames, getLocaleExtraDayPeriodRules, getLocaleExtraDayPeriods, getLocaleFirstDayOfWeek, getLocaleId, getLocaleMonthNames, getLocaleNumberFormat, getLocaleNumberSymbol, getLocalePluralCase, getLocaleTimeFormat, getLocaleWeekEndRange, getNumberOfCurrencyDigits
core
  • @Component.interpolation is deprecated. Use Angular's
    delimiters instead.
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)
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#​55302)
compiler
Commit Type Description
91b007e58f fix add math elements to schema (#​55631)
33d0102304 fix allow comments between connected blocks (#​55966)
7fc7f3f05f fix capture all control flow branches for content projection in if blocks (#​54921)
a369f43fbd fix capture switch block cases for content projection (#​54921)
eb625d3783 fix declare for loop aliases in addition to new name (#​54942)
f824911510 fix For FatalDiagnosticError, hide the message field without affecting the emit (#​55160)
a040fb720a fix maintain multiline CSS selectors during CSS scoping (#​55509)
39624c6b12 fix output input flags as a literal (#​55215)
eba92cfa55 fix prevent usage of reserved control flow symbol in custom interpolation context. (#​55809)
7d5bc1c628 fix remove container index from conditional instruction (#​55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#​55342)
e1650e3b13 fix throw error if item name and context variables conflict (#​55045)
compiler-cli
Commit Type Description
5bd188a394 feat add partial compilation support for deferred blocks (#​54908)
b02b31a915 feat drop support for TypeScript older than 5.4 (#​54961)
78188e877a fix add diagnostic if initializer API is used outside of an initializer (#​54993)
69a83993b3 fix do not throw when retrieving TCB symbol for signal input with restricted access (#​55774)
4f4f41016e fix dom property binding check in signal extended diagnostic (#​54324)
7a16d7e969 fix don't type check the bodies of control flow nodes in basic mode (#​55360)
8d93597a82 fix fix type narrowing of @if with aliases (#​55835)
9b424d7224 fix preserve original reference to non-deferrable dependency (#​54759)
694ba79cbf fix report cases where initializer APIs are used in a non-directive class (#​54993)
6219341d26 fix report errors when initializer APIs are used on private fields (#​54981)
c04ffb1fa6 fix use switch statements to narrow Angular switch blocks (#​55168)
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)
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#​55252)
bce5e2344f feat Add build target for jsaction contract binary. (#​55319)
666d646575 feat Add event delegation library to queue up events and replay them when the application is ready (#​55121)
5f06ca8f55 feat add HOST_TAG_NAME token (#​54751)
a600a39d0c feat add support for fallback content in ng-content (#​54854)
146306a141 feat add support for i18n hydration (#​54823)
f09c5a7bc4 feat Add zoneless change detection provider as experimental (#​55329)
d28614b90e feat Modify EventType from an enum to an object. (#​55323)
ac863ded48 feat provide ExperimentalPendingTasks API (#​55487)
1ee9f32621 feat Synchronize changes from internal JSAction codebase. (#​55182)
d888da4606 fix ApplicationRef.tick should respect OnPush for host bindings (#​53718)
64f870c12b fix ApplicationRef.tick should respect OnPush for host bindings (#​53718) (#​53718)
8cad4e8cbe fix ComponentFixture autoDetect respects OnPush flag of host view (#​54824)
658cf8c384 fix ComponentFixture stability should match ApplicationRef (#​54949)
2fc11eae9e fix account for re-projected ng-content elements with fallback content (#​54854)
0cbd73c6e9 fix add warning when using zoneless but zone.js is still loaded (#​55769)
d5edfde6ee fix afterRender hooks registered outside change detection can mark views dirty (#​55623)
de7447d15e fix Angular should not ignore changes that happen outside the zone (#​55102)
ba8e465974 fix Change Detection will continue to refresh views while marked for check (#​54734)
5a10f405d3 fix complete the removal of deprecation async function (#​55491)
24bc0ed4f2 fix ComponentFixture autodetect should detect changes within ApplicationRef.tick (#​54733)
1c0ec56c46 fix correctly project single-root content inside control flow (#​54921)
840c375255 fix do not save point-in-time setTimeout and rAF references (#​55124)
10c5cdb49c fix ensure change detection runs in a reasonable timeframe with zone coalescing (#​54578)
ad045efd4b fix Ensure views marked for check are refreshed during change detection (#​54735)
69085ea26e fix error about provideExperimentalCheckNoChangesForDebug uses wrong name (#​55824)
0147e0b85a fix exhaustive checkNoChanges should only do a single pass (#​55839)
e02bcf89cf fix Fix clearing of pending task in zoneless cleanup implementation (#​55074)
0cec9e4f9a fix Fix null dereference error addEvent (#​55353)
44c0ed83a6 fix hide implementation details of ExperimentalPendingTasks (#​55516)
314112de99 fix Prevent markForCheck during change detection from causing infinite loops (#​54900)
a5fa279b6e fix prevent i18n hydration from cleaning projected nodes (#​54823)
6534c035c0 fix Remove deprecated Testability methods (#​53768)
a5c57c7484 fix resolve error for multiple component instances that use fallback content (#​55478)
f44a5e4604 fix support content projection and VCRs in i18n (#​54823)
0510930a25 fix TestBed should not override NgZone from initTestEnvironment (#​55226)
e9a0c86766 fix TestBed should not override NgZone from initTestEnvironment (#​55226)
700c0520bb fix Update ApplicationRef.tick loop to only throw in dev mode (#​54848)
a99cb7ce5b fix zoneless scheduler should check if Zone is defined before accessing it (#​55118)
1fd63e9cff refactor deprecate @Component.interpolation (#​55778)
forms
Commit Type Description
1c736dc3b2 feat Unified Control State Change Events (#​54579)
61007dced0 fix Add event for forms submitted & reset (#​55667)
2e27ca9ddf fix Allow canceled async validators to emit. (#​55134)
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)
d9b339fdbc fix resolve withRequestsMadeViaParent behavior with withFetch (#​55652)
ef665a40a5 refactor Deprecate HttpClientModule & related modules (#​54020)
language-service
Commit Type Description
6d1b82df32 fix allow external projects to use provided compiler options (#​55035)
a48afe0d94 fix avoid generating TS syntactic diagnostics for templates (#​55091)
bd236cc150 fix implement getDefinitionAtPosition for Angular templates (#​55269)
4166dfc1b6 fix prevent underlying TS Service from handling template files (#​55003)
b7f2fd4739 fix use type-only import in plugin factory (#​55996)
migrations
Commit Type Description
f914f6a362 feat Migration schematics for HttpClientModule (#​54020)
8459ee46cb fix handle more cases in HttpClientModule migration (#​55640)
c4b2f18709 fix migrate HttpClientTestingModule in test modules (#​55803)
bb4a4016a9 fix preserve existing properties in HttpClientModule migration (#​55777)
f93e5180be fix resolve multiple structural issues with HttpClient migration (#​55557)
platform-browser
Commit Type Description
45ae7a6b60 feat add withI18nSupport() in developer preview (#​55130)
23f914f101 fix Use the right namespace for mathML. (#​55622)
cba336d4f1 refactor remove deprecated transfer state APIs (#​55474)
platform-browser-dynamic
Commit Type Description
eb20c1a8b1 refactor unused RESOURCE_CACHE_PROVIDER API has been removed (#​54875)
platform-server
Commit Type Description
5674c644ab fix add nonce attribute to event record script (#​55495)
e71e869112 fix remove event dispatch script from HTML when hydration is disabled (#​55681)
07ac017731 refactor remove deprecated platformDynamicServer API (#​54874)
e8b588d8b7 refactor remove deprecated ServerTransferStateModule API (#​54874)
3b1967ca64 refactor remove deprecated useAbsoluteUrl and baseUrl from PlatformConfig (#​54874)
2357d3566c refactor remove legacy URL handling logic (#​54874)
router
Commit Type Description
4a42961393 feat withNavigationErrorHandler can convert errors to redirects (#​55370)
8735af08b9 feat Add ability to return UrlTree with NavigationBehaviorOptions from guards (#​45023)
87f3f27f90 feat Allow resolvers to return RedirectCommand (#​54556)
2b802587f2 feat Allow Route.redirectTo to be a function which returns a string or UrlTree (#​52606)
60f1d681e0 fix preserve replaceUrl when returning a urlTree from CanActivate (#​54042)
3839cfbb18 fix Routed components never inherit RouterOutlet EnvironmentInjector (#​54265)
da906fdafc fix Routed components never inherit RouterOutlet EnvironmentInjector (#​54265)
service-worker
Commit Type Description
3bc63eaaf3 fix avoid running CDs on controllerchange (#​54222)
e598634c10 fix remove controllerchange listener when app is destroyed (#​55365)

v18.0.0-rc.3

Compare Source

18.0.0-rc.3 (2024-05-21)
compiler
Commit Description
fix - 33d0102304 allow comments between connected blocks (#​55966)
fix - eba92cfa55 prevent usage of reserved control flow symbol in custom interpolation context. (#​55809)
compiler-cli
Commit Description
fix - 69a83993b3 do not throw when retrieving TCB symbol for signal input with restricted access (#​55774)
fix - 4f4f41016e dom property binding check in signal extended diagnostic (#​54324)
fix - 8d93597a82 fix type narrowing of @if with aliases (#​55835)
core
Commit Description
fix - 0cbd73c6e9 add warning when using zoneless but zone.js is still loaded (#​55769)
fix - 69085ea26e error about provideExperimentalCheckNoChangesForDebug uses wrong name (#​55824)
fix - 0147e0b85a exhaustive checkNoChanges should only do a single pass (#​55839)
service-worker
Commit Description
fix - e598634c10 remove controllerchange listener when app is destroyed (#​55365)

v18.0.0-rc.2

Compare Source

18.0.0-rc.2 (2024-05-15)
core
Commit Description
refactor - 1fd63e9cff deprecate @Component.interpolation (#​55778)
forms
Commit Description
fix - 61007dced0 Add event for forms submitted & reset (#​55667)
fix - 2e27ca9ddf Allow canceled async validators to emit. (#​55134)
migrations
Commit Description
fix - c4b2f18709 migrate HttpClientTestingModule in test modules (#​55803)
fix - bb4a4016a9 preserve existing properties in HttpClientModule migration (#​55777)
Deprecations
core
  • @Component.interpolation is deprecated. Use Angular's
    delimiters instead.

v18.0.0-rc.1

Compare Source

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)

v18.0.0-rc.0

Compare Source

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)

v18.0.0-next.6

Compare Source

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 | T


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor Author

renovate bot commented Apr 17, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: e2e/a18/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: jest-preset-angular@14.0.3
npm ERR! Found: @angular-devkit/build-angular@18.0.0-next.2
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR!   dev @angular-devkit/build-angular@"18.0.0-next.2" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular-devkit/build-angular@">=15.0.0 <18.0.0" from jest-preset-angular@14.0.3
npm ERR! node_modules/jest-preset-angular
npm ERR!   dev jest-preset-angular@"14.0.3" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: @angular-devkit/build-angular@17.3.7
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR!   peer @angular-devkit/build-angular@">=15.0.0 <18.0.0" from jest-preset-angular@14.0.3
npm ERR!   node_modules/jest-preset-angular
npm ERR!     dev jest-preset-angular@"14.0.3" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! 
npm ERR! For a full report see:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2024-05-09T02_50_07_516Z-eresolve-report.txt

npm ERR! A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-05-09T02_50_07_516Z-debug-0.log

Copy link

codecov bot commented Apr 17, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (0dd01fe) to head (cd081c5).

Additional details and impacted files
@@            Coverage Diff            @@
##            master     #8782   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files          227       227           
  Lines         4935      4935           
  Branches      1147      1147           
=========================================
  Hits          4935      4935           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-monorepo branch from 69ca391 to fd0d085 Compare April 26, 2024 06:02
@renovate renovate bot changed the title chore(e2e/a18): update angular monorepo to v18.0.0-next.5 (patch) chore(e2e/a18): update angular monorepo to v18.0.0-next.6 (patch) Apr 26, 2024
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-monorepo branch from fd0d085 to 029b8a7 Compare April 30, 2024 21:49
@renovate renovate bot changed the title chore(e2e/a18): update angular monorepo to v18.0.0-next.6 (patch) chore(e2e/a18): update angular monorepo (patch) Apr 30, 2024
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-monorepo branch from 029b8a7 to d49052c Compare May 1, 2024 20:26
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-monorepo branch from d49052c to f6d7c9d Compare May 9, 2024 02:50
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-monorepo branch from f6d7c9d to 79132e1 Compare May 16, 2024 03:00
Copy link
Contributor Author

renovate bot commented May 16, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: e2e/a18/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: jest-preset-angular@14.0.3
npm ERR! Found: @angular-devkit/build-angular@18.0.0-next.2
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR!   dev @angular-devkit/build-angular@"18.0.0-next.2" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular-devkit/build-angular@">=15.0.0 <18.0.0" from jest-preset-angular@14.0.3
npm ERR! node_modules/jest-preset-angular
npm ERR!   dev jest-preset-angular@"14.0.3" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: @angular-devkit/build-angular@17.3.8
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR!   peer @angular-devkit/build-angular@">=15.0.0 <18.0.0" from jest-preset-angular@14.0.3
npm ERR!   node_modules/jest-preset-angular
npm ERR!     dev jest-preset-angular@"14.0.3" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! 
npm ERR! For a full report see:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2024-05-22T20_31_57_425Z-eresolve-report.txt

npm ERR! A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-05-22T20_31_57_425Z-debug-0.log

@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-monorepo branch 2 times, most recently from e668ca3 to e67859c Compare May 21, 2024 22:39
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-monorepo branch from e67859c to cd081c5 Compare May 22, 2024 20:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants