jgoboard
jgoboard copied to clipboard
Bump lodash, grunt, grunt-browserify, grunt-contrib-copy, grunt-contrib-jshint, grunt-contrib-uglify and grunt-jsdoc
Bumps lodash to 4.17.21 and updates ancestor dependencies lodash, grunt, grunt-browserify, grunt-contrib-copy, grunt-contrib-jshint, grunt-contrib-uglify and grunt-jsdoc. These dependencies need to be updated together.
Updates lodash
from 2.4.2 to 4.17.21
Release notes
Sourced from lodash's releases.
4.0.0
lodash v4.0.0
2015 was big year! Lodash became the most depended on npm package, passed 1 billion downloads, & its v3 release saw massive adoption!
The year was also one of collaboration, as discussions began on merging Lodash & Underscore. Much of Lodash v4 is proofing out the ideas from those discussions. Lodash v4 would not be possible without the collaboration & contributions of the Underscore core team. In the spirit of merging our teams have blended with several members contributing to both libraries.
For 2016 & lodash v4.0.0 we wanted to cut loose, push forward, & take things up a notch!
Modern only
With v4 we’re breaking free from old projects, old environments, & dropping old IE < 9 support!
4 kB Core
Lodash’s kitchen-sink size will continue to grow as new methods & functionality are added. However, we now offer a 4 kB (gzipped) core build that’s compatible with Backbone v1.2.4 for folks who want Lodash without lugging around the kitchen sink.
More ES6
We’ve continued to embrace ES6 with methods like _.isSymbol, added support for cloning & comparing array buffers, maps, sets, & symbols, converting iterators to arrays, & iterable
_(…)
.In addition, we’ve published an es-build & pulled babel-plugin-lodash into core to make tree-shaking a breeze.
More Modular
Pop quiz! 📣
What category path does the
bindAll
method belong to? Is itA)
require('lodash/function/bindAll')
B)require('lodash/utility/bindAll')
C)require('lodash/util/bindAll')
Don’t know? Well, with v4 it doesn’t matter because now module paths are as simple as
var bindAll = require('lodash/bindAll');
We’ve also reduced module complexity making it easier to create smaller bundles. This has helped Lodash adoption with libraries like Async & Redux!
1st Class FP
With v3 we introduced lodash-fp. We learned a lot & with v4 we decided to pull it into core.
Now you can get immutable, auto-curried, iteratee-first, data-last methods as simply as
var _ = require('lodash/fp'); var object = { 'a': 1 }; </tr></table>
... (truncated)
Commits
f299b52
Bump to v4.17.21c4847eb
Improve performance oftoNumber
,trim
andtrimEnd
on large input strings3469357
Prevent command injection through_.template
'svariable
optionded9bc6
Bump to v4.17.20.63150ef
Documentation fixes.00f0f62
test.js: Remove trailing comma.846e434
Temporarily use a custom fork oflodash-cli
.5d046f3
Re-enable Travis tests on4.17
branch.aa816b3
Remove/npm-package
.d7fbc52
Bump to v4.17.19- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by bnjmnt4n, a new releaser for lodash since your current version.
Updates grunt
from 0.4.5 to 1.6.1
Release notes
Sourced from grunt's releases.
v1.6.1
- Changelog updates 72f6f03
- Merge pull request #1755 from gruntjs/rm-dep 8d4c183
- Add recursive 1c7d483
- Merge pull request #1756 from gruntjs/downgrade-glob 2d4fd38
- Downgrade glob 902db7c
- Fix syntax 494f243
- remove mkdirp b01389e
- remove dep on rimraf and mkdirp 0072510
https://github.com/gruntjs/grunt/compare/v1.6.0...v1.6.1
v1.6.0
- Merge pull request #1750 from gruntjs/dep-update-jan28 2805dc3
- README updates 3f1e423
- Bump to 16 8fd096d
- Update more deps 42c5f95
- Bump eslint and node version 1d88050
https://github.com/gruntjs/grunt/compare/v1.5.3...v1.6.0
v1.5.3
- Merge pull request #1745 from gruntjs/fix-copy-op 572d79b
- Patch up race condition in symlink copying. 58016ff
- Merge pull request #1746 from JamieSlome/patch-1 0749e1d
- Create SECURITY.md 69b7c50
https://github.com/gruntjs/grunt/compare/v1.5.2...v1.5.3
v1.5.2
- Update Changelog 7f15fd5
- Merge pull request #1743 from gruntjs/cleanup-link b0ec6e1
- Clean up link handling 433f91b
https://github.com/gruntjs/grunt/compare/v1.5.1...v1.5.2
v1.5.1
- Merge pull request #1742 from gruntjs/update-symlink-test ad22608
- Fix symlink test 0652305
https://github.com/gruntjs/grunt/compare/v1.5.0...v1.5.1
v1.5.0
... (truncated)
Changelog
Sourced from grunt's changelog.
v1.6.1 date: 2023-01-31 changes: - Downgrades to glob 7 for Windows compatability - Removes mkdirp and rimraf in favour of node.js APIs. v1.6.0 date: 2023-01-28 changes: - Requires node.js 16+. - template.date now uses dateformat ~4.6.2. - other dependency updates such as glob, rimraf, etc. v1.5.3 date: 2022-04-23 changes: - Patch up race condition in symlink copying. v1.5.2 date: 2022-04-12 changes: - Unlink symlinks when copy destination is a symlink. v1.5.1 date: 2022-04-11 changes: - Fixed symlink destination handling. v1.5.0 date: 2022-04-10 changes: - Updated dependencies. - Add symlink handling for copying files. v1.4.1 date: 2021-05-24 changes: - Fix --preload option to be a known option - Switch to GitHub Actions v1.4.0 date: 2021-04-21 changes: - Security fixes in production and dev dependencies - Liftup/Liftoff upgrade breaking change. Update your scripts to use --preload instead of --require. Ref: https://github.com/js-cli/js-liftoff/commit/e7a969d6706e730d90abb4e24d3cb4d3bce06ddb. v1.3.0 date: 2020-08-18 changes: - Switch to use
safeLoad
for loading YML files viafile.readYAML
. - Upgrade legacy-log to ~3.0.0. - Upgrade legacy-util to ~2.0.0. v1.2.1 date: 2020-07-07 changes: - Remove path-is-absolute dependency. (PR: gruntjs/grunt#1715) v1.2.0
... (truncated)
Commits
8372e11
1.6.172f6f03
Changelog updates8d4c183
Merge pull request #1755 from gruntjs/rm-dep1c7d483
Add recursive2d4fd38
Merge pull request #1756 from gruntjs/downgrade-glob902db7c
Downgrade glob494f243
Fix syntaxb01389e
remove mkdirp0072510
remove dep on rimraf and mkdirp0afeb5c
1.6.0- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by vladikoff, a new releaser for grunt since your current version.
Updates grunt-browserify
from 3.8.0 to 6.0.0
Changelog
Sourced from grunt-browserify's changelog.
6.0.0
- Update watchify to 4.0.0
- Update browserify to 17.0.0
- Bump minimum node version to 8.10 to keep up with with watchify and chokidar
5.3.0
- Update browserify to 16.0.0
5.2.0
- New: Added
cacheFile
option for browserify-incremental support (contributed by Greg Slepak)- Update dependencies.
5.1.0
- Update dependencies. Browserify 14.0
5.0.0
Commits
fd0f242
Update browserify, bump version, changelog.c061a05
Merge pull request #413 from mdblr/mdblr/upgrade-watchify-for-nodejs-148ae8687
Upgrade watchify from 3.x to 4.xf20e21c
Version bump.30ad90d
Merge pull request #401 from zkochan/master6cb1429
fix(deps): update browserify to version 164e8eb1f
Merge pull request #399 from ChuanyuWang/master4899438
Add example to use plulgin with optionsc660306
Typo.9146bea
Add aknowledgement to changelog.- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by dirtyhairy, a new releaser for grunt-browserify since your current version.
Updates grunt-contrib-copy
from 0.5.0 to 1.0.0
Changelog
Sourced from grunt-contrib-copy's changelog.
v1.0.0: date: 2016-03-04 changes: - Bump devDependencies. - Add example of using relative path. - Point main to task and remove peerDeps. v0.8.2: date: 2015-10-19 changes: - Fix expand-less copies with multiple files. v0.8.1: date: 2015-08-20 changes: - Update
chalk
dependency. v0.8.0: date: 2015-02-20 changes: - Performance improvements. - Themode
option now also applies to directories. - Fix path issue on Windows. v0.7.0: date: 2014-10-15 changes: - Add timestamp option to disable preserving timestamp when copying. v0.6.0: date: 2014-09-17 changes: - Update chalk dependency and other devDependencies. - Preserve file timestamp when copying.
Commits
85150c7
v1.0.0ee90273
Merge pull request #271 from gruntjs/dev16b2852
Bump devDependencies.829032d
Merge pull request #268 from nalajcie/master147a84b
tests: disable testing timestamp equity under windows217819f
fix syncing utimes when copying filesade2465
Merge pull request #258 from ricog/patch-13a95e08
Add example of using relative path053e169
Merge pull request #259 from ricog/patch-253d78fa
Specify expand: true for single file tree example- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by vladikoff, a new releaser for grunt-contrib-copy since your current version.
Updates grunt-contrib-jshint
from 0.10.0 to 3.2.0
Release notes
Sourced from grunt-contrib-jshint's releases.
v3.2.0
- Merge pull request #307 from gruntjs/hotfix-main d9c3b35
- Patch Update 3.1.1 f3eb299
https://github.com/gruntjs/grunt-contrib-jshint/compare/v3.1.0...v3.2.0
v3.1.1
- Update to 3.1.1 ace956f
https://github.com/gruntjs/grunt-contrib-jshint/compare/v3.1.0...v3.1.1
v3.1.0
- update jshint to ~2.13.0 b7edf02
- Merge pull request #303 from gruntjs/dependabot/npm_and_yarn/path-parse-1.0.7 270d8dd
- Bump path-parse from 1.0.6 to 1.0.7 77dca66
- Merge pull request #301 from gruntjs/dependabot/npm_and_yarn/hosted-git-info-2.8.9 1028d82
- Bump hosted-git-info from 2.8.8 to 2.8.9 eb0314f
- Merge pull request #300 from gruntjs/dependabot/npm_and_yarn/lodash-4.17.21 337623c
- Bump lodash from 4.17.20 to 4.17.21 51e07d4
- Merge pull request #299 from gruntjs/dependabot/npm_and_yarn/y18n-4.0.1 9c08ff1
- Bump y18n from 4.0.0 to 4.0.1 7834701
- Merge pull request #298 from gruntjs/dependabot/npm_and_yarn/ini-1.3.8 d4359aa
- Bump ini from 1.3.5 to 1.3.8 52f5e31
- Add changelog 8f597c2
- Merge pull request #275 from raddevon/patch-1 fc210e7
- Merge pull request #297 from gruntjs/peer-dep 03f4302
- Remove Grunt peerDependency 01d13d2
- Merge pull request #296 from gruntjs/chalk-upt c78f6ee
- Update chalk 656f31b
- Merge pull request #295 from gruntjs/uptdate-deps-oct 16ee83d
- Update dependencies, switch to github actions df2b06d
- Merge pull request #291 from gruntjs/dependabot/npm_and_yarn/lodash-4.17.15 9bb54cd
- Bump lodash from 4.17.10 to 4.17.15 d2e4063
- Ensures errors in stdoutEqual callback are logged 7a6fec4
https://github.com/gruntjs/grunt-contrib-jshint/compare/v2.1.0...v3.1.0
v2.0.0
- Bump devDependencies.
- Drop Node.js < 6 support.
v1.1.0
No release notes provided.
v1.0.0
No release notes provided.
v0.12.0
No release notes provided.
... (truncated)
Changelog
Sourced from grunt-contrib-jshint's changelog.
v3.2.0: date: 2022-02-17 changes: - Bump dependencies, including jshint. v3.0.0: date: 2020-10-20 changes: - Bump dependencies. - Switch to GitHub actions. - Ensures errors in stdoutEqual callback are logged. - Requires Node 10+. v2.1.0: date: 2019-03-18 changes: - Bump dependencies. - Update to latest JSHint v2.0.0: date: 2018-09-22 changes: - Bump devDependencies. - Drop Node.js < 6 support. v1.1.0: date: 2016-11-23 changes: - Fix relative output - Bump minor version v1.0.0: date: 2016-02-16 changes: - Replace String prototype colors with chalk. - Update Grunt peerDep to
>=0.4.0
. v0.12.0: date: 2016-01-17 changes: - Update to JSHint ~2.9.0. v0.11.3: date: 2015-09-03 changes: - Update to JSHint ~2.8.0. v0.11.2: date: 2015-04-16 changes: - Fix default value of thereporter
option. v0.11.1: date: 2015-03-20 changes: - Fix io.js compatibility issues. - Other fixes to pathing. v0.11.0: date: 2015-01-22
... (truncated)
Commits
d9c3b35
Merge pull request #307 from gruntjs/hotfix-mainf3eb299
Patch Update 3.1.11910674
3.1.0b7edf02
update jshint to ~2.13.0270d8dd
Merge pull request #303 from gruntjs/dependabot/npm_and_yarn/path-parse-1.0.777dca66
Bump path-parse from 1.0.6 to 1.0.71028d82
Merge pull request #301 from gruntjs/dependabot/npm_and_yarn/hosted-git-info-...eb0314f
Bump hosted-git-info from 2.8.8 to 2.8.9337623c
Merge pull request #300 from gruntjs/dependabot/npm_and_yarn/lodash-4.17.2151e07d4
Bump lodash from 4.17.20 to 4.17.21- Additional commits viewable in compare view
Updates grunt-contrib-uglify
from 0.5.1 to 5.2.2
Release notes
Sourced from grunt-contrib-uglify's releases.
v5.2.2
- Set dev version for publish df82903
- update dependencies (#572) 70b6eb7
- Bump ejs from 3.1.6 to 3.1.8 (#570) a285b24
- Bump grunt from 1.5.2 to 1.5.3 (#569) 4415d58
- Update README.md efdabc7
https://github.com/gruntjs/grunt-contrib-uglify/compare/v5.2.1...v5.2.2
v5.2.1
- Update Readme 3c8d904
- update dependencies (#568) 0850dcd
- Bump minimist from 1.2.5 to 1.2.6 (#567) c27ad5f
- Fix documentation in relation to issue #565 (#566) 98b4c5f
- Bump minimist from 1.2.5 to 1.2.6 (#563) 7228446
https://github.com/gruntjs/grunt-contrib-uglify/compare/v5.1.0...v5.2.1
v5.1.0
- Update deps, v5.1.0 (#564) e410511
- Update uglify-js to v3.15.2 (#562) 2cb31be
- Fix wording in README.md (#560) 12ca0f2
- Bump path-parse from 1.0.6 to 1.0.7 (#558) 1f6a012
- Update uglify-js (#557) 0e4b1a0
- Bump hosted-git-info from 2.8.8 to 2.8.9 (#556) 9ccf10d
https://github.com/gruntjs/grunt-contrib-uglify/compare/v5.0.1...v5.1.0
v5.0.1
- Update uglify-js to v3.13.3.
v4.0.1
- Update uglify-js to v3.5.0.
- Update dependencies.
v4.0.0
- Updated all dependencies.
- Requires Node.js >= 6.
v3.4.0
No release notes provided.
v3.3.0
No release notes provided.
v3.2.1
No release notes provided.
v3.2.0
... (truncated)
Changelog
Sourced from grunt-contrib-uglify's changelog.
v5.1.0: date: 2022-03-27 changes: - Update dependencies. uglify-js ^3.15.2. - Requires node 12+. v5.0.0: date: 2020-07-16 changes: - Requires node 10+. - Update dependencies. v4.0.1: date: 2019-03-21 changes: - Update uglify-js to v3.5.0. - Update dependencies. v4.0.0: date: 2018-08-26 changes: - Update dependencies. - Requires Node.js >= 6. v3.4.0: date: 2018-07-29 changes: - Update uglify-js to v3.4.0. v3.3.0: date: 2017-12-24 changes: - Update uglify-js to v3.3.0. v3.2.1: date: 2017-11-26 changes: - Update uglify-js to v3.2.0. v3.1.0: date: 2017-09-11 changes: - Update uglify-js to v3.1.0. v3.0.1: date: 2017-05-20 changes: - Fix toplevel option. v3.0.0: date: 2017-05-12 changes: - Update uglify-js to v3.0.4. v2.3.0: date: 2017-04-05 changes: - Make CLI output less verbose. v2.2.1: date: 2017-03-31
... (truncated)
Commits
4a73c8a
5.2.2df82903
Set dev version for publish70b6eb7
update dependencies (#572)a285b24
Bump ejs from 3.1.6 to 3.1.8 (#570)4415d58
Bump grunt from 1.5.2 to 1.5.3 (#569)efdabc7
Update README.mda3f3f34
5.2.13c8d904
Update Readme0850dcd
update dependencies (#568)c27ad5f
Bump minimist from 1.2.5 to 1.2.6 (#567)- Additional commits viewable in compare view
Updates grunt-jsdoc
from 0.5.8 to 2.4.1
Release notes
Sourced from grunt-jsdoc's releases.
v2.4.1
Release notes :
Version 2.4.0
- Update to jsdoc 3.6.0 (security update)
- Increase supported node versions
2.3.1
Release Notes :
- fix version of transitive dependency marked to prevent regex dos
2.2.1
Temporary fix the version of
marked
to prevent XSS (jsdoc
should fix it to, so we will be able to remove the dependency)2.2.0
- update jsdoc to
3.5.x
branch- min required node version is now
4.2.0
2.1.1
- Change jsdoc dependency to ~3.4.0 (see #177)
version 2.1.0
- use
cross-spawn
instead ofcross-spawn-async
,- add
generating
andgenerated
grunt eventsversion 2.0.0
- the
private
option uses the default behavior,cross-spawn-async
is used instead of manual windows management- better support for config only
- peerDependency to fit grunt 1.0.0
- plugin's internal up date (jshint to eslint, new tests, etc.)
1.1.0
- update to jsdoc 3.4.0
- make
dest
/options.destination
optional when the jsdoc config is set.version 1.0.0
- breaking compatibility with 0.X.X : remove direct dependency to docstrap
- test it using node 4 and npm 3
0.6.10
- revert docstrap dependency
0.6.9
- fix bug #144
Thanks to the author of PR #146
... (truncated)
Commits
e6fd69c
Merge branch 'release-2.4.1'263b9ac
update libraries7b4c6eb
Merge pull request #187 from krampstudio/fix/security-update98c0773
update travis nodes versions22636c9
require node support over 8.16.0c5a7ad8
version updatec423cd8
[email protected] and audit fixd4dcca6
fix grunt badgea88190a
verson bump and release notes8ed02aa
Merge pull request #185 from krampstudio/fix/marked-dependency-regex-dos- Additional commits viewable in compare view
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 show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@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.