') + ')', '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 dependencies (major) (major) by renovate[bot] · Pull Request #166 · Lunotte/react-http-request-handler · GitHub
Skip to content

Update dependencies (major) (major) - #166

Closed
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-dependencies-major
Closed

Update dependencies (major) (major)#166
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-dependencies-major

Conversation

@renovate

@renovaterenovateBot commented May 1, 2023

Copy link
Copy Markdown
Contributor

Mend Renovate

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidence
@react-native-community/cli (source)10.2.1 -> 13.6.2ageadoptionpassingconfidence
@typescript-eslint/eslint-plugin (source)5.56.0 -> 7.2.0ageadoptionpassingconfidence
@typescript-eslint/parser (source)5.56.0 -> 7.2.0ageadoptionpassingconfidence
react-redux8.0.5 -> 9.1.0ageadoptionpassingconfidence
redux (source)4.2.1 -> 5.0.1ageadoptionpassingconfidence
reselect4.1.7 -> 5.1.0ageadoptionpassingconfidence
com.android.tools.build:gradle (source)7.4.2 -> 8.3.0ageadoptionpassingconfidence

Release Notes

react-native-community/cli (@​react-native-community/cli)

v13.6.2

Compare Source

v13.6.1

Compare Source

This is the collective changelog for v13 of the CLI that's intended for use with React Native 0.74.

Features

Fixes

Chore & Maintenance

New Contributors

Full Changelog: react-native-community/cli@v12.3.6...v13.6.1

v13.6.0

Compare Source

v13.5.2

Compare Source

v13.5.1

Compare Source

v13.5.0

Compare Source

v13.4.0

Compare Source

v13.3.0

Compare Source

v13.2.0

Compare Source

v13.1.0: v12.3.0

Compare Source

What's Changed

Full Changelog: react-native-community/cli@v13.0.1...v13.1.0

v13.0.1

Compare Source

v13.0.0

Compare Source

What's Changed

Full Changelog: react-native-community/cli@v12.2.0...v13.0.0

v12.3.6

Compare Source

What's Changed

Full Changelog: react-native-community/cli@v12.3.5...v12.3.6

v12.3.5

Compare Source

What's changed

Full Changelog: react-native-community/cli@v12.3.4...v12.3.5

v12.3.4

Compare Source

What's Changed

Full Changelog: react-native-community/cli@v12.3.3...v12.3.4

v12.3.3

Compare Source

What's Changed

Full Changelog: react-native-community/cli@v12.3.2...v12.3.3

v12.3.2

Compare Source

What's Changed

Full Changelog: react-native-community/cli@v12.3.1...v12.3.2

v12.3.1

Compare Source

Fixes

Full Changelog: react-native-community/cli@v12.3.0...v12.3.1

v12.3.0

Compare Source

What's Changed

Full Changelog: react-native-community/cli@v12.2.1...v12.3.0

v12.2.1

Compare Source

v12.2.0

Compare Source

Changes
🚀 Features
🐛 Bug Fixes
🧰 Maintenance
5 changes

Full Changelog: react-native-community/cli@v12.1.1...v12.2.0

v12.1.1

Compare Source

What's Changed

Full Changelog: react-native-community/cli@v12.1.0...v12.1.1

v12.1.0

Compare Source

🚀 Features
🐛 Bug Fixes
🧰 Maintenance

Full Changelog: react-native-community/cli@v12.0.0...v12.1.0

v12.0.0

Compare Source

This version of React Native CLI targets React Native 0.73 and includes numerous bug fixes, features and performance improvements.

Breaking changes
Performance
Fixes
Features
Chore & Maintenance

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 2 times, most recently from 53d1cd2 to 2f3b1beCompareMay 4, 2023 14:17
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 3 times, most recently from 9e35812 to 6291a99CompareMay 16, 2023 15:41
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch from 6291a99 to 8e9a7e2CompareMay 28, 2023 12:09
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch from 8e9a7e2 to 46c67a1CompareJune 12, 2023 12:00
@renovaterenovateBot changed the title Update dependencies (major) (major)Update dependency com.android.tools.build:gradle to v8Jun 16, 2023
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch from 46c67a1 to c8f243bCompareJune 22, 2023 14:29
@renovaterenovateBot changed the title Update dependency com.android.tools.build:gradle to v8Update dependencies (major) (major)Jun 22, 2023
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 2 times, most recently from ede9555 to 3345070CompareJune 30, 2023 09:39
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 2 times, most recently from 76255bf to 0d446ceCompareJuly 11, 2023 20:14
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch from 0d446ce to 2263c72CompareJuly 17, 2023 19:37
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 3 times, most recently from e6db949 to 9348ab2CompareJuly 31, 2023 19:17
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 3 times, most recently from a507c2d to 4531662CompareAugust 14, 2023 18:39
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 3 times, most recently from 429eb74 to d12c28cCompareAugust 28, 2023 17:25
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch from d12c28c to f957e98CompareAugust 28, 2023 19:27
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 2 times, most recently from 2066ccc to 47c4141CompareSeptember 6, 2023 21:35
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 2 times, most recently from 70161c9 to 3d79febCompareSeptember 12, 2023 16:00
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 3 times, most recently from ba2de0d to fc30d61CompareNovember 13, 2023 20:29
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 4 times, most recently from 201fa19 to 36814ebCompareNovember 20, 2023 20:07
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 8 times, most recently from 8ed6591 to 9099455CompareDecember 4, 2023 15:03
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 7 times, most recently from 3b4a663 to 261db85CompareDecember 11, 2023 18:38
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 2 times, most recently from de8ade2 to f6b2d74CompareDecember 18, 2023 18:06
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 3 times, most recently from 7394972 to 5ad49efCompareDecember 25, 2023 18:49
@renovate
renovateBotforce-pushed the renovate/major-dependencies-major branch 2 times, most recently from a1dc149 to b4a2f2dCompareJanuary 3, 2024 23:10
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@Lunotte