') + ')', '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); } })(); })(); Bump semver from 7.3.7 to 7.5.3 in /starter-dev-e2e by dependabot[bot] · Pull Request #1831 · thisdot/starter.dev-github-showcases · GitHub
Skip to content

Bump semver from 7.3.7 to 7.5.3 in /starter-dev-e2e - #1831

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/starter-dev-e2e/semver-7.5.3
Closed

Bump semver from 7.3.7 to 7.5.3 in /starter-dev-e2e#1831
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/starter-dev-e2e/semver-7.5.3

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubJun 30, 2023

Copy link
Copy Markdown

Bumps semver from 7.3.7 to 7.5.3.

Release notes

Sourced from semver's releases.

v7.5.3

7.5.3 (2023-06-22)

Bug Fixes

Documentation

v7.5.2

7.5.2 (2023-06-15)

Bug Fixes

v7.5.1

7.5.1 (2023-05-12)

Bug Fixes

v7.5.0

7.5.0 (2023-04-17)

Features

Bug Fixes

v7.4.0

7.4.0 (2023-04-10)

Features

Bug Fixes

... (truncated)

Changelog

Sourced from semver's changelog.

7.5.3 (2023-06-22)

Bug Fixes

Documentation

7.5.2 (2023-06-15)

Bug Fixes

7.5.1 (2023-05-12)

Bug Fixes

7.5.0 (2023-04-17)

Features

Bug Fixes

7.4.0 (2023-04-10)

Features

Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by npm-cli-ops, a new releaser for semver since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [semver](https://github.com/npm/node-semver) from 7.3.7 to 7.5.3.
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.3.7...v7.5.3)
---
updated-dependencies:
- dependency-name: semver
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added the dependencies Pull requests that update a dependency file label Jun 30, 2023
@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for angular-apollo-tailwind canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/angular-apollo-tailwind/deploys/649e76554923f7000878d358

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for solidjs-tailwind canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/solidjs-tailwind/deploys/649e7655d5b254000901e5ff

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for cra-rxjs-styled-components canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/cra-rxjs-styled-components/deploys/649e7655a09b46000815f888

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for next-react-query-tailwind canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/next-react-query-tailwind/deploys/649e765583f4d30008156f13

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for angular-ngrx-scss canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/angular-ngrx-scss/deploys/649e7655db50d700083ee96c

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for vue3-apollo-quasar canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/vue3-apollo-quasar/deploys/649e76559ba90f0008a810a0

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for nuxt-pinia-tailwind canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/nuxt-pinia-tailwind/deploys/649e7655ed2b8c00085b7126

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for starter-dev-backend canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/starter-dev-backend/deploys/649e765599acff00074e9a5e

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for svelte-kit-scss canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/svelte-kit-scss/deploys/649e7655c16e1600081f0a99

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for remix-gql-tailwind canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/remix-gql-tailwind/deploys/649e7655d296aa00082e2afe

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for qwik-graphql-tailwind canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/qwik-graphql-tailwind/deploys/649e76553ccb850008e4a612

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for expo-zustand-styled-components canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/expo-zustand-styled-components/deploys/649e7655b2ad5e0008b3220f

@netlify

netlifyBot commented Jun 30, 2023

Copy link
Copy Markdown

Deploy Preview for solidstart-tanstackquery-tailwind-mod canceled.

NameLink
🔨 Latest commita4a9e36
🔍 Latest deploy loghttps://app.netlify.com/sites/solidstart-tanstackquery-tailwind-mod/deploys/649e76557374e60008e1fcaf

@sonarqubecloud

Copy link
Copy Markdown

Kudos, SonarCloud Quality Gate passed! Quality Gate passed

BugA0 Bugs
VulnerabilityA0 Vulnerabilities
Security HotspotA0 Security Hotspots
Code SmellA0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@dependabot@github

dependabotBot commented on behalf of githubJul 13, 2023

Copy link
Copy Markdown
Author

Superseded by #1859.

@dependabotdependabotBot closed this Jul 13, 2023
@dependabot
dependabotBot deleted the dependabot/npm_and_yarn/starter-dev-e2e/semver-7.5.3 branch July 13, 2023 12:34
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants