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(deps): update angular monorepo to v13 (major) #613

Merged
merged 1 commit into from
Nov 8, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 4, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular/common ^12.0.0 -> ^12.0.0 || ^13.0.0 age adoption passing confidence
@angular/core ^12.0.0 -> ^12.0.0 || ^13.0.0 age adoption passing confidence

Release Notes

angular/angular

v13.0.0

Compare Source

Blog post "Angular v13 is now available".

Breaking Changes

common
  • The behavior of the SpyLocation used by the RouterTestingModule has changed
    to match the behavior of browsers. It no longer emits a 'popstate' event
    when Location.go is called. In addition, simulateHashChange now
    triggers both a hashchange and a popstate event.
    Tests which use location.go and expect the changes to be picked up by
    the Router should likely change to simulateHashChange instead.
    Each test is different in what it attempts to assert so there is no
    single change that works for all tests. Each test using the SpyLocation to
    simulate browser URL changes should be evaluated on a case-by-case basis.
core
  • TypeScript versions older than 4.4.2 are no longer supported.

  • NodeJS versions older than v12.20.0 are no longer
    supported due to the Angular packages using the NodeJS package exports
    feature with subpath patterns.

  • The WrappedValue class can no longer be imported from @angular/core,
    which may result in compile errors or failures at runtime if outdated
    libraries are used that are still using WrappedValue. The usage of
    WrappedValue should be removed as no replacement is available.

forms
  • A new type called FormControlStatus has been introduced, which is a union of all possible status strings for form controls. AbstractControl.status has been narrowed from string to FormControlStatus, and statusChanges has been narrowed from Observable<any> to Observable<FormControlStatus>. Most applications should consume the new types seamlessly. Any breakage caused by this change is likely due to one of the following two problems: (1) the app is comparing AbstractControl.status against a string which is not a valid status; or, (2) the app is using statusChanges events as if they were something other than strings.
router
  • The default url serializer would previously drop
    everything after and including a question mark in query parameters. That
    is, for a navigation to /path?q=hello?&other=123, the query
    params would be parsed to just {q: 'hello'}. This is
    incorrect because the URI spec allows for question mark characers in
    query data. This change will now correctly parse the params for the
    above example to be {v: 'hello?', other: '123'}.

  • Previously null and undefined inputs for routerLink were
    equivalent to empty string and there was no way to disable the link's
    navigation.
    In addition, the href is changed from a property HostBinding() to an
    attribute binding (HostBinding('attr.href')). The effect of this
    change is that DebugElement.properties['href'] will now return the
    href value returned by the native element which will be the full URL
    rather than the internal value of the RouterLink href property.

  • The router will no longer replace the browser URL when a new navigation
    cancels an ongoing navigation. This often causes URL flicker and was
    only in place to support some AngularJS hybrid applications. Hybrid
    applications which rely on the navigationId being present on initial
    navigations that were handled by the Angular router should instead
    subscribe to NavigationCancel events and perform the
    location.replaceState themselves to add navigationId to the Router
    state.
    In addition, tests which assert urlChanges on the SpyLocation may
    need to be adjusted to account for the replaceState which is no longer
    triggered.

  • It is no longer possible to use Route.loadChildren using a string
    value. The following supporting classes were removed from
    @angular/core:

  • NgModuleFactoryLoader

  • SystemJsNgModuleFactoryLoader

The @angular/router package no longer exports these symbols:

  • SpyNgModuleFactoryLoader
  • DeprecatedLoadChildren

The signature of the setupTestingRouter function from
@angular/core/testing has been changed to drop its NgModuleFactoryLoader
parameter, as an argument for that parameter can no longer be created.

service-worker
  • The return type of SwUpdate#activateUpdate and SwUpdate#checkForUpdate changed to Promise<boolean>.

Although unlikely, it is possible that this change will cause TypeScript type-checking to fail in
some cases. If necessary, update your types to account for the new
return type.

Deprecations

core
  • Angular no longer requires component factories to dynamically create components. The factory-based signature of the ViewContainerRef.createComponent function is deprecated in favor of a different signature that allows passing component classes instead.

  • The getModuleFactory function is deprecated in favor of the getNgModuleById one. With Ivy it's possible to work with NgModule classes directly, without retrieving corresponding factories, so the getNgModuleById should be used instead.

  • Ivy made it possible to avoid the need to resolve Component and NgModule factories. Framework APIs allow to use Component and NgModule Types directly. As a result, the PlatformRef.bootstrapModuleFactory and a factory-based signature of the ApplicationRef.bootstrap method are now obsolete and are now deprecated. The PlatformRef.bootstrapModuleFactory calls can be replaced with PlatformRef.bootstrapModule ones. The ApplicationRef.bootstrap method allows to provide Component Type, so this can be used a replacement for the factory-based calls.

  • In ViewEngine, JIT compilation required special providers (like Compiler, CompilerFactory, etc) to be injected in the app and corresponding methods to be invoked. With Ivy, JIT compilation takes place implicitly if the Component, NgModule, etc have not already been AOT compiled. Those special providers were made available in Ivy for backwards-compatibility with ViewEngine to make the transition to Ivy smoother. Since ViewEngine is deprecated and will soon be removed, those symbols are now deprecated as well:

  • ModuleWithComponentFactories

  • Compiler

  • CompilerFactory

  • JitCompilerFactory

  • NgModuleFactory

Important note: this deprecation doesn't affect JIT mode in Ivy (JIT remains available with Ivy).

  • In Ivy, AOT summary files are unused in TestBed. Passing AOT summary files in TestBed has no effect, so the aotSummaries usage in TestBed is deprecated and will be removed in a future version of Angular.
platform-server
  • The renderModuleFactory symbol in @angular/platform-server is no longer necessary as of Angular v13.

The renderModuleFactory calls can be replaced with renderModule.

service-worker
  • The SwUpdate#activated observable is deprecated.

The SwUpdate#activated observable only emits values as a direct response to calling
SwUpdate#activateUpdate() and was only useful for determining whether the call resulted in an
update or not. Now, the return value of SwUpdate#activateUpdate() can be used to determine the
outcome of the operation and therefore using SwUpdate#activated does not offer any benefit.

  • The SwUpdate#availalbe observable is deprecated.

The new SwUpdate#versionUpdates observable provides the same information and more. Therefore, it
is possible to rebuild the same behavior as SwUpdate#availalbe using the events emitted by
SwUpdate#versionUpdates and filtering for VersionReadyEvent events.
As a result, the SwUpdate#availalbe observable is now redundant.

Commit Type Description
747553dd68 docs deprecate ViewEngine-based renderModuleFactory (#​43757)
bazel
Commit Type Description
62d7005a52 feat add strict_templates and experimental_extended_template_diagnostics to ng_module() rule (#​43582)
d977701a43 feat allow for custom conditions to be set in ng_package targets (#​43764)
4886585875 feat create transition for enabling partial compilation (#​43431)
cd1b52483e feat expose esm2020 and es2020 conditions in APF package exports (#​43740)
49b82ae561 feat implement partial compilation APF v13 for ng_package rule (#​43431)
274cb38e0b feat switch prodmode output to ES2020 (#​43431)
73ac50c447 feat wire up partial compilation build setting in ng_module (#​43431)
e0a72857cc fix construct a manifest file even when warnings are emitted (#​43582)
dbe656d1e0 fix ngc-wrapped should not rely on linker for external workspaces (#​43690)
common
Commit Type Description
adf4481211 feat add injection token for default date pipe timezone (#​43611)
c6a93001eb fix synchronise location mock behavior with the navigators (#​41730)
compiler
Commit Type Description
14b492df26 fix do not error if $any is used inside a listener (#​43866)
compiler-cli
Commit Type Description
bed121c34f feat inline resources when generating class metadata calls (#​43178)
263feba5c2 fix handle nullable expressions correctly in the nullish coalescing extended template diagnostic (#​43572)
8f7fdc59af fix not evaluating new signature for __spreadArray (#​43618)
426a3ecae7 fix updates ngc to pass the build when only warnings are emitted (#​43673)
core
Commit Type Description
a3960846da feat add createNgModuleRef function to create NgModuleRef based on NgModule class (#​43580)
fe1f6421d2 feat add getNgModuleById function to retrieve loaded NgModules by id (#​43580)
81c7eb813c feat add migration to opt out existing apps from new test module teardown behavior (#​43353)
e57691c9c5 feat Add migration to update empty routerLinks in templates (#​43176)
7dccbdd27b feat add support for Types in ViewContainerRef.createComponent (#​43022)
c14085e434 feat drop support for TypeScript 4.2 and 4.3 (#​43642)
94ba59bc9d feat enable test module teardown by default (#​43353)
ea61ec2562 feat support TypeScript 4.4 (#​43281)
e0a0d05d45 feat update node version support range to support v16 (#​43740)
7396021e4b fix avoid duplicating comments in TestBed teardown migration (#​43776)
7fd0428aae fix don't rethrow errors if test teardown has been disabled (#​43635)
66fb311d20 fix incorrect signature for initTestEnvironment (#​43615)
8ae99821d6 fix support InjectFlags argument in NodeInjector.get() (#​41592)
8878183521 perf remove support for the deprecated WrappedValue (#​43507)
elements
Commit Type Description
a468213f34 fix remove ng-add schematic (#​43975)
f544a53f5f fix remove incorrect @angular/platform-browser peer dependency (#​43975)
forms
Commit Type Description
d9d8f950e9 feat allow disabling min/max validators dynamically (by setting the value to null) (#​42978)
e49fc96ed3 feat Make Form Statuses use stricter types. (#​42952)
language-service
Commit Type Description
b10d90bef6 feat Add method for retrieving the component template at the cursor location (#​43208)
d5f9890c92 feat auto-apply optional chaining on nullable symbol (#​42995)
69957f72e2 feat provide snippets for attribute (#​43590)
fc3b50e427 fix exclude the SafePropertyRead when applying the optional chaining (#​43321)
migrations
Commit Type Description
95a68c5dc3 fix account for CRLF characters in template migrations (#​44013)
77bd2538cb fix apply individual expression edits to preserve newline characters (#​43519)
d849350c7b fix Ensure routerLink migration doesn't update unrelated files (#​43519)
2efc18e675 fix migration failed finding tsconfig file (#​43343)
b6f2a55147 fix prevent migrations from updating external templates multiple times (#​44013)
router
Commit Type Description
4f3beffdbf feat emit activate/deactivate events when an outlet gets attached/detached (#​43333)
faf9f5a3bc feat new output that would notify when link is activated (#​43280)
3c6b653089 feat Option to correctly restore history on failed navigation (#​43289)
784671597e fix Allow question marks in query param values (#​31187)
796da641f0 fix Do not modify parts of URL excluded from with 'eager' updates (#​43421)
772e08d14e fix fix Router's public API for canceledNavigationResolution (#​43842)
ccb09b4558 fix null/undefined routerLink should disable navigation (#​43087)
9e039ca68b fix Only trigger router navigation on popstate events from Location subscription (#​43328)
c5d0bd4966 fix Prevent URL flicker when new navigations cancel ongoing ones (#​43496)
adc68b100b fix reuse route strategy fix (#​43791)
361273fad5 refactor remove support for loadChildren string syntax (#​43591)
service-worker
Commit Type Description
59225f5586 feat SwUpdate#activeUpdate and SwUpdate#checkForUpdate should have a meaningful outcome (#​43668)
0dc45446fe feat expose more version update events (#​43668)

Special Thanks

Ahmed Ayed, Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Bjarki, Charles Lyding, Dmitrij Kuba, Doug Parker, Dylan Hunn, George Kalpakas, Jessica Janiuk, Jochen Kraushaar, Joe Martin (Crowdstaffing), Joey Perrott, Jon Rimmer, JoostK, Kristiyan Kostadinov, Maximilian Köller, Paul Gschwendtner, Pei Wang, Pete Bacon Darwin, Tomasz Domański, Willy Schott, anandtiwary, dario-piotrowicz, iRealNirmal, ivanwonder, krzysztof-grzybek, mgechev and vthinkxie


Configuration

📅 Schedule: "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/Berlin.

🚦 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, click this checkbox.

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

@renovate renovate bot changed the title fix(deps): update angular monorepo to v13 (major) chore(deps): update angular monorepo to v13 (major) Nov 8, 2021
@renovate renovate bot force-pushed the renovate/major-angular-monorepo branch from 585f337 to 8a05e66 Compare November 8, 2021 11:17
@codecov
Copy link

codecov bot commented Nov 8, 2021

Codecov Report

Merging #613 (8a05e66) into development (7b55db3) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@             Coverage Diff              @@
##           development     #613   +/-   ##
============================================
  Coverage        96.77%   96.77%           
============================================
  Files               12       12           
  Lines              279      279           
  Branches            55       55           
============================================
  Hits               270      270           
  Partials             9        9           
Flag Coverage Δ
core 96.77% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.


Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 7b55db3...8a05e66. Read the comment docs.

@r-hannuschka r-hannuschka merged commit d33ac2a into development Nov 8, 2021
@renovate renovate bot deleted the renovate/major-angular-monorepo branch November 8, 2021 11:23
r-hannuschka added a commit that referenced this pull request Nov 8, 2021
* chore(deps): update dependency @ngx-file-upload/core to v4 (#488)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency eslint to v7.32.0 (#489)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.9 (#490)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency highlight.js to v11.2.0 (#491)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.0 (#495)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angularcli monorepo to v12.2.1 (#497)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.1 (#498)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.2.0 (#499)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency bootstrap-scss to v5.1.0 (#500)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency path-parse to 1.0.7 [security] (#501)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency tslib to v2.3.1 (#503)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.1 (#496)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.1 (#493)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.29.1 (#492)

Co-authored-by: Renovate Bot <[email protected]>

* bugfixing

* update deps

* update package.json

* update unit tests and version

* chore(deps): update dependency ts-node to v10.2.1 (#507)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.2 (#508)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.10 (#510)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angularcli monorepo to v12.2.2 (#509)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.2 (#511)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.11 (#512)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.3 (#518)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.1 (#517)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.3 (#515)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency jasmine-core to v3.9.0 (#513)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.29.3 (#514)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.3 (#519)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.12 (#520)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angularcli monorepo to v12.2.3 (#521)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency ngx-highlightjs to v5 (#522)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.30.0 (#527)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.14 (#528)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.4 (#529)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.4 (#530)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.4 (#532)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.4 (#531)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.9.0 (#533)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.31.0 (#534)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.5 (#536)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.15 (#535)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.5 (#537)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.5 (#539)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.5 (#538)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.4.1 (#540)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency ngx-file-drop to v11.2.0 (#541)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.16 (#546)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.9.1 (#545)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.6 (#544)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency bootstrap-scss to v5.1.1 (#542)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.31.1 (#543)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.6 (#548)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.6 (#547)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.6 (#549)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.17 (#550)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.7 (#558)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.2 (#557)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.18 (#556)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.5.0 (#554)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.7 (#553)

Co-authored-by: Renovate Bot <[email protected]>

* fix e2e tests

* chore(deps): update typescript-eslint monorepo to v4.31.2 (#552)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @compodoc/compodoc to v1.1.15 (#551)

Co-authored-by: Renovate Bot <[email protected]>

* update version

* chore(deps): update angular-cli monorepo to v12.2.7 (#560)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.7 (#561)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.8 (#566)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.33.0 (#564)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.0 (#563)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.8 (#567)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.8 (#565)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.21 (#562)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.9 (#570)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.9 (#568)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.9 (#569)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.10 (#577)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.3 (#571)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.1 (#573)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5 (#575)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.3.0 (#574)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency jasmine-core to v3.10.0 (#579)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.10 (#578)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.26 (#576)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.27 (#580)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.10 (#581)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.10.0 (#582)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5.1.0 (#583)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.4 (#587)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.11 (#588)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.3.1 (#591)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency karma to v6.3.5 (#586)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.11 (#590)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.11 (#589)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.2 (#585)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency highlight.js to v11.3.1 (#584)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5.2.0 (#601)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.6.0 (#600)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.3 (#599)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.5 (#598)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency karma to v6.3.6 (#597)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.10.1 (#596)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.4.0 (#595)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency jasmine-core to v3.10.1 (#594)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency bootstrap-scss to v5.1.3 (#593)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.32 (#592)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v16 (#602)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.6.1 (#603)

Co-authored-by: Renovate Bot <[email protected]>

* feat: upgrade to angular 13 (#616)

* feat: upgrade to angular 13

* fix: errors

* fix: code coverage

* update github workflow for core

* update version and readme

* chore(deps): update dependency jszip to 3.7.0 [security] (#620)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency nth-check to 2.0.1 [security] (#621)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular monorepo to v13 (#613)

Co-authored-by: Renovate Bot <[email protected]>

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <[email protected]>
r-hannuschka added a commit that referenced this pull request Jan 18, 2022
* chore(deps): update dependency @ngx-file-upload/core to v4 (#488)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency eslint to v7.32.0 (#489)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.9 (#490)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency highlight.js to v11.2.0 (#491)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.0 (#495)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angularcli monorepo to v12.2.1 (#497)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.1 (#498)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.2.0 (#499)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency bootstrap-scss to v5.1.0 (#500)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency path-parse to 1.0.7 [security] (#501)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency tslib to v2.3.1 (#503)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.1 (#496)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.1 (#493)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.29.1 (#492)

Co-authored-by: Renovate Bot <[email protected]>

* bugfixing

* update deps

* update package.json

* update unit tests and version

* chore(deps): update dependency ts-node to v10.2.1 (#507)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.2 (#508)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.10 (#510)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angularcli monorepo to v12.2.2 (#509)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.2 (#511)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.11 (#512)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.3 (#518)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.1 (#517)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.3 (#515)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency jasmine-core to v3.9.0 (#513)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.29.3 (#514)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.3 (#519)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.12 (#520)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angularcli monorepo to v12.2.3 (#521)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency ngx-highlightjs to v5 (#522)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.30.0 (#527)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.14 (#528)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.4 (#529)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.4 (#530)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.4 (#532)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.4 (#531)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.9.0 (#533)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.31.0 (#534)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.5 (#536)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.15 (#535)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.5 (#537)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.5 (#539)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.5 (#538)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.4.1 (#540)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency ngx-file-drop to v11.2.0 (#541)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.16 (#546)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.9.1 (#545)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.6 (#544)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency bootstrap-scss to v5.1.1 (#542)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.31.1 (#543)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.6 (#548)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.6 (#547)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.6 (#549)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.17 (#550)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.7 (#558)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.2 (#557)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.18 (#556)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.5.0 (#554)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.1.7 (#553)

Co-authored-by: Renovate Bot <[email protected]>

* fix e2e tests

* chore(deps): update typescript-eslint monorepo to v4.31.2 (#552)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @compodoc/compodoc to v1.1.15 (#551)

Co-authored-by: Renovate Bot <[email protected]>

* update version

* chore(deps): update angular-cli monorepo to v12.2.7 (#560)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.7 (#561)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.8 (#566)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v4.33.0 (#564)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.0 (#563)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.8 (#567)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.8 (#565)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.21 (#562)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.9 (#570)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.9 (#568)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.9 (#569)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.10 (#577)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.3 (#571)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.1 (#573)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5 (#575)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.3.0 (#574)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency jasmine-core to v3.10.0 (#579)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.10 (#578)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.26 (#576)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.27 (#580)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.10 (#581)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.10.0 (#582)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5.1.0 (#583)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.4 (#587)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v12.2.11 (#588)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.3.1 (#591)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency karma to v6.3.5 (#586)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v12.2.11 (#590)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v12.2.11 (#589)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.2 (#585)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency highlight.js to v11.3.1 (#584)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5.2.0 (#601)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.6.0 (#600)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.3 (#599)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v12.2.5 (#598)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency karma to v6.3.6 (#597)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.10.1 (#596)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.4.0 (#595)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency jasmine-core to v3.10.1 (#594)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency bootstrap-scss to v5.1.3 (#593)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v14.17.32 (#592)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v16 (#602)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.6.1 (#603)

Co-authored-by: Renovate Bot <[email protected]>

* feat: upgrade to angular 13 (#616)

* feat: upgrade to angular 13

* fix: errors

* fix: code coverage

* update github workflow for core

* update version and readme

* chore(deps): update dependency jszip to 3.7.0 [security] (#620)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency nth-check to 2.0.1 [security] (#621)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular monorepo to v13 (#613)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @ngx-file-upload/core to v5 (#624)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v13.0.1 (#604)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5.3.1 (#609)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v13.0.1 (#605)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v13.0.2 (#606)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v16.11.7 (#623)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency karma to v6.3.8 (#607)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.2.5 (#608)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/jasmine to v3.10.2 (#610)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency ngx-highlightjs to v6 (#625)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency karma to v6.3.9 (#628)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5.4.0 (#626)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v12.3.0 (#627)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v13.0.3 (#632)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v13.0.2 (#631)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v13.0.6 (#629)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v13.0.2 (#630)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v12.7.0 (#634)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v16.11.8 (#633)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v13 (#635)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency eslint to v8 (#572)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-eslint monorepo to v13.0.1 (#636)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v13 (#641)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency eslint to v8.3.0 (#639)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency angular-cli-ghpages to v1 (#638)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v16.11.9 (#637)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v13.0.8 (#644)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v16.11.10 (#643)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @compodoc/compodoc to v1.1.16 (#642)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update angular monorepo to v13.1.2 (#648)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency node-forge to 1.0.0 [security] (#658)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency follow-redirects to 1.14.7 [security] (#657)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency ngx-file-drop to v13 (#654)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update typescript-eslint monorepo to v5.10.0 (#646)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency eslint to v8.7.0 (#653)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency igniteui-angular to v13.0.8 (#645)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency karma-coverage to v2.1.0 (#651)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update angular-cli monorepo to v13.1.3 (#650)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency json-schema to 0.4.0 [security] (#659)

Co-authored-by: Renovate Bot <[email protected]>

* fix(deps): update dependency @angular/cdk to v13.1.2 (#649)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency @types/node to v16.11.20 (#647)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ng-packagr to v13.1.3 (#655)

* chore(deps): update dependency ng-packagr to v13.1.3

* fix: ng build update browserslist

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Ralf Hannuschka <[email protected]>

* update demo, remove compodoc dependency

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <[email protected]>
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.

2 participants