Skip to content
This repository was archived by the owner on Jul 18, 2026. It is now read-only.

Update angular monorepo - #7

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/angular-monorepo
Open

Update angular monorepo#7
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/angular-monorepo

Conversation

@renovate

@renovaterenovateBot commented Nov 3, 2023

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeConfidence
@angular/common (source)18.0.218.2.14ageconfidence
@angular/compiler (source)18.0.218.2.14ageconfidence
@angular/compiler-cli (source)18.0.218.2.14ageconfidence
@angular/core (source)18.0.218.2.14ageconfidence
@angular/platform-browser (source)18.0.218.2.14ageconfidence
@angular/platform-browser-dynamic (source)18.0.218.2.14ageconfidence
zone.js (source, changelog)^0.14.2^0.16.0ageconfidence

Release Notes

angular/angular (@​angular/common)

v18.2.14

Compare Source

Breaking Changes

core
  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    constbootstrap=()=>bootstrapApplication(AppComponent,config);

    After:

    constbootstrap=(context: BootstrapContext)=>bootstrapApplication(AppComponent,config,context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9)

core
CommitTypeDescription
9d1fb33f5efixintroduce BootstrapContext for improved server bootstrapping (#​63640)

v18.2.13

Compare Source

migrations
CommitTypeDescription
06d70a25eafixtake care of tests that import both HttpClientModule & HttpClientTestingModule. (#​58777)

v18.2.12

Compare Source

compiler-cli
CommitTypeDescription
4c38160853fixcorrect extraction of generics from type aliases (#​58548)

v18.2.11

Compare Source

core
CommitTypeDescription
5f2d98a1b1fixavoid slow stringification when checking for duplicates in dev mode (#​58521)
3aa45a2fa1fixresolve forward-referenced host directives during directive matching (#​58492) (#​58500)

v18.2.10

Compare Source

compiler
CommitTypeDescription
69dce38e778fixtransform pseudo selectors correctly for the encapsulated view. (#​58417)
localize
CommitTypeDescription
3b989ac5bd9fixAdding arb format to the list of valid formats in the localization extractor cli (#​58287)

v18.2.9

Compare Source

compiler-cli
CommitTypeDescription
b0ab653965fixreport when NgModule imports or exports itself (#​58231)

v18.2.8

Compare Source

compiler
CommitTypeDescription
11692c8dabfixadd multiple :host and nested selectors support (#​57796)
66dcc691f5fixallow combinators inside pseudo selectors (#​57796)
48a1437e77fixfix comment typo (#​57796)
d325f9b55ffixfix parsing of the :host-context with pseudo selectors (#​57796)
aea747ab3bfixpreserve attributes attached to :host selector (#​57796)
21be258be6fixscope :host-context inside pseudo selectors, do not decrease specificity (#​57796)
7a6fd427d5fixtransform pseudo selectors correctly for the encapsulated view (#​57796)
compiler-cli
CommitTypeDescription
f187c3abf8fixdefer symbols only used in types (#​58104)
core
CommitTypeDescription
46bafb0b0afixclean up afterRender after it is executed (#​58119)
platform-server
CommitTypeDescription
b40875a2ccfixdestroy PlatformRef when error happens during the bootstrap() phase (#​58112) (#​58135)

v18.2.7

Compare Source

common
CommitTypeDescription
249d0260f9fixexecute checks and remove placeholder when image is already loaded (#​55444)
46a2ad39f5fixprevent warning about oversize image twice (#​58021)
8f2b0ede59fixskip checking whether SVGs are oversized (#​57966)
compiler-cli
CommitTypeDescription
901c1e1a7ffixcorrectly get the type of nested function call expressions (#​57010)
core
CommitTypeDescription
2f347ef8fcfixprovide flag to opt into manual cleanup for after render hooks (#​57917)
http
CommitTypeDescription
ca637fe6a9fixcleanup JSONP script listeners once loading completed (#​57877)
migrations
CommitTypeDescription
b9d846dad7fixdelete constructor if it only has super call (#​58013)
upgrade
CommitTypeDescription
e40a4fa3c7fixsupport input signal bindings (#​57020)

v18.2.6

Compare Source

v18.2.5

Compare Source

compiler-cli
CommitTypeDescription
e685ed883afixextended diagnostics not validating ICUs (#​57845)
core
CommitTypeDescription
76709d5d6efixHandle @let declaration with array when preparingForHydration (#​57816)
migrations
CommitTypeDescription
5c866942a1fixaccount for explicit standalone: false in migration (#​57803)

v18.2.4

Compare Source

compiler
CommitTypeDescription
b619d6987efixproduce less noisy errors when parsing control flow (#​57711)
migrations
CommitTypeDescription
9895e4492ffixreplace leftover modules with their exports during pruning (#​57684)

v18.2.3

Compare Source

http
CommitTypeDescription
de68e049e4fixDynamicaly call the global fetch implementation (#​57531)

v18.2.2

Compare Source

core
CommitTypeDescription
106917af878fixavoid leaking memory if component throws during creation (#​57546)
6d3a2af146afixDo not bubble capture events. (#​57476)
http
CommitTypeDescription
5d2e243c76afixDynamicaly call the global fetch implementation (#​57531)
router
CommitTypeDescription
804925b1149fixDo not unnecessarily run matcher twice on route matching (#​57530)
upgrade
CommitTypeDescription
03ec620e31afixAddress Trusted Types violations in @​angular/upgrade (#​57454)

v18.2.1

Compare Source

Breaking Changes

core
  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    constbootstrap=()=>bootstrapApplication(AppComponent,config);

    After:

    constbootstrap=(context: BootstrapContext)=>bootstrapApplication(AppComponent,config,context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9)

core
CommitTypeDescription
9d1fb33f5efixintroduce BootstrapContext for improved server bootstrapping (#​63640)

v18.2.0

Compare Source

compiler
CommitTypeDescription
c8e2885136featAdd extended diagnostic to warn when there are uncalled functions in event bindings (#​56295) (#​56295)
compiler-cli
CommitTypeDescription
98ed5b609efeatrun JIT transform on classes with jit: true opt-out (#​56892)
c76b440ac0fixadd warning for unused let declarations (#​57033)
0f0a1f2836fixemitting references to ngtypecheck files (#​57138)
6c2fbda694fixextended diagnostic visitor not visiting template attributes (#​57033)
e11c0c42d2fixrun JIT transforms on @NgModule classes with jit: true (#​57212)
core
CommitTypeDescription
f7918f5272featAdd 'flush' parameter option to fakeAsync to flush after the test (#​57239)
fab673a1ddfeatadd ng generate schematic to convert to inject (#​57056)
7919982063featAdd whenStable helper on ApplicationRef (#​57190)
3459289ef0featbootstrapModule can configure NgZone in providers (#​57060)
296216cbe1fixAllow hybrid CD scheduling to support multiple "Angular zones" (#​57267)
8718abce90fixDeprecate ignoreChangesOutsideZone option (#​57029)
827070e331fixDo not run image performance warning checks on server (#​57234)
ca89ef9141fixhandle shorthand assignment in the inject migration (#​57134)
5dcdbfcba9fixrename the equality function option in toSignal (#​56769)
2a4f488a6cfixwarnings for oversized images and lazy-lcp present with bootstrapModule (#​57060)
language-service
CommitTypeDescription
4bb558ab0cfeatsupport writing code refactorings (#​56895)
7663debce1perfquick exit if no code fixes can exist (#​57000)
migrations
CommitTypeDescription
147eee4253featadd migration to convert standalone component routes to be lazy loaded (#​56428)
cb442a0ce7fixaccount for parameters with union types (#​57127)
166166d79efixadd alias to inject migration (#​57127)
b1a9d0f4defixavoid duplicating comments when generating properties (#​57367)
5d76401ff5fixpreserve optional parameters (#​57367)
1cf616f671fixremove generic arguments from the injected type reference (#​57127)
ba0df30ef6fixremove unused imports in inject migration (#​57179)
aae9646a1bfixunwrap injected forwardRef (#​57127)
604270619aperfspeed up signal input migration by combining two analyze phases (#​57318)
router
CommitTypeDescription
6c76c91e15featAdd defaultQueryParamsHandling to router configuration (#​57198)

v18.1.5

Compare Source

compiler-cli
CommitTypeDescription
5401332b0efixgenerate valid TS 5.6 type checking code (#​57303)
core
CommitTypeDescription
e39b22a932fixAccount for addEventListener to be passed a Window or Document. (#​57282)
db65bc25cafixAccount for addEventListener to be passed a Window or Document. (#​57354)
0e024ecc27fixcomplete post-hydration cleanup in components that use ViewContainerRef (#​57300)
822db64b93fixskip hydration for i18n nodes that were not projected (#​57356)
810f76f574fixtake skip hydration flag into account while hydrating i18n blocks (#​57299)

v18.1.4

Compare Source

compiler
CommitTypeDescription
6a99f83659fixreduce chance of conflicts between generated factory and local variables (#​57181)
compiler-cli
CommitTypeDescription
afb05ff1cbfixsupport JIT transforms before other transforms modifying classes (#​57262)
bae54a1621perfimprove performance of interpolatedSignalNotInvoked extended diagnostic (#​57291)
language-service
CommitTypeDescription
6ac209c24ffixavoid generating TS suggestion diagnostics for templates (#​56241)

v18.1.3

Compare Source

compiler
CommitTypeDescription
31dea066d6fixreduce chance of conflicts between generated factory and local variables (#​57181)
compiler-cli
CommitTypeDescription
1f9e090910fixemitting references to ngtypecheck files (#​57138) (#​57202)
core
CommitTypeDescription
f7ab04018efixerrors during ApplicationRef.tick should be rethrown for zoneless tests (#​56993)
eaa83f9d27fixhydration error in some let declaration setups (#​57173)

v18.1.2

Compare Source

compiler
CommitTypeDescription
463945003dfixlimit the number of chained instructions (#​57069)
compiler-cli
CommitTypeDescription
e904f34020fixadd warning for unused let declarations (#​57033)
core
CommitTypeDescription
9e52c1c840fixafterNextRender hooks return that callback value. (#​57031)
b9fb98c67cfixtree shake dev mode error message (#​57035)

v18.1.1

Compare Source

common
CommitTypeDescription
a1cb9dfc0dfixDon't run preconnect assertion on the server. (#​56213)
compiler
CommitTypeDescription
daf0317bdcfixJIT mode incorrectly interpreting host directive configuration in partial compilation (#​57002)
d7dca6dbb6fixuse strict equality for 'code' comparison (#​56944)
compiler-cli
CommitTypeDescription
c94a897248fixavoid emitting references to typecheck files in TS 5.4 (#​56961)
core
CommitTypeDescription
5682527d94fixnot all callbacks running when registered at the same time (#​56981)
migrations
CommitTypeDescription
[b666d2c20f](https://redirect.github.com/angular/angular/commit/b666d2c20f932f435fa6c51e1d74d7bc

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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 was generated by Mend Renovate. View the repository job log.

@renovaterenovateBot changed the title Update angular monorepoUpdate angular monorepo - autoclosedNov 24, 2023
@renovaterenovateBot closed this Nov 24, 2023
@renovate
renovateBot deleted the renovate/angular-monorepo branch November 24, 2023 14:26
@renovaterenovateBot changed the title Update angular monorepo - autoclosedUpdate angular monorepoNov 29, 2023
@renovaterenovateBot reopened this Nov 29, 2023
@renovate
renovateBot restored the renovate/angular-monorepo branch November 29, 2023 17:38
@renovaterenovateBot changed the title Update angular monorepoUpdate angular monorepo to v17.0.5Nov 29, 2023
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from c888d90 to 7beb794CompareNovember 29, 2023 17:38
@renovaterenovateBot changed the title Update angular monorepo to v17.0.5Update angular monorepo to v17.0.6Dec 6, 2023
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from 7beb794 to 168d2e0CompareDecember 6, 2023 21:36
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from 168d2e0 to ac0c5f4CompareDecember 15, 2023 17:43
@renovaterenovateBot changed the title Update angular monorepo to v17.0.6Update angular monorepo to v17.0.7Dec 15, 2023
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from ac0c5f4 to eee4511CompareDecember 21, 2023 15:12
@renovaterenovateBot changed the title Update angular monorepo to v17.0.7Update angular monorepo to v17.0.8Dec 21, 2023
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from eee4511 to f629460CompareJanuary 9, 2024 19:08
@renovaterenovateBot changed the title Update angular monorepo to v17.0.8Update angular monorepoJan 9, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 2 times, most recently from 8905449 to 0ad5e2eCompareJanuary 18, 2024 01:05
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 2 times, most recently from 2a18831 to 0ee4cf8CompareJanuary 31, 2024 20:06
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 4 times, most recently from e8d1ddf to 6a1def2CompareFebruary 15, 2024 02:52
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 3 times, most recently from 94076de to 2bf8cd5CompareFebruary 27, 2024 08:48
@renovaterenovateBot changed the title Update angular monorepoUpdate angular monorepo - autoclosedFeb 27, 2024
@renovaterenovateBot closed this Feb 27, 2024
@renovate
renovateBot deleted the renovate/angular-monorepo branch February 27, 2024 08:56
@renovaterenovateBot changed the title Update angular monorepo to v17.3.1Update angular monorepo to v17.3.2Mar 28, 2024
@renovaterenovateBot changed the title Update angular monorepo to v17.3.2Update angular monorepo to v17.3.3Apr 3, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from 44321ac to bdb0a32CompareApril 4, 2024 01:12
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from bdb0a32 to 1ad0939CompareApril 11, 2024 01:57
@renovaterenovateBot changed the title Update angular monorepo to v17.3.3Update angular monorepo to v17.3.4Apr 11, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from 1ad0939 to b958377CompareApril 19, 2024 08:58
@renovaterenovateBot changed the title Update angular monorepo to v17.3.4Update angular monorepo to v17.3.5Apr 19, 2024
@renovaterenovateBot changed the title Update angular monorepo to v17.3.5Update angular monorepo to v17.3.6Apr 25, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 2 times, most recently from 384ca16 to e7c3de4CompareApril 30, 2024 22:26
@renovaterenovateBot changed the title Update angular monorepo to v17.3.6Update angular monorepoApr 30, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 2 times, most recently from a265f54 to e9d9511CompareMay 8, 2024 16:32
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 3 times, most recently from 4569d02 to 80acbacCompareMay 17, 2024 13:20
@renovaterenovateBot changed the title Update angular monorepoUpdate dependency zone.js to v0.14.6May 17, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch from 80acbac to d04a0e3CompareMay 22, 2024 21:58
@renovaterenovateBot changed the title Update dependency zone.js to v0.14.6Update angular monorepoMay 22, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 2 times, most recently from d6a4142 to 0885e0cCompareJune 6, 2024 23:11
@renovaterenovateBot changed the title Update angular monorepoUpdate dependency zone.js to v0.14.7Jun 10, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 3 times, most recently from 6480be9 to 36f61b4CompareJune 13, 2024 01:25
@renovaterenovateBot changed the title Update dependency zone.js to v0.14.7Update angular monorepoJun 13, 2024
@renovate
renovateBotforce-pushed the renovate/angular-monorepo branch 2 times, most recently from 34e6db8 to 0e8194bCompareJune 27, 2024 00:30
@renovate

renovateBot commented Aug 21, 2024

Copy link
Copy Markdown
ContributorAuthor

⚠️ 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: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: @hhangular/resizable@1.18.1
npm error Found: zone.js@0.16.2
npm error node_modules/zone.js
npm error dev zone.js@"^0.16.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer zone.js@"~0.14.10" from @angular/core@18.2.14
npm error node_modules/@angular/core
npm error dev @angular/core@"^18.0.2" from the root project
npm error peer @angular/core@"18.2.14" from @angular/common@18.2.14
npm error node_modules/@angular/common
npm error dev @angular/common@"^18.0.2" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-07-16T15_36_44_840Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-07-16T15_36_44_840Z-debug-0.log

Sign up for freeto subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants