Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump lodash, cypress, gulp, gulp-jshint, gulp-load-plugins, gulp-useref and gulp-vulcanize #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 24, 2023

Bumps lodash to 4.17.21 and updates ancestor dependencies lodash, cypress, gulp, gulp-jshint, gulp-load-plugins, gulp-useref and gulp-vulcanize. These dependencies need to be updated together.

Updates lodash from 4.17.10 to 4.17.21

Commits
  • f299b52 Bump to v4.17.21
  • c4847eb Improve performance of toNumber, trim and trimEnd on large input strings
  • 3469357 Prevent command injection through _.template's variable option
  • ded9bc6 Bump to v4.17.20.
  • 63150ef Documentation fixes.
  • 00f0f62 test.js: Remove trailing comma.
  • 846e434 Temporarily use a custom fork of lodash-cli.
  • 5d046f3 Re-enable Travis tests on 4.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 cypress from 3.4.1 to 13.3.3

Release notes

Sourced from cypress's releases.

v13.3.3

Changelog: https://docs.cypress.io/guides/references/changelog#13-3-3

v13.3.2

Changelog: https://docs.cypress.io/guides/references/changelog#13-3-2

v13.3.1

Changelog: https://docs.cypress.io/guides/references/changelog#13-3-1

v13.3.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-3-0

v13.2.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-2-0

v13.1.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-1-0

v13.0.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-0-0

v12.17.4

Changelog: https://docs.cypress.io/guides/references/changelog#12-17-4

v12.17.3

Changelog: https://docs.cypress.io/guides/references/changelog#12-17-3

v12.17.2

Changelog: https://docs.cypress.io/guides/references/changelog#12-17-2

v12.17.1

Changelog: https://docs.cypress.io/guides/references/changelog#12-17-1

v12.17.0

Changelog: https://docs.cypress.io/guides/references/changelog#12-17-0

v12.16.0

Changelog: https://docs.cypress.io/guides/references/changelog#12-16-0

v12.15.0

Changelog: https://docs.cypress.io/guides/references/changelog#12-15-0

v12.14.0

Changelog: https://docs.cypress.io/guides/references/changelog#12-14-0

v12.13.0

Changelog: https://docs.cypress.io/guides/references/changelog#12-13-0

v12.12.0

Changelog: https://docs.cypress.io/guides/references/changelog#12-12-0

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by cypress-npm-publisher, a new releaser for cypress since your current version.


Updates gulp from 3.9.1 to 4.0.2

Release notes

Sourced from gulp's releases.

v4.0.2

Fix

Docs

  • Add notes about esm support (4091bd3) - Closes #2278
  • Fix the Negative Globs section & examples (3c66d95) - Closes #2297
  • Remove next tag from recipes (1693a11) - Closes #2277
  • Add default task wrappers to Watching Files examples to make runnable (d916276) - Closes #2322
  • Fix syntax error in lastRun API docs (ea52a92) - Closes #2315
  • Fix typo in Explaining Globs (5d81f42) - Closes #2326

Build

  • Add node 12 to Travis & Azure (b4b5a68)

v4.0.1

Fix

Docs

  • Fix error in ES2015 usage example (a4e8d48) - Closes #2099 #2100
  • Add temporary notice for 4.0.0 vs 3.9.1 documentation (126423a) - Closes #2121
  • Improve recipe for empty glob array (45830cf) - Closes #2122
  • Reword standard to default (b065a13)
  • Fix recipe typo (86acdea) - Closes #2156
  • Add front-matter to each file (d693e49) - Closes #2109
  • Rename "Getting Started" to "Quick Start" & update it (6a0fa00)
  • Add "Creating Tasks" documentation (21b6962)
  • Add "JavaScript and Gulpfiles" documentation (31adf07)
  • Add "Working with Files" documentation (50fafc6)
  • Add "Async Completion" documentation (ad8b568)
  • Add "Explaining Globs" documentation (f8cafa0)
  • Add "Using Plugins" documentation (233c3f9)
  • Add "Watching Files" documentation (f3f2d9f)
  • Add Table of Contents to "Getting Started" directory (a43caf2)
  • Improve & fix parts of Getting Started (84b0234)
  • Create and link-to a "docs missing" page for LINK_NEEDED references (2bd75d0)
  • Redirect users to new Getting Started guides (53e9727)
  • Temporarily reference gulp@next in Quick Start (2cecf1e)
  • Fixed a capitalization typo in a heading (3d051d8) - Closes #2242
  • Use h2 headers within Quick Start documentation (921312c) - Closes #2241
  • Fix for nested directories references (4c2b9a7)
  • Add some more cleanup for Docusaurus (6a8fd8f)
  • Temporarily point LINK_NEEDED references to documentation-missing.md (df7cdcb)
  • API documentation improvements based on feedback (0a68710)

... (truncated)

Changelog

Sourced from gulp's changelog.

gulp changelog

4.0.0

Task system changes

  • replaced 3.x task system (orchestrator) with new task system (bach)
    • removed gulp.reset
    • removed 3 argument syntax for gulp.task
    • gulp.task should only be used when you will call the task with the CLI
    • added gulp.series and gulp.parallel methods for composing tasks. Everything must use these now.
    • added single argument syntax for gulp.task which allows a named function to be used as the name of the task and task function.
    • added gulp.tree method for retrieving the task tree. Pass { deep: true } for an archy compatible node list.
    • added gulp.registry for setting custom registries.

CLI changes

  • split CLI out into a module if you want to save bandwidth/disk space. you can install the gulp CLI using either npm install gulp -g or npm install gulp-cli -g, where gulp-cli is the smaller one (no module code included)
  • add --tasks-json flag to CLI to dump the whole tree out for other tools to consume
  • added --verify flag to check the dependencies in package.json against the plugin blacklist.

vinyl/vinyl-fs changes

  • added gulp.symlink which functions exactly like gulp.dest, but symlinks instead.
  • added dirMode param to gulp.dest and gulp.symlink which allows better control over the mode of the destination folder that is created.
  • globs passed to gulp.src will be evaluated in order, which means this is possible gulp.src(['*.js', '!b*.js', 'bad.js']) (exclude every JS file that starts with a b except bad.js)
  • performance for gulp.src has improved massively
    • gulp.src(['**/*', '!b.js']) will no longer eat CPU since negations happen during walking now
  • added since option to gulp.src which lets you only match files that have been modified since a certain date (for incremental builds)
  • fixed gulp.src not following symlinks
  • added overwrite option to gulp.dest which allows you to enable or disable overwriting of existing files
Commits
  • 069350a Release: 4.0.2
  • b4b5a68 Build: Add node 12 to Travis & Azure
  • 5667666 Fix: Bind src/dest/symlink to the gulp instance to support esm exports (ref s...
  • 4091bd3 Docs: Add notes about esm support (closes #2278)
  • 3c66d95 Docs: Fix the Negative Globs section & examples (closes #2297)
  • 1693a11 Docs: Remove next tag from recipes (closes #2277)
  • d916276 Docs: Add default task wrappers to Watching Files examples to make runnable (...
  • ea52a92 Docs: Fix syntax error in lastRun API docs (closes #2315)
  • 5d81f42 Docs: Fix typo in Explaining Globs (#2326)
  • ea3bba4 Release: 4.0.1
  • 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

Updates gulp-load-plugins from 0.7.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 where module.parent is undefined. To resolve, you need to add config to the plugin when instantiated with the path to your package.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 - PR

v2.0.5

Updating dependencies

v2.0.4

Updating dependencies

v2.0.3

Updating dependencies

v2.0.2

No release notes provided.

Commits
Maintainer changes

This version was pushed to npm by jameelmoses, a new releaser for gulp-load-plugins since your current version.


Updates gulp-useref from 1.3.0 to 1.3.0

Commits

Updates gulp-vulcanize from 1.1.0 to 8.0.0

Release notes

Sourced from gulp-vulcanize's releases.

5.0.0 - Preserve directory structure in destination directory

Previously it outputted your files at the top level destination directory even though the source files were nested.

It will now correctly preserve the directory structure in the destination directory.

This is a breaking change if you have your source files nested.

Fixes #12

Commits

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.

…ef and gulp-vulcanize

Bumps [lodash](https://github.com/lodash/lodash) to 4.17.21 and updates ancestor dependencies [lodash](https://github.com/lodash/lodash), [cypress](https://github.com/cypress-io/cypress), [gulp](https://github.com/gulpjs/gulp), [gulp-jshint](https://github.com/spalger/gulp-jshint), [gulp-load-plugins](https://github.com/jackfranklin/gulp-load-plugins), [gulp-useref](https://github.com/jonkemp/gulp-useref) and [gulp-vulcanize](https://github.com/sindresorhus/gulp-vulcanize). These dependencies need to be updated together.


Updates `lodash` from 4.17.10 to 4.17.21
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.10...4.17.21)

Updates `cypress` from 3.4.1 to 13.3.3
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/cypress-io/cypress/compare/@cypress/webpack-dev-server-v3.4.1...v13.3.3)

Updates `gulp` from 3.9.1 to 4.0.2
- [Release notes](https://github.com/gulpjs/gulp/releases)
- [Changelog](https://github.com/gulpjs/gulp/blob/master/CHANGELOG.md)
- [Commits](gulpjs/gulp@v3.9.1...v4.0.2)

Updates `gulp-jshint` from 1.12.0 to 2.1.0
- [Changelog](https://github.com/spalger/gulp-jshint/blob/master/CHANGELOG.md)
- [Commits](spalger/gulp-jshint@v1.12.0...v2.1.0)

Updates `gulp-load-plugins` from 0.7.1 to 2.0.8
- [Release notes](https://github.com/jackfranklin/gulp-load-plugins/releases)
- [Commits](jackfranklin/gulp-load-plugins@0.7.1...v2.0.8)

Updates `gulp-useref` from 1.3.0 to 1.3.0
- [Commits](jonkemp/gulp-useref@v1.3.0...v1.3.0)

Updates `gulp-vulcanize` from 1.1.0 to 8.0.0
- [Release notes](https://github.com/sindresorhus/gulp-vulcanize/releases)
- [Commits](sindresorhus/gulp-vulcanize@v1.1.0...v8.0.0)

---
updated-dependencies:
- dependency-name: lodash
  dependency-type: indirect
- dependency-name: cypress
  dependency-type: direct:development
- dependency-name: gulp
  dependency-type: direct:development
- dependency-name: gulp-jshint
  dependency-type: direct:development
- dependency-name: gulp-load-plugins
  dependency-type: direct:development
- dependency-name: gulp-useref
  dependency-type: direct:development
- dependency-name: gulp-vulcanize
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
0 participants