') + ')', '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); } })(); })(); chore(deps): update dependency regenerator-runtime to ^0.14.0 by renovate[bot] · Pull Request #37 · nos/core-plugin-staking · GitHub
Skip to content

chore(deps): update dependency regenerator-runtime to ^0.14.0 - #37

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/regenerator-runtime-0.x
Open

chore(deps): update dependency regenerator-runtime to ^0.14.0#37
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/regenerator-runtime-0.x

Conversation

@renovate

@renovaterenovateBot commented Aug 9, 2023

Copy link
Copy Markdown

This PR contains the following updates:

PackageChangeAgeConfidence
regenerator-runtime (source)^0.13.0^0.14.0ageconfidence

Release Notes

facebook/regenerator (regenerator-runtime)

v0.14.1

Compare Source

v0.14.0

Compare Source

v0.13.11

Compare Source

v0.13.10

Compare Source

v0.13.9

Compare Source

v0.13.8

Compare Source

v0.13.7

Compare Source

v0.13.6

Compare Source

v0.13.5

Compare Source

v0.13.4

Compare Source


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 this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from 1fdf746 to 72a940bCompareAugust 11, 2025 19:56
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from 72a940b to b20103eCompareOctober 23, 2025 07:54
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from b20103e to ac67910CompareNovember 16, 2025 08:10
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from ac67910 to 873178eCompareDecember 3, 2025 23:50
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from 873178e to 13cf1d0CompareFebruary 3, 2026 04:00
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from 13cf1d0 to a957c66CompareFebruary 13, 2026 12:08
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from a957c66 to bf7e0beCompareMarch 8, 2026 09:25
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from bf7e0be to 6934339CompareApril 15, 2026 13:43
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from 6934339 to ffba6d6CompareMay 13, 2026 04:04
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from ffba6d6 to ab26c90CompareMay 23, 2026 07:13
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from ab26c90 to 19ac8e2CompareJune 12, 2026 15:33
@renovate
renovateBotforce-pushed the renovate/regenerator-runtime-0.x branch from 19ac8e2 to b7aa148CompareJuly 15, 2026 23:53
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