') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Update angular monorepo to v22 by renovate[bot] · Pull Request #190 · esm-bundle/angular__upgrade · GitHub
Skip to content

Update angular monorepo to v22 - #190

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

Update angular monorepo to v22#190
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-angular-monorepo

Conversation

@renovate

@renovaterenovateBot commented May 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)15.2.1022.1.4ageconfidence
@angular/compiler (source)15.2.1022.1.4ageconfidence
@angular/compiler-cli (source)15.2.1022.1.4ageconfidence
@angular/core (source)15.2.1022.1.4ageconfidence
@angular/platform-browser (source)15.2.1022.1.4ageconfidence
@angular/platform-browser-dynamic (source)15.2.1022.1.4ageconfidence
@angular/upgrade (source)15.2.1022.1.4ageconfidence

Release Notes

angular/angular (@​angular/common)

v22.1.4

Compare Source

common
CommitTypeDescription
60a874c3fbfixavoid prototype member collisions
e8378dfeabfixuse locale NaN symbol in number formatting
compiler
CommitTypeDescription
05c7c725a5fixscope animations declared in minified nested rules
compiler-cli
CommitTypeDescription
afe8499a14fixdefault template diagnostic related message source file to template
079a846263fixProduce correct tcb expression for optional chaining
55eeb46418fixretain metadata for strict standalone errors
core
CommitTypeDescription
3da35cbab9fixavoid prototype member collisions
b199bdfa2afixexplicitly reject foreign components in JIT mode
9a8e4826b9fixpreserve namespace for dynamic component hosts
7c752d4815fixprevent TransferState prototype pollution
7546b7a805fixthrow coded RuntimeErrors instead of crashing when hydration/rendering can't find an expected DOM node
forms
CommitTypeDescription
c8eb7f0056fixuse dot-access for readonly rule configuration
language-service
CommitTypeDescription
93d7f718d2fixhonor quote style preference when generating imports
migrations
CommitTypeDescription
85c8829ac1fixpreserve registerLocaleData calls in standalone bootstrap migration
platform-server
CommitTypeDescription
71e52d1396fixavoid stripping unicode whitespace during url resolution

v22.1.3

Compare Source

animations
CommitTypeDescription
d9620e0f1bfixdetect object trigger values with Object.hasOwn
common
CommitTypeDescription
b3c78a5081fixpreserve literal key union in KeyValuePipe.transform()
compiler
CommitTypeDescription
94f0b9a371fixpreserve &ngsp; between sibling control flow blocks
core
CommitTypeDescription
afe529cb2dfixaccept readonly arrays for setClassMetadata decorators
2c72fe3797fixallow readonly arrays in RawScopeInfoFromDecorator
ef2ce9a098fixexpose debuggableFn for non-computed signal graph nodes
7bcce260f5fixprevent orphaned requestIdleCallback handle from re-entrant scheduling
44137117b3fixreplace all hasOwnProperty usages with Object.hasOwn
85f12a5a13fixstop running further effects once one destroys the view mid-flush
c04931c88bfixthrow a descriptive error instead of crashing when a hydration node is missing
601d1f6576fixthrow NG0500 instead of a raw TypeError on element hydration mismatch
forms
CommitTypeDescription
83450d2924fixreport forbidden 2way bindings on when FormField is applied
5cb4ea7e35fixwarn in dev mode when ngModel cannot reach parent NgForm across component boundary
http
CommitTypeDescription
0cd635e9e2fixcancel oversized fetch response bodies
language-server
CommitTypeDescription
14fbe04612fixrecover project for external templates in solution-style workspaces
platform-browser
CommitTypeDescription
3ddcb1a101fixdisallow event handler attributes in Meta
640460d606fixthrow a descriptive error when insertBefore reference node is missing
router
CommitTypeDescription
abe019d505fixpass correct component to canDeactivate for named outlets in componentless parent routes

v22.1.2

Compare Source

compiler
CommitTypeDescription
76dff307b4fixGenerate correct expression for optional chaning.
6f9a64e6f5fixremove namespaced MathML script elements
compiler-cli
CommitTypeDescription
e9660b1801fixcorrectly resolve symbol for SafePropertyRead in chained optional navigation
ec6deea513fixrecord class extends clause references in DeferredSymbolTracker
core
CommitTypeDescription
0df9d5eb65fixensure i18n_util hasOwnProperty checks are safe for property renaming
4d985a179efixincorrect loop in defer blocks
7b40456792fixreject prefixed SVG script hosts
forms
CommitTypeDescription
3b5c798072fixkeep radio inputs in sync when values change
http
CommitTypeDescription
4f7e9987fafixalways decode JSON responses as UTF-8
router
CommitTypeDescription
2f82601662fixlimit protocol-relative URL handling to serialization

v22.1.1

Compare Source

core
CommitTypeDescription
aa6d3189c1fixinitialize hydration triggers after late runtime activation
deecb301c8fixwarn when style property bindings receive invalid values
http
CommitTypeDescription
ac3728e79ffixavoid aborting completed requests in FetchBackend
688a0a7118fixrespect content-type charset in fetch backend text decoder
a13b968451fixrun root interceptors in the terminal request chain
32af9b525efixstrip RFC 6265 DQUOTE characters and handle URIError in parseCookieValue

v22.1.0

Compare Source

Deprecations

http
  • HttpClient.jsonp, HttpClientJsonpModule, and related JSONP classes/functions are deprecated. Use standard HTTP requests instead.
common
CommitTypeDescription
1ad6824d0dfixskip transfer cache for uncacheable HTTP traffic (#​69017)
compiler
CommitTypeDescription
af5e4e1131featAdd an error for --global-foo cases (#​68846)
d579ecaf73featDisable '--global-' error outside of g3 (#​68846)
f98547675cfeatNamespace CSS variables to the app (#​68846)
8c8b2f7783featSupport css var namespacing in properties (#​68846)
292199aa4dfixpermissive whitespace parsing in default never blocks
25c744c4d0fixsupport foreign components defined outside top-level scope
5bd00add07fixsupport foreign components inside control flow blocks (#​69674)
2e442f7876perfdo not emit tag name when control flow root is foreign component (#​69674)
compiler-cli
CommitTypeDescription
aeb55c8bc1fixallow passing uninvoked signals as foreign component props
7c60a98b3cfixsupport import aliases in foreignImports (#​68674)
core
CommitTypeDescription
124ba10eadfeatadd custom set option to linkedSignal
eab4847a8bfeatAdds deep linking from Performance panel to DevTools
091456a214fixaccount for namespaces in host binding sanitization (#​69558)
b3748e9fe4fixcorrect container anchor collection order to match DOM layout
11b206b919fixintroduce disposal mechanism for Angular views in foreign @content
56607967dbfixintroduce logical-only containers for foreign content
23cf1a828bfixsanitize host bindings on concrete hosts (#​69558)
0c07356c5cfixset current tnode in foreign component instruction on reuse
forms
CommitTypeDescription
bbbd357bd2fixadd utility to assert that value is a field tree
http
CommitTypeDescription
e3630c23c5featadd options to allow caching of credentialed and non-cacheable HTTP requests
ec16a3d6c6fixenable xsrf for root-provided HttpClient
39e362eea5fixmatch header values exactly when deleting
be46ca8696fixpreserve immutability of materialized clones
c0cbd46bd7fixskip transfer cache for fetch credentialed requests (#​69017)
af04e266ccrefactordeprecate jsonp support
language-service
CommitTypeDescription
7f0265e43afeatcompile non-exported classes if standalone (#​68454)
4f9c824dd9featTypecheck templates which would require inline typecheck blocks (#​68454)
a99fb915c0fixaccount for strictTemplates being enabled by default
migrations
CommitTypeDescription
c75ff0255cfeatadd migration from injectable to service
5d5b2ea72dfixcorrectly detect then/else keywords in control flow migration
platform-server
CommitTypeDescription
cf9d7fa0f8fixharden platform location origin validation during SSR (#​69184)
router
CommitTypeDescription
97a3fd6a55feathandle null and undefined inputs in RouterLinkActive

v22.0.8

Compare Source

common
CommitTypeDescription
c0368f2278fixpreserve crossorigin on image preloads
core
CommitTypeDescription
8616ba9db6fixensure SVG animation attributeName is checked case-insensitively
forms
CommitTypeDescription
d302c7ab83fixensure pending status propagates to the root form in signal forms
http
CommitTypeDescription
9d40f8aefefixprevent transfer cache key collisions
migrations
CommitTypeDescription
388daea2fcfixcorrectly migrate ngClass with mixed space-separated keys
bb39cda648fixpreserve NgClass import on partial migration

v22.0.7

Compare Source

common
CommitTypeDescription
91e33aa1defixavoid prototype lookups in date format caches
compiler
CommitTypeDescription
5b516e3a58fixparsing of an empty template literal interpolation
compiler-cli
CommitTypeDescription
c88ddde1c9fixre-tag SourceFiles after TsCreateProgramDriver.updateFiles()
core
CommitTypeDescription
94d9591b51fixallow static attributes for explicit input transforms
c89f71a74cfixignore processing instruction syntax in templates
70500e4067fixpreserve explicit input transform write type
forms
CommitTypeDescription
1b9964675ffixallow multiple async validators
64d6d47a0cfixpreserve intermediate number values in signal forms
6cf7446afafixprevent stale CVA writeback during debounce
http
CommitTypeDescription
20b7dc3023fixprevent interceptor signal reads from leaking into calling reactive contexts
localize
CommitTypeDescription
22d5a091d1fixbuild runtime translations map with a null prototype
8ce1fcf7fafixuse Object.hasOwn for placeholder lookup in translate
platform-browser
CommitTypeDescription
b34bf0dce8fixprevent ReDoS in SOURCEMAP_URL_REGEXP

v22.0.6

Compare Source

compiler
CommitTypeDescription
fd4ddcafedfixuse regular optional chaining expression for safe function calls in TCBs
compiler-cli
CommitTypeDescription
534fe81a89fixapply debugName transform to required signal queries
3b08201bfbfixdetect uninvoked signals in bound expressions using ternary
forms/signals
CommitTypeDescription
171669f7b2fixmake extractValue reactive for compat AbstractControl values
migrations
CommitTypeDescription
0a6af1496bfixpreserve transitive NgModule references when pruning
d4a926a762fixremove stale model import in model-output migration
router
CommitTypeDescription
c238bd2ad7fixhandle outlet named proto in segment group maps
8e6d7f7190fixuse safe hasOwnProperty when parsing query params

v22.0.5

Compare Source

common
CommitTypeDescription
eb8fb9fe58fixuse Object.hasOwn in I18nSelectPipe to handle null-prototype and shadowed mappings
compiler-cli
CommitTypeDescription
baf09a9939fixinclude toSignal in debugName transform
core
CommitTypeDescription
e598dc843ffiximprove input writes migration in best effort mode
ced0180b06fixreject dynamic script host elements
router
CommitTypeDescription
ca13b42e7cfixfix malformed jsdoc comment for RouterLinkWithHref export

v22.0.4

Compare Source

migrations
CommitTypeDescription
fd37f09f37fixresolve migration failure when tsconfig specifies rootDir

v22.0.3

Compare Source

compiler
CommitTypeDescription
f90c20df40fixaccount for NgModule dependencies in JIT-compiled partial declarations
f4f7f3755cfixremove unused import breaking CI in 22.0.x
compiler-cli
CommitTypeDescription
06d854929cfixreport diagnostic instead of crashing on malformed host binding
core
CommitTypeDescription
2799304259fixavoid uncaught promise errors in injectAsync prefetching
http
CommitTypeDescription
8cdc202dfcfixprevent caching of responses with Set-Cookie headers
service-worker
CommitTypeDescription
b4a5a2fb4efixpreserve referrer in asset requests
a16f9b2263fixpreserve referrer policy in asset requests
upgrade
CommitTypeDescription
bcc648f4b6fixsupport model() signals in downgradeComponent

v22.0.2

Compare Source

common
CommitTypeDescription
94ea403563fixescape anchor fragment in shadow DOM name selector
6c1f3e9d49fixskip transfer cache for uncacheable HTTP traffic (#​69316)
compiler
CommitTypeDescription
6f1171991afixrestrict possible event handler check to property names longer than 2 characters
core
CommitTypeDescription
528a34f766fixavoid caching missing locale data
e17e8d5422fixescape overlapping comment delimiters in escapeCommentText
59dea13f80fixguard against DOM clobbering in declareExperimentalWebMcpTool
3a48abc15cfixpreserve leave animation for sibling instances sharing a TNode
93d0a5f95cfixprevent unsubscribe during emit from throwing off other listeners
b32ee7ceb3fixtreat iframe credentialless as security-sensitive
[f902d1d35e](https://redirect.github.com/angular/angular/commit/f902d1d35e90e922

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.

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

kodiakhq[bot]
kodiakhqBot approved these changes May 3, 2023
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from bf6f737 to 3ab7507CompareMay 10, 2023 18:16
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 7baffc2 to 78b593bCompareMay 17, 2023 22:18
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 78b593b to 666a124CompareMay 24, 2023 18:20
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 57f6dc4 to d978d54CompareJune 1, 2023 19:29
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 3 times, most recently from 80b1b3e to 3d0a5a5CompareJune 14, 2023 20:05
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 3 times, most recently from aa4087f to f0e9966CompareJune 28, 2023 17:19
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from f0e9966 to 0507bffCompareJune 29, 2023 00:58
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 85422e8 to b88d92eCompareJuly 7, 2023 00:40
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 3a40b89 to 1128abbCompareJuly 19, 2023 20:03
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 1128abb to 8bf6183CompareJuly 26, 2023 18:22
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 8bf6183 to a149f45CompareAugust 2, 2023 19:59
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 2c8178a to ad5f5e2CompareAugust 16, 2023 18:27
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from ce57e72 to a10aad5CompareAugust 24, 2023 18:49
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from a10aad5 to 49bbea1CompareAugust 30, 2023 19:12
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from afa5eff to 1546b77CompareSeptember 13, 2023 18:23
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 1546b77 to 23ff65bCompareSeptember 20, 2023 18:23
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 23ff65b to 091249bCompareSeptember 27, 2023 23:01
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 1c3a17c to b40ed19CompareNovember 20, 2023 21:50
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 4b67cb5 to 101a0f4CompareDecember 6, 2023 18:47
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 101a0f4 to 766406aCompareDecember 14, 2023 03:49
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 766406a to 2a2b8b6CompareDecember 21, 2023 17:09
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 2a2b8b6 to 301d8bbCompareJanuary 11, 2024 00:13
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 3 times, most recently from c9e1c44 to b9f3148CompareJanuary 24, 2024 22:51
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from b9f3148 to 69910f3CompareJanuary 31, 2024 21:19
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 3 times, most recently from 5690bb4 to 26d40e5CompareFebruary 15, 2024 00:09
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 3 times, most recently from 84a72e2 to fc19fb0CompareFebruary 28, 2024 03:18
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 898a8fe to 40de7fbCompareMarch 13, 2024 21:11
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 2e3c5ec to e6abea7CompareMarch 20, 2024 22:13
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 9206019 to 3cc8de0CompareApril 3, 2024 22:45
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from 87f03af to ba977ebCompareApril 17, 2024 18:18
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch 2 times, most recently from bf55900 to 30c5f69CompareMay 1, 2024 19:27
@renovate
renovateBotforce-pushed the renovate/major-angular-monorepo branch from 30c5f69 to bcb3821CompareMay 8, 2024 19:39
@renovate

renovateBot commented May 16, 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: pnpm-lock.yaml
 WARN GET https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-6.0.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/husky/-/husky-8.0.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/karma/-/karma-6.4.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/karma-firefox-launcher/-/karma-firefox-launcher-2.1.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-5.1.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/pinst/-/pinst-3.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fcommon error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fcompiler error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fcompiler-cli error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fcore error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fplatform-browser error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fplatform-browser-dynamic error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fupgrade error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-6.0.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/husky/-/husky-8.0.3.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/karma/-/karma-6.4.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/karma-firefox-launcher/-/karma-firefox-launcher-2.1.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-5.1.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/pinst/-/pinst-3.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fcommon error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fcompiler error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fcompiler-cli error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fcore error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fplatform-browser error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fplatform-browser-dynamic error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/@angular%2Fupgrade error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
WARN GET https://registry.npmjs.org/pretty-quick/-/pretty-quick-3.1.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
ERR_INVALID_THIS Value of "this" must be of type URLSearchParams
WARN GET https://registry.npmjs.org/release-it/-/release-it-16.2.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/release-it-plugin-esm-bundle/-/release-it-plugin-esm-bundle-3.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
WARN GET https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.

Sign up for freeto 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.

0 participants