funnies
funnies copied to clipboard
build(deps): bump minimatch, gulp-istanbul, gulp-jscs, gulp-jshint, gulp-load-plugins, gulp-mocha, isparta and mocha
Bumps minimatch to 3.0.4 and updates ancestor dependencies minimatch, gulp-istanbul, gulp-jscs, gulp-jshint, gulp-load-plugins, gulp-mocha, isparta and mocha. These dependencies need to be updated together.
Updates minimatch
from 0.3.0 to 3.0.4
Commits
e46989a
v3.0.4ddfacbd
update brace-expansion55ed736
update package scripts and depseed8949
v3.0.3ecabc57
Do not throw on unfinished !( extglob patterns81edb7c
v3.0.26944abf
Handle extremely long and terrible patterns more gracefully8ac560e
v3.0.14f3a8bc
update tap9cf2d88
Remove mentions of cache from readme- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by isaacs, a new releaser for minimatch since your current version.
Updates gulp-istanbul
from 0.6.0 to 1.1.3
Release notes
Sourced from gulp-istanbul's releases.
v1.1.3
Fix deprecated gulp-utils usage
v1.1.2
- Bump dependencies
v1.1.1
- Fix bug preventing overwriting defaults reporters
v1.1.0
- Fix cross platform issues on Windows where paths would mismatch
- Deep extends reporter configs so you can easily pass
reportOpts
options.v1.0.0
- Add support for sourcemap (like provided by gulp-sourcemap)
- Minor fixes
v0.10.4
Bump dependencies
v0.10.3
- Fix bug when enforcing coverage threshold.
v0.10.2
Update to Istanbul 0.4 (no breaking change on their end)
v0.10.1
- Bump dependency
- Fix npm license key
- Documentation update
v0.10.0
Allow passing report options for each reporter type.
v0.9.0
New
enforceThreshold()
method to fail the build if a defined coverage threshold is not reached.v0.8.1
Fix bug occuring with the latest Istanbul release (
0.3.13
). See #55v0.8.0
You can now use custom reporters. (
istanbul.writeReports()
)v0.7.0
hookRequire()
now take an optional option object.
Commits
6ea01ce
1.1.37b74390
replaced deprecated gulp-util and fixed broken test (#129)1e3adcb
chore(package): update mocha to version 4.0.0 (#126)502855e
1.1.2ac8f966
Add documentation for reportOpts and watermarks (#121)be326d1
Update README.md to warn about gulp-mocha (#120)b0149ac
fix(package): update istanbul-threshold-checker to version 0.2.1 (#112)7ec737a
chore(package): update dependencies (#110)b047c82
Update .travis.ymla8dd45e
1.1.1- Additional commits viewable in compare view
Updates gulp-jscs
from 1.6.0 to 4.1.0
Release notes
Sourced from gulp-jscs's releases.
4.0.0
Upgrade to JSCS 3.
3.0.0
Reporters are now supported. The main
jscs()
function will no longer report anything.You can also no longer pass JSCS config into
jscs()
. JSCS config should be in an external file so other tools can also make use of it.It will now automatically load the closest
.jscsrc
file. So no longer a need to explicitly specify aconfigPath
.Change your code accordingly:
const gulp = require('gulp'); const jscs = require('gulp-jscs');
gulp.task('default', () => { return gulp.src('src/app.js')
- .pipe(jscs({configPath: '.jscsrc'}));
- .pipe(jscs())
- .pipe(jscs.reporter()); });
Changes: https://github.com/jscs-dev/gulp-jscs/compare/v2.0.0...v3.0.0
Commits
16f8afe
4.1.0f0c4b42
Drop dependency on deprecatedgulp-util
(#121)f7471e8
4.0.07face69
deps: [email protected] (#112)376e2dc
bump dev deps237d2c5
3.0.2cd4f150
Merge pull request #97 from jayeb/jayeb-patch-10fde1cc
Pass full path into Checker instead of relative81a6f88
3.0.1aa9db33
Close #93 PR: Fixed issue when "autofix" doesn't fix all files..- Additional commits viewable in compare view
Updates gulp-jshint
from 1.12.0 to 2.1.0
Changelog
Sourced from gulp-jshint's changelog.
2.0
jshint is now a peerDependency, meaning you must install it seperately
npm install jshint gulp-jshint --save-dev
Commits
32a25b0
2.1.02c57c9f
Merge pull request #157 from spalger/remove-gulp-util5f621f8
vinyl is only used in testing5eaabdd
add yarn.lock file for dev154180d
[gulp-util/PluginError] use plugin-error directly357ab98
[gulp-util/File] use Vinyl directly807bead
2.0.4aca8740
Add test to verify that default files are not brokenc277434
2.0.3711f3f0
test fix- Additional commits viewable in compare view
Updates gulp-load-plugins
from 0.8.1 to 2.0.8
Release notes
Sourced from gulp-load-plugins's releases.
v2.0.8
- Fixes #141 - module.parent deprecated in Node 14+. Thanks
@DaveyJake
- Update dependencies
If you get the error
Cannot read properties of undefined (reading 'filename')
, this is because you're using a version of node wheremodule.parent
is undefined. To resolve, you need to addconfig
to the plugin when instantiated with the path to yourpackage.json
file to read its dependencies. For example:import gulpLoadPlugins from 'gulp-load-plugins';
const $ = gulpLoadPlugins({ config: process.env.npm_package_json });
v2.0.7
Update dependencies
v2.0.6
Update dependencies and add power support for Travis on ppc64le - thanks
@dineshks1
- PRv2.0.5
Updating dependencies
v2.0.4
Updating dependencies
v2.0.3
Updating dependencies
v2.0.2
No release notes provided.
Commits
44773ae
Fixes #141 - module.parent deprecated in Node 14+7d9d7e3
v2.0.7 - Updating dependencies117eeee
update changelog1b0e333
version bump58cdc59
updating dependencies. includes #140 Adds travis jobs on ppc64le9854159
Merge pull request #140 from dineshks1/master57d03f2
Adds travis jobs on ppc64le549b585
v2.0.5 - updating deps8fdff49
Add Node 14, remove Node 8 for CId84b4d3
updating dependencies- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by jameelmoses, a new releaser for gulp-load-plugins since your current version.
Updates gulp-mocha
from 2.2.0 to 8.0.0
Release notes
Sourced from gulp-mocha's releases.
v8.0.0
Breaking
- Require Node.js 10
- Upgrade to Mocha 8 4fa531f
https://github.com/sindresorhus/gulp-mocha/compare/v7.0.2...v8.0.0
v7.0.2
- Make Gulp an optional peer dependency 8e452db
https://github.com/sindresorhus/gulp-mocha/compare/v7.0.1...v7.0.2
v7.0.1
- Fix regressions in v7 (#197) f60a346
https://github.com/sindresorhus/gulp-mocha/compare/v7.0.0...v7.0.1
v7.0.0
Breaking:
- Update Mocha (release notes) 4924437
- Require Node.js 8 and Gulp 4 4924437
https://github.com/sindresorhus/gulp-mocha/compare/v6.0.0...v7.0.0
4.0.0
- Drop support for Node.js 0.12 and 0.10.
- Now spawns the
mocha
binary instead using its broken programmatic API. This means you can use any of themocha
CLI flags (in a camelCased form). This should also fix most of the issues people have been having with this task. Thanks to@shellscape
for doing most of the work.If you were using Babel with
babel-register
in your gulpfile, you now need to use the Mochacompilers
option instead:{compilers: 'js:babel-core/register'}
. See https://babeljs.io/docs/setup/#installation
Commits
2f0b810
8.0.04fa531f
Require Node.js 10 and upgrade Mocha93e1cbc
Move to GitHub Actions (#201)94af2ed
Remove message from readme (#198)6ab007b
7.0.28e452db
Make Gulp an optional peer dependencya939d38
7.0.1f60a346
Fix regressions in v7 (#197)c1e272e
7.0.04924437
Update Mocha and require Node.js and Gulp 4- Additional commits viewable in compare view
Updates isparta
from 2.2.0 to 4.1.1
Release notes
Sourced from isparta's releases.
v4.0.0
- Babel 6.x support :rocket: #81
v3.5.3
- fix: Reverting config parsing changes to preserve .istanbul.yml functionality #84 (db1872d)
v3.5.1
- fix: Unable to pass include information to istanbul #82 (1a210ac)
v3.5.0
- chore(dependencies): Update istanbul to 0.4.0 (a804aec)
v3.4.0
- fix(cli): missing missing post-exclude for istanbul@^0.3.15 (941dc51)
v3.3.0
- chore(pkg): bump to
source-map@^0.5.0
forbabel@^5.8.25
v3.2.0
- feat: add basic support for Istanbul ignore (c001a95)
- feat: expose more options through the cli
- fix: wrong export pattern (6e00388)
- fix: clean packaged files for npm publish (e5d710b)
- docs: make the README example works on Windows (59709d5)
v3.1.0
- Use Object.assign() ponyfill (https://github.com/douglasduteil/isparta/commit/7de5cbced5eb942965e31a35e8d6f53fefa9c3bc)
- Fixed Istanbul path issue when generating coverage reports (https://github.com/douglasduteil/isparta/commit/a9363cffe5472ce39acbddc9a3a02c983cf1acdd)
- Fixed istanbul coverage saving in wrong location (https://github.com/douglasduteil/isparta/commit/f8e8df29437d407795b9ae76d5bda1d0b0ea215e)
- Use nomnomnomnom (npm fork of nomnom)
Commits
6eb1eab
chore(release): version 4.1.1f132b35
fix(pkg): update to [email protected]effff9c
chore(deps): update dependency sinon-chai to v3 (#138)f75c780
chore(deps): update dependency mocha to v5 (#136)a98be13
chore(deps): update dependency chai to v4 (#135)ae07ffc
Configure Renovate (#131)1142f35
chore(release): version 4.1.0fdcbf45
test: update expected cover to unexpected locations3763c5f
test: update compiled test files7d6a4a3
chore(test): rename index spec- Additional commits viewable in compare view
Updates mocha
from 2.5.3 to 10.1.0
Release notes
Sourced from mocha's releases.
v10.1.0
10.1.0 / 2022-10-16
:tada: Enhancements
- #4896: Browser: add support for
prefers-color-scheme: dark
(@greggman
):nut_and_bolt: Other
- #4912: Browser: increase contrast for replay buttons (
@JoshuaKGoldberg
)- #4905: Use standard
Promise.allSettled
instead of polyfill (@outsideris
)- #4899: Upgrade official GitHub actions to latest (
@ddzz
)- #4770: Fix regex in function
clean
(@yetingli
)v10.0.0
10.0.0 / 2022-05-01
:boom: Breaking Changes
#4863: Rename executable
bin/mocha
tobin/mocha.js
(@juergba
)#4865:
--ignore
option in Windows: upgrade Minimatch (@juergba
):nut_and_bolt: Other
#4876: Add Node.js v18 to CI test matrix (
@outsideris
)#4852: Replace deprecated
String.prototype.substr()
(@CommanderRoot
)Also thanks to
@ea2305
and@SukkaW
for improvements to our documentation.v9.2.2
9.2.2 / 2022-03-11
Please also note our announcements.
:bug: Fixes
... (truncated)
Changelog
Sourced from mocha's changelog.
10.1.0 / 2022-10-16
:tada: Enhancements
- #4896: Browser: add support for
prefers-color-scheme: dark
(@greggman
):nut_and_bolt: Other
- #4912: Browser: increase contrast for replay buttons (
@JoshuaKGoldberg
)- #4905: Use standard
Promise.allSettled
instead of polyfill (@outsideris
)- #4899: Upgrade official GitHub actions to latest (
@ddzz
)- #4770: Fix regex in function
clean
(@yetingli
)10.0.0 / 2022-05-01
:boom: Breaking Changes
#4863: Rename executable
bin/mocha
tobin/mocha.js
(@juergba
)#4865:
--ignore
option in Windows: upgrade Minimatch (@juergba
):nut_and_bolt: Other
#4876: Add Node.js v18 to CI test matrix (
@outsideris
)#4852: Replace deprecated
String.prototype.substr()
(@CommanderRoot
)Also thanks to
@ea2305
and@SukkaW
for improvements to our documentation.9.2.2 / 2022-03-11
:bug: Fixes
:nut_and_bolt: Other
... (truncated)
Commits
5f96d51
build(v10.1.0): releaseed74f16
build(v10.1.0): update CHANGELOG51d4746
chore(devDeps): update 'ESLint' to v8 (#4926)4e06a6f
fix(browser): increase contrast for replay buttons (#4912)41567df
Support prefers-color-scheme: dark (#4896)61b4b92
fix the regular expression for functionclean
inutils.js
(#4770)77c18d2
chore: use standard 'Promise.allSettled' instead of polyfill (#4905)84b2f84
chore(ci): upgrade GH actions to latest versions (#4899)023f548
build(v10.0.0): release62b1566
build(v10.0.0): update CHANGELOG- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by juergba, a new releaser for mocha since your current version.
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) -
@dependabot use these labels
will set the current labels as the default for future PRs for this repo and language -
@dependabot use these reviewers
will set the current reviewers as the default for future PRs for this repo and language -
@dependabot use these assignees
will set the current assignees as the default for future PRs for this repo and language -
@dependabot use this milestone
will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.