Skip to content

Commit 5bf6827

Browse files
MikeMcC399aayushshah15
authored andcommitted
fix(deps): update debug to 4.3.6 (cypress-io#1224)
1 parent 6b65ac4 commit 5bf6827

File tree

9 files changed

+35
-23
lines changed

9 files changed

+35
-23
lines changed

dist/index.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -49735,14 +49735,16 @@ function useColors() {
4973549735
return false;
4973649736
}
4973749737

49738+
let m;
49739+
4973849740
// Is webkit? http://stackoverflow.com/a/16459606/376773
4973949741
// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632
4974049742
return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||
4974149743
// Is firebug? http://stackoverflow.com/a/398120/376773
4974249744
(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||
4974349745
// Is firefox >= v31?
4974449746
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
49745-
(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31) ||
49747+
(typeof navigator !== 'undefined' && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31) ||
4974649748
// Double check webkit in userAgent just in case we are in a worker
4974749749
(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/));
4974849750
}
@@ -50371,11 +50373,11 @@ function getDate() {
5037150373
}
5037250374

5037350375
/**
50374-
* Invokes `util.format()` with the specified arguments and writes to stderr.
50376+
* Invokes `util.formatWithOptions()` with the specified arguments and writes to stderr.
5037550377
*/
5037650378

5037750379
function log(...args) {
50378-
return process.stderr.write(util.format(...args) + '\n');
50380+
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + '\n');
5037950381
}
5038050382

5038150383
/**

examples/install-command/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
},
1212
"dependencies": {
1313
"arg": "5.0.0",
14-
"debug": "4.3.4"
14+
"debug": "4.3.6"
1515
}
1616
}

examples/install-command/yarn.lock

+11-4
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ dayjs@^1.10.4:
353353
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.9.tgz#9ca491933fadd0a60a2c19f6c237c03517d71d1a"
354354
integrity sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==
355355

356-
[email protected].4, debug@^4.1.1, debug@^4.3.4:
357-
version "4.3.4"
358-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
359-
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
356+
357+
version "4.3.6"
358+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b"
359+
integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
360360
dependencies:
361361
ms "2.1.2"
362362

@@ -367,6 +367,13 @@ debug@^3.1.0:
367367
dependencies:
368368
ms "^2.1.1"
369369

370+
debug@^4.1.1, debug@^4.3.4:
371+
version "4.3.4"
372+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
373+
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
374+
dependencies:
375+
ms "2.1.2"
376+
370377
delayed-stream@~1.0.0:
371378
version "1.0.0"
372379
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"

examples/install-only/package-lock.json

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/install-only/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"private": true,
99
"dependencies": {
1010
"arg": "5.0.0",
11-
"debug": "4.3.4"
11+
"debug": "4.3.6"
1212
},
1313
"devDependencies": {
1414
"cypress": "13.13.1"

examples/wait-on/package-lock.json

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/wait-on/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"private": true,
1818
"dependencies": {
1919
"arg": "5.0.0",
20-
"debug": "4.3.4"
20+
"debug": "4.3.6"
2121
},
2222
"devDependencies": {
2323
"cypress": "13.13.1"

package-lock.json

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@actions/io": "1.1.3",
3939
"@octokit/core": "4.2.0",
4040
"argument-vector": "1.0.2",
41-
"debug": "4.3.4",
41+
"debug": "4.3.6",
4242
"find-yarn-workspace-root": "2.0.0",
4343
"got": "11.8.6",
4444
"hasha": "5.2.2",

0 commit comments

Comments
 (0)