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

fix(deps): update angular monorepo to v16 (major) #116

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular/animations 14.3.0 -> 16.0.4 age adoption passing confidence
@angular/common 14.3.0 -> 16.0.4 age adoption passing confidence
@angular/compiler 14.3.0 -> 16.0.4 age adoption passing confidence
@angular/compiler-cli (source) 14.3.0 -> 16.0.4 age adoption passing confidence
@angular/core 14.3.0 -> 16.0.4 age adoption passing confidence
@angular/forms 14.3.0 -> 16.0.4 age adoption passing confidence
@angular/language-service 14.3.0 -> 16.0.4 age adoption passing confidence
@angular/platform-browser 14.3.0 -> 16.0.4 age adoption passing confidence
@angular/platform-browser-dynamic 14.3.0 -> 16.0.4 age adoption passing confidence

Release Notes

angular/angular

v16.0.4

Compare Source

animations
Commit Type Description
df65c4fc8f fix Trigger leave animation when ViewContainerRef is injected (#​48705)
common
Commit Type Description
7e1bc513de fix untrack subscription and unsubscription in async pipe (#​50522)
core
Commit Type Description
9970b29ace fix update ApplicationRef.isStable to account for rendering pending tasks (#​50425)

v16.0.3

Compare Source

core
Commit Type Description
c11041e372 fix adds missing symbols for animation standalone bundling test (#​50434)
98e8fdf40e fix fix Self flag inside embedded views with custom injectors (#​50270)
199ff4fe7f fix host directives incorrectly validating aliased bindings (#​50364)
http
Commit Type Description
080bbd2137 fix create macrotask during request handling instead of load start (#​50406)

v16.0.2

Compare Source

core
Commit Type Description
c1016d4e57 fix add additional component metadata to component ID generation (#​50340)
cc41758b59 fix allow onDestroy unregistration while destroying (#​50237)
7d679bdb59 fix allow passing value of any type to isSignal function (#​50035)

v16.0.1

Compare Source

core
Commit Type Description
52c74d3b4a fix add additional component metadata to component ID generation (#​50203)
048b6b1e0d fix bootstrapApplication call not rejected when error is thrown in importProvidersFrom module (#​50120)
d68796782f fix handle hydration of root components with injected ViewContainerRef (#​50136)
f751ce6445 fix handle projection of hydrated containters into components that skip hydration (#​50199)
346ab73dd9 fix only try to retrieve transferred state on the browser (#​50144)

v16.0.0

Compare Source

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: `
    <ng-container
      *ngTemplateOutlet="
        myTemplateRef;
        context: { $implicit: 'test', xxx: 'xxx' }
      "></ng-container>
  `,
})
export class PersonComponent {
  myTemplateRef!: TemplateRef<MyContext>;
}

However, it does not compile now because the 'xxx' property does not exist in 'MyContext', resulting in the error: 'Type '{ $implicit: string; xxx: string; }' is not assignable to type 'MyContext'.'

The solution is either:

  • add the 'xxx' property to 'MyContext' with the correct type or
  • add '$any(...)' inside the template to make the error disappear. However, adding '$any(...)' does not correct the error but only preserves the previous behavior of the code.
  • Deprecated XhrFactory export from @angular/common/http has been removed. Use XhrFactory from @angular/common instead.
compiler
    • TypeScript 4.8 is no longer supported.
core
  • QueryList.filter now supports type guard functions, which will result in type narrowing. Previously if you used type guard functions, it resulted in no changes to the return type. Now the type would be narrowed, which might require updates to the application code that relied on the old behavior.

  • zone.js versions 0.11.x and 0.12.x are not longer supported.

    • entryComponents has been deleted from the @NgModule and @Component public APIs. Any usages can be removed since they weren't doing anyting.
    • ANALYZE_FOR_ENTRY_COMPONENTS injection token has been deleted. Any references can be removed.
  • ComponentRef.setInput will only set the input on the
    component if it is different from the previous value (based on Object.is
    equality). If code relies on the input always being set, it should be
    updated to copy objects or wrap primitives in order to ensure the input
    value differs from the previous call to setInput.

  • RendererType2.styles no longer accepts a nested arrays.

  • The APP_ID token value is no longer randomly generated. If you are bootstrapping multiple application on the same page you will need to set to provide the APP_ID yourself.

    bootstrapApplication(ComponentA, {
      providers: [
       { provide: APP_ID, useValue: 'app-a' },
       // ... other providers ...
      ]
    });
  • The ReflectiveInjector and related symbols were removed. Please update the code to avoid references to the ReflectiveInjector symbol. Use Injector.create as a replacement to create an injector instead.

  • Node.js v14 support has been removed

    Node.js v14 is planned to be End-of-Life on 2023-04-30. Angular will stop supporting Node.js v14 in Angular v16. Angular v16 will continue to officially support Node.js versions v16 and v18.

platform-browser
  • The deprecated BrowserTransferStateModule was removed, since it's no longer needed. The TransferState class can be injected without providing the module. The BrowserTransferStateModule was empty starting from v14 and you can just remove the reference to that module from your applications.
platform-server
  • Users that are using SSR with JIT mode will now need to add import to @&#8203;angular/compiler before bootstrapping the application.

    NOTE: this does not effect users using the Angular CLI.

  • renderApplication method no longer accepts a root component as first argument. Instead, provide a bootstrapping function that returns a Promise<ApplicationRef>.

    Before

    const output: string = await renderApplication(RootComponent, options);

    Now

    const bootstrap = () => bootstrapApplication(RootComponent, appConfig);
    const output: string = await renderApplication(bootstrap, options);
  • renderModuleFactory has been removed. Use renderModule instead.

router
  • The Scroll event's routerEvent property may also be
    a NavigationSkipped event. Previously, it was only a NavigationEnd
    event.
  • ComponentFactoryResolver has been removed from Router APIs.
    Component factories are not required to create an instance of a component
    dynamically. Passing a factory resolver via resolver argument is no longer needed
    and code can instead use ViewContainerRef.createComponent without the
    factory resolver.
  • 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).
  • Tests which mock ActivatedRoute instances may need to be adjusted
    because Router.createUrlTree now does the right thing in more
    scenarios. This means that tests with invalid/incomplete ActivatedRoute mocks
    may behave differently than before. Additionally, tests may now navigate
    to a real URL where before they would navigate to the root. Ensure that
    tests provide expected routes to match.
    There is rarely production impact, but it has been found that relative
    navigations when using an ActivatedRoute that does not appear in the
    current router state were effectively ignored in the past. By creating
    the correct URLs, this sometimes resulted in different navigation
    behavior in the application. Most often, this happens when attempting to
    create a navigation that only updates query params using an empty
    command array, for example router.navigate([], {relativeTo: route, queryParams: newQueryParams}). In this case, the relativeTo property
    should be removed.

Deprecations

core
  • makeStateKey, StateKey and TransferState exports have been moved from @angular/platform-browser to @angular/core. Please update the imports.
- import {makeStateKey, StateKey, TransferState} from '@&#8203;angular/platform-browser';
+ import {makeStateKey, StateKey, TransferState} from '@&#8203;angular/core';
  • EnvironmentInjector.runInContext is now deprecated, with
    runInInjectionContext functioning as a direct replacement:

    // Previous method version (deprecated):
    envInjector.runInContext(fn);
    // New standalone function:
    runInInjectionContext(envInjector, fn);
  • The @Directive/@Component moduleId property is now
    deprecated. It did not have any effect for multiple major versions and
    will be removed in v17.

platform-browser
  • BrowserModule.withServerTransition has been deprecated. APP_ID should be used instead to set the application ID.
    NB: Unless, you render multiple Angular applications on the same page, setting an application ID is not necessary.

    Before:

    imports: [
      BrowserModule.withServerTransition({ appId: 'serverApp' }),
      ...
    ]

    After:

    imports: [
      BrowserModule,
      { provide: APP_ID, useValue: 'serverApp' },
      ...
    ],
  • ApplicationConfig has moved, please import ApplicationConfig from @angular/core instead.

platform-server
  • PlatformConfig.baseUrl and PlatformConfig.useAbsoluteUrl platform-server config options are deprecated as these were not used.
Commit Type Description
48aa96ea13 refactor remove Angular Compatibility Compiler (ngcc) (#​49101)
2703fd6260 refactor remove deprecated EventManager method addGlobalEventListener (#​49645)
common
Commit Type Description
5dce2a5a3a feat Provide MockPlatformLocation by default in BrowserTestingModule (#​49137)
d47fef72cb fix strict type checking for ngtemplateoutlet (#​48374)
c41a21658c refactor remove deprecated XhrFactory export from http entrypoint (#​49251)
compiler
Commit Type Description
1a6ca68154 feat add support for compile-time required inputs (#​49304)
13dd614cd1 feat add support for compile-time required inputs (#​49453)
8f539c11f4 feat add support for compile-time required inputs (#​49468)
79cdfeb392 feat drop support for TypeScript 4.8 (#​49155)
1407a9aeaf feat support multiple configuration files in extends (#​49125)
9de1e9da8f fix incorrectly matching directives on attribute bindings (#​49713)
6623810e4d fix Produce diagnositc if directive used in host binding is not exported (#​49527)
compiler-cli
Commit Type Description
03d1d00ad9 feat Add an extended diagnostic for nSkipHydration (#​49512)
ed817e32fe fix Catch FatalDiagnosticError during template type checking (#​49527)
49fe974501 perf optimize NgModule emit for standalone components (#​49837)
core
Commit Type Description
89d291c367 feat add assertInInjectionContext (#​49529)
4e9531f777 feat add mergeApplicationConfig method (#​49253)
d7d6514add feat Add ability to configure NgZone in bootstrapApplication (#​49557)
bc5ddabdcb feat add Angular Signals to the public API (#​49150)
17e9862653 feat add API to provide CSP nonce for inline stylesheets (#​49444)
605c536420 feat add migration to remove moduleId references (#​49496)
99d874fe3b feat add support for TypeScript 5.0 (#​49126)
d1617c449d feat allow removal of previously registered DestroyRef callbacks (#​49493)
b2327f4df1 feat Allow typeguards on QueryList.filter (#​48042)
061f3d1086 feat Drop public factories property for IterableDiffers : Breaking change (#​49598)
fdf61974d1 feat drop support for zone.js versions <=0.12.0 (#​49331)
9c5fd50de4 feat effects can optionally return a cleanup function (#​49625)
c024574f46 feat expose makeStateKey, StateKey and TransferState (#​49563)
a5f1737d1c feat expose onDestroy on ApplicationRef (#​49677)
e883198460 feat implement takeUntilDestroyed in rxjs-interop (#​49154)
0814f20594 feat introduce runInInjectionContext and deprecate prior version (#​49396)
0f5c8003cc feat introduce concept of DestroyRef (#​49158)
9b65b84cb9 feat Mark components for check if they read a signal (#​49153)
8997bdc03b feat prototype implementation of @​angular/core/rxjs-interop (#​49154)
585e34bf6c feat remove entryComponents (#​49484)
aad05ebeb4 feat support usage of non-experimental decorators with TypeScript 5.0 (#​49492)
6d7be42da7 fix add newline to hydration mismatch error (#​49965)
f8e25864e8 fix allow async functions in effects (#​49783)
84216dabfc fix catch errors from source signals outside of .next (#​49769)
be23b7ce65 fix ComponentRef.setInput only sets input when not equal to previous (#​49607)
316c91b1a4 fix deprecate moduleId @Component property (#​49496)
fd9dcd36cd fix Ensure effects can be created when Zone is not defined (#​49890)
9180f98f0e fix ensure takeUntilDestroyed unregisters onDestroy listener on unsubscribe (#​49901)
4721c48a24 fix error if document body is null (#​49818)
2650f1afc1 fix execute input setters in non-reactive context (#​49906)
f8b95b9da6 fix execute query setters in non-reactive context (#​49906)
ef91a2e0fe fix execute template creation in non-reactive context (#​49883)
87549af73c fix Fix capitalization of toObservableOptions (#​49832)
0e5f9ba6f4 fix generate consistent component IDs (#​48253)
fedc75624c fix include inner ViewContainerRef anchor nodes into ViewRef.rootNodes output (#​49867)
df1dfc4c17 fix make sure that lifecycle hooks are not tracked (#​49701)
c34d7e0822 fix onDestroy should be registered only on valid DestroyRef (#​49804)
2f2ef14f9e fix resolve InitialRenderPendingTasks promise on complete (#​49784)
c7d8d3ee37 fix toObservable should allow writes to signals in the effect (#​49769)
b4531f1d82 fix typing of TestBed Common token. (#​49997)
a4e749ffca fix When using setInput, mark view dirty in same was as markForCheck (#​49711)
9b9c818f99 perf change RendererType2.styles to accept a only a flat array (#​49072)
82d6fbb109 refactor generate a static application ID (#​49422)
3b863ddc1e refactor Remove ReflectiveInjector symbol (#​48103)
f594725951 refactor remove Node.js v14 support (#​49255)
forms
Commit Type Description
07a1aa3004 feat Improve typings form (async)Validators (#​48679)
http
Commit Type Description
aff1512950 feat allow HttpClient to cache requests (#​49509)
15c91a53ae fix delay accessing pendingTasks.whenAllTasksComplete (#​49784)
9f0c6d1ed1 fix ensure new cache state is returned on each request (#​49749)
45a6ac09fd fix force macro task creation during HTTP request (#​49546)
2a580b6f0b fix HTTP cache was being disabled prematurely (#​49826)
2eb9b8b402 fix wait for all XHR requests to finish before stabilizing application (#​49776)
migrations
Commit Type Description
5e5dac278d feat Migration to remove Router guard and resolver interfaces (#​49337)
platform-browser
Commit Type Description
761e02d912 feat add a public API function to enable non-destructive hydration (#​49666)
630af63fae feat deprecate withServerTransition call (#​49422)
81e7d15ef6 feat enable HTTP request caching when using provideClientHydration (#​49699)
74c925c19c fix export deprecated TransferState as type (#​50015)
2312eb53ef fix KeyEventsPlugin should keep the same behavior (#​49330)
c934a8e72b fix only add ng-app-id to style on server side (#​49465)
9165ff2517 fix reuse server generated component styles (#​48253)
e8e36811d5 fix set nonce attribute in a platform compatible way (#​49624)
3aa85a8087 refactor move ApplicationConfig to core (#​49253)
9bd9a11f4e refactor remove deprecated BrowserTransferStateModule symbol (#​49718)
platform-server
Commit Type Description
b5278cc115 feat renderApplication now accepts a bootstrapping method (#​49248)
056d68002f feat add provideServerSupport function to provide server capabilities to an application (#​49380)
7870fb07fe feat rename provideServerSupport to provideServerRendering (#​49678)
a08a8ff108 fix bundle @​angular/domino in via esbuild (#​49229)
5ea624f313 fix remove dependency on @angular/platform-browser-dynamic (#​50064)
e99460865e refactor deprecate useAbsoluteUrl and baseUrl (#​49546)
41f27ad086 refactor remove renderApplication overload that accepts a component (#​49463)
17abe6dc96 refactor remove deprecated renderModuleFactory (#​49247)
router
Commit Type Description
ea32c3289a feat Expose information about the last successful Navigation (#​49235)
455c728525 feat helper functions to convert class guards to functional (#​48709)
f982a3f965 feat Opt-in for binding Router information to component inputs (#​49633)
1f055b90b6 fix Ensure anchor scrolling happens on ignored same URL navigations (#​48025)
6193a3d406 fix fix = not parsed in router segment name (#​47332)
c0b1b7becf fix Remove deprecated ComponentFactoryResolver from APIs (#​49239)
1e32709e0e fix remove RouterEvent from Event union type (#​46061)
3c7e637374 fix Route matching should only happen once when navigating (#​49163)
1600687fe5 fix Route matching should only happen once when navigating (#​49163)
31f210bf2c fix Router.createUrlTree should work with any ActivatedRoute (#​48508)
service-worker
Commit Type Description
5e7fc259ea feat add function to provide service worker (#​48247)

v15.2.9

Compare Source

common
Commit Type Description
9107e931ca fix fix incorrectly reported distortion for padded images (#​49889)
compiler-cli
Commit Type Description
7c58885797 fix catch fatal diagnostic when getting diagnostics for components (#​50046)

v15.2.8

Compare Source

core
Commit Type Description
2fff8fadbe fix handle invalid classes in class array bindings (#​49924)
http
Commit Type Description
05a0225deb fix prevent headers from throwing an error when initializing numerical values (#​49379)
router
Commit Type Description
09a42d988e fix canceledNavigationResolution: 'computed' with redirects to the current URL (#​49793)

v15.2.7

Compare Source

compiler
Commit Type Description
b0c1a90f55 fix Produce diagnositc if directive used in host binding is not exported (#​49792)
compiler-cli
Commit Type Description
a40529af2e fix Catch FatalDiagnosticError during template type checking (#​49792)
core
Commit Type Description
702ec90110 fix When using setInput, mark view dirty in same way as markForCheck (#​49747)

Special Thanks

Alan Agius, Andrew Kushnir, Andrew Scott, Kristiyan Kostadinov, Matthieu Riegler and Nikola Kološnjaji

v15.2.6

Compare Source

core
Commit Type Description
d9efa1b0d7 feat change the URL sanitization to only block javascript: URLs (#​49659)
router
Commit Type Description
cad7274ef9 fix create correct URL relative to path with empty child (#​49691)
9b61379096 fix Ensure initial navigation clears current navigation when blocking (#​49572)

Special Thanks

Andrew Scott, Guillaume Weghsteen, John Manners, Johnny Gérard, Matthieu Riegler, Robin Richtsfeld, Sandra Limacher, Sarthak Thakkar, Vinit Neogi and vikram menon

v15.2.5

Compare Source

common
Commit Type Description
ca5acadb78 fix invalid ImageKit transformation (#​49201)
compiler
Commit Type Description
077f6b4674 fix do not unquote CSS values (#​49460)
c3cff35869 fix handle trailing comma in object literal (#​49535)
core
Commit Type Description
d201fc2dec fix set style property value to empty string instead of an invalid value (#​49460)
router
Commit Type Description
978d37f324 fix Ensure Router preloading works with lazy component and static children (#​49571)
a844435514 fix fix #​49457 outlet activating with old info (#​49459)

Special Thanks

Alan Agius, Andrew Scott, Asaf Malin, Jan Cabadaj, Kristiyan Kostadinov, Matthieu Riegler, Paul Gschwendtner, Sid and Tano Abeleyra

v15.2.4

Compare Source

core
Commit Type Description
bae6b5ceb1 fix Allow TestBed.configureTestingModule to work with recursive cycle of standalone components. (#​49473)
087f4412af fix more accurate matching of classes during content projection (#​48888)

Special Thanks

Aditya Srinivasan, Alex Rickabaugh, Andrew Scott, Kristiyan Kostadinov, Masaoki Kobayashi, Matthieu Riegler, Paul Gschwendtner, Peter Götz, Thomas Pischke, Virginia Dooley and avmaxim

v15.2.3

Compare Source

Special Thanks

Alan Agius, Esteban Gehring, Matthieu Riegler and Virginia Dooley

v15.2.2

Compare Source

migrations
Commit Type Description
6207d6f1f0 fix add protractor support if protractor imports are detected (#​49274)

Special Thanks

Alan Agius, Andrew Kushnir, Andrew Scott, Kristiyan Kostadinov, Matthieu Riegler, Paul Gschwendtner, Sai Kartheek Bommisetty and Vinit Neogi

v15.2.1

Compare Source

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

v15.2.0

Compare Source

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 Type Description
926c35f4ac docs Deprecate class and InjectionToken and resolvers (#​47924)
common
Commit Type Description
54b24eb40f feat Add loaderParams attribute to NgOptimizedImage (#​48907)
compiler-cli
Commit Type Description
0cf11167f1 fix incorrectly detecting forward refs when symbol already exists in file (#​48988)
core
Commit Type Description
a154db8a81 feat add ng generate schematic to convert declarations to standalone (#​48790)
345e737daa feat add ng generate schematic to convert to standalone bootstrapping APIs (#​48848)
e7318fc758 feat add ng generate schematic to remove unnecessary modules (#​48832)
language-service
Commit Type Description
4ae384fd61 feat Allow auto-imports of a pipe via quick fix when its selector is used, both directly and via reexports. (#​48354)
141333411e feat Introduce a new NgModuleIndex, and use it to suggest re-exports. (#​48354)
d0145033bd fix generate forwardRef for same file imports (#​48898)
migrations
Commit Type Description
2796230e95 fix add enum in mode option in standalone schema (#​48851)
816e76a578 fix automatically prune root module after bootstrap step (#​49030)
bdbf21d04b fix avoid generating imports with forward slashes (#​48993)
32cf4e5cb9 fix avoid internal modules when generating imports (#​48958)
[521ccfbe6c](https://togithub.com/angular/angula

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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 78a4726 to e703ac3 Compare November 11, 2021 01:18
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from e703ac3 to f59a20f Compare November 17, 2021 17:52
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from f59a20f to dee7896 Compare December 1, 2021 21:22
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 2c12583 to 2c5c4dc Compare December 15, 2021 20:46
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 2c5c4dc to 86e2855 Compare March 7, 2022 12:49
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 86e2855 to a375b22 Compare March 26, 2022 15:40
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from a375b22 to c21a015 Compare April 25, 2022 01:37
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from c21a015 to 35730dc Compare May 16, 2022 00:28
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 35730dc to c8de6e2 Compare June 18, 2022 15:20
@renovate renovate bot changed the title fix(deps): update angular monorepo to v13 (major) fix(deps): update angular monorepo to v14 (major) Jun 18, 2022
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from c8de6e2 to da5ae0a Compare June 23, 2022 23:49
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from da5ae0a to 7b403bf Compare September 25, 2022 16:15
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 7b403bf to c56df40 Compare November 20, 2022 17:47
@renovate renovate bot changed the title fix(deps): update angular monorepo to v14 (major) fix(deps): update angular monorepo to v15 (major) Nov 20, 2022
@69pmb 69pmb force-pushed the master branch 2 times, most recently from 80af8da to 90833bd Compare December 27, 2022 13:25
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from c56df40 to 2b16075 Compare January 4, 2023 13:28
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 2b16075 to 3e7d2f7 Compare January 11, 2023 17:40
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 3f24544 to a57c549 Compare January 25, 2023 17:13
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 124e5e1 to 94358d3 Compare February 8, 2023 21:32
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 94358d3 to d313166 Compare February 15, 2023 17:54
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 5966fcc to d16a430 Compare March 1, 2023 20:27
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from d16a430 to bdd40ba Compare March 9, 2023 03:55
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from bdd40ba to 90d4256 Compare March 24, 2023 18:17
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 90d4256 to c2c0a6a Compare March 29, 2023 23:15
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from c2c0a6a to b46dd73 Compare April 17, 2023 13:53
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from b46dd73 to c74a64d Compare May 28, 2023 10:03
@renovate renovate bot changed the title fix(deps): update angular monorepo to v15 (major) fix(deps): update angular monorepo to v16 (major) May 28, 2023
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch 2 times, most recently from fda4d85 to 4769782 Compare June 7, 2023 20:50
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 4769782 to a15ee99 Compare June 8, 2023 14:44
@69pmb 69pmb closed this Jun 8, 2023
@69pmb 69pmb deleted the renovate/major-angular-monorepo branch June 8, 2023 19:49
@renovate
Copy link
Contributor Author

renovate bot commented Jun 8, 2023

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 16.x releases. But if you manually upgrade to 16.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

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

1 participant