') + ')', '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.4 in /starter-dev-e2e by dependabot[bot] · Pull Request #1859 · thisdot/starter.dev-github-showcases · GitHub
Skip to content

Bump semver from 7.3.7 to 7.5.4 in /starter-dev-e2e - #1859

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

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

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubJul 13, 2023

Copy link
Copy Markdown

Bumps semver from 7.3.7 to 7.5.4.

Release notes

Sourced from semver's releases.

v7.5.4

7.5.4 (2023-07-07)

Bug Fixes

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)

... (truncated)

Changelog

Sourced from semver's changelog.

7.5.4 (2023-07-07)

Bug Fixes

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

... (truncated)

Commits
  • 36cd334 chore: release 7.5.4
  • 8456d87 chore: postinstall for dependabot template-oss PR
  • dde1f00 chore: postinstall for dependabot template-oss PR
  • dffcd1b chore: bump @​npmcli/template-oss from 4.16.0 to 4.17.0
  • d619f66 chore: postinstall for dependabot template-oss PR
  • 3bc4247 chore: bump @​npmcli/template-oss from 4.15.1 to 4.16.0
  • cc6fde2 fix: trim each range set before parsing
  • 99d8287 fix: correctly parse long build ids as valid (#583)
  • 4f0f6b1 chore: fix arguments in whitespace test (#574)
  • 6bd1a37 chore: remove duplicate test in semver class (#575)
  • Additional commits viewable in compare view
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.4.
- [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.4)
---
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 Jul 13, 2023
@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for angular-ngrx-scss canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/angular-ngrx-scss/deploys/64afef33e8b4470008f99119

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

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

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/next-react-query-tailwind/deploys/64afef339351af000817d346

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for angular-apollo-tailwind canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/angular-apollo-tailwind/deploys/64afef33d5f9180008fd7b0b

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for solidjs-tailwind canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/solidjs-tailwind/deploys/64afef33b273430008c745ec

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for vue3-apollo-quasar canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/vue3-apollo-quasar/deploys/64afef3323680c0008292126

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for remix-gql-tailwind canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/remix-gql-tailwind/deploys/64afef349012d300085b464a

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

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

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/cra-rxjs-styled-components/deploys/64afef33c0df480008301b63

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for svelte-kit-scss canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/svelte-kit-scss/deploys/64afef3369970f0008094c26

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for starter-dev-backend canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/starter-dev-backend/deploys/64afef34faf1230008d8f803

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for nuxt-pinia-tailwind canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/nuxt-pinia-tailwind/deploys/64afef3399b0020008a6aca5

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

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

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/expo-zustand-styled-components/deploys/64afef347457560007cfd408

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

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

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/solidstart-tanstackquery-tailwind-mod/deploys/64afef340ef78900081ed6a5

@netlify

netlifyBot commented Jul 13, 2023

Copy link
Copy Markdown

Deploy Preview for qwik-graphql-tailwind canceled.

NameLink
🔨 Latest commit799f875
🔍 Latest deploy loghttps://app.netlify.com/sites/qwik-graphql-tailwind/deploys/64afef34bdf74d00085bb779

@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

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