Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 5, 2025

Bumps the production-dependencies group with 9 updates in the / directory:

Package From To
@fortawesome/fontawesome-free 6.7.2 7.1.0
async 3.2.4 3.2.6
chai 4.2.0 6.2.0
del 7.1.0 8.0.1
glob 10.4.5 11.0.3
gulp-autoprefixer 8.0.0 10.0.0
gulp-sass 5.1.0 6.0.1
gulp-sourcemaps 2.6.5 3.0.0
gulp-zip 5.0.1 6.1.0

Updates @fortawesome/fontawesome-free from 6.7.2 to 7.1.0

Release notes

Sourced from @​fortawesome/fontawesome-free's releases.

Release 7.1.0

Change log available at https://fontawesome.com/docs/changelog/

Release 7.0.1

Change log available at https://fontawesome.com/docs/changelog/

Release 7.0.0

Change log available at https://fontawesome.com/docs/changelog/

Commits

Updates async from 3.2.4 to 3.2.6

Changelog

Sourced from async's changelog.

v3.2.5

  • Ensure Error objects such as AggregateError are propagated without modification (#1920)
Commits
  • 85fb18f Version 3.2.6
  • 8c0c941 Update built files
  • 5f756b4 Fix ReDoS (#1980)
  • 39cdc9b build(deps-dev): bump karma from 6.4.3 to 6.4.4 (#1985)
  • 7b8ddeb build(deps-dev): bump @​babel/core from 7.24.7 to 7.25.2 (#1981)
  • 4634a9d build(deps-dev): bump rollup from 4.18.0 to 4.19.2 (#1982)
  • afb176c build(deps-dev): bump chai from 4.4.1 to 4.5.0 (#1983)
  • 3568a74 build(deps-dev): bump @​babel/eslint-parser from 7.24.7 to 7.25.1 (#1984)
  • 9e885fd build(deps-dev): bump babel-plugin-istanbul from 6.1.1 to 7.0.0 (#1986)
  • f9c7f2a build(deps-dev): bump semver from 7.6.2 to 7.6.3 (#1987)
  • Additional commits viewable in compare view

Updates chai from 4.2.0 to 6.2.0

Release notes

Sourced from chai's releases.

v6.2.0

What's Changed

Full Changelog: chaijs/chai@v6.1.0...v6.2.0

v6.1.0

What's Changed

Full Changelog: chaijs/chai@v6.0.2...v6.1.0

v6.0.1

What's Changed

Full Changelog: chaijs/chai@v6.0.0...v6.0.1

v6.0.0

BREAKING CHANGES

Chai is now bundled into a single file. The lib/*.js files are no longer present, and so any code that imports those files directly will need to change. The only file that can be imported now is ./index.js.

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v6.0.0

v5.3.3

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v5.3.3

v5.3.2

Reverts the removal of the bundled version of chai in 5.3.1

What's Changed

... (truncated)

Commits

Updates del from 7.1.0 to 8.0.1

Release notes

Sourced from del's releases.

v8.0.1

  • Internal changes.

sindresorhus/del@v8.0.0...v8.0.1

v8.0.0

Breaking

  • Require Node.js 18 (#161) e2e5b71

Improvements

  • Update dependencies (#161) e2e5b71

sindresorhus/del@v7.1.0...v8.0.0

Commits

Updates glob from 10.4.5 to 11.0.3

Changelog

Sourced from glob's changelog.

changeglob

11.0

  • Drop support for node before v20

10.4

  • Add includeChildMatches: false option
  • Export the Ignore class

10.3

  • Add --default -p flag to provide a default pattern
  • exclude symbolic links to directories when follow and nodir are both set

10.2

  • Add glob cli

10.1

  • Return '.' instead of the empty string '' when the current working directory is returned as a match.
  • Add posix: true option to return / delimited paths, even on Windows.

10.0.0

  • No default exports, only named exports

9.3.3

  • Upgraded minimatch to v8, adding support for any degree of nested extglob patterns.

9.3

  • Add aliases for methods. glob.sync, glob.stream, glob.stream.sync, etc.

9.2

  • Support using a custom fs object, which is passed to PathScurry
  • add maxDepth option
  • add stat option
  • add custom Ignore support

9.1

... (truncated)

Commits

Updates gulp-autoprefixer from 8.0.0 to 10.0.0

Release notes

Sourced from gulp-autoprefixer's releases.

v10.0.0

Breaking

  • Require Node.js 20 de36be2

Fixes

  • Fix sourcemap preservation for multiple source files e4a6bbb

sindresorhus/gulp-autoprefixer@v9.0.0...v10.0.0

v9.0.0

Breaking

  • Require Node.js 18 66cef58
  • This package is now pure ESM. Please read this.

sindresorhus/gulp-autoprefixer@v8.0.0...v9.0.0

Commits

Updates gulp-sass from 5.1.0 to 6.0.1

Release notes

Sourced from gulp-sass's releases.

v6.0.1

Fixes

v6.0.0

First and foremost a huge shout out to @​wkillerud for making this long awaited release possible <3

Breaking changes

Documentation

Upgrading to v6

gulp-sass version 6 uses the new compile function internally by default. If you use any options, for instance custom importers, please compare the new options with the legacy options in order to migrate. For instance, the outputStyle option is now called style.

  function buildStyles() {
    return gulp.src('./sass/**/*.scss')
-     .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError))
+     .pipe(sass({style: 'compressed'}).on('error', sass.logError))
      .pipe(gulp.dest('./css'));
  };

If you want to keep using the legacy API while it's available, you can.

const sass = require('gulp-sass/legacy')(require('sass'));

or to continue using node-sass

npm install gulp-sass node-sass
const sass = require('gulp-sass/legacy')(require('node-sass'));

If you use source maps, you may see the result change somewhat. The result will typically be absolute file: URLs, rather than relative ones. The result may also be the source itself, URL encoded. You can optionally add custom importers to adjust the source maps according to your own needs.

New Contributors

Full Changelog: dlmanning/gulp-sass@v5.1.0...v6.0.0

Changelog

Sourced from gulp-sass's changelog.

v6.0.1

March 5, 2025

https://github.com/dlmanning/gulp-sass/releases/tag/v6.0.1

v6.0.0

November 27, 2024

https://github.com/dlmanning/gulp-sass/releases/tag/v6.0.0

v5.0.0

June 25, 2021

https://github.com/dlmanning/gulp-sass/releases/tag/v5.0.0

v4.1.1

June 24, 2021

https://github.com/dlmanning/gulp-sass/releases/tag/v4.1.1

v4.1.0

April 23, 2020

https://github.com/dlmanning/gulp-sass/releases/tag/v4.1.0

v4.0.2

October 16, 2018

https://github.com/dlmanning/gulp-sass/releases/tag/v4.0.2

v4.0.1

Apr 8, 2018

https://github.com/dlmanning/gulp-sass/releases/tag/v4.0.1

v4.0.0

April 5, 2018

https://github.com/dlmanning/gulp-sass/releases/tag/v4.0.0

v3.2.1

... (truncated)

Commits

Updates gulp-sourcemaps from 2.6.5 to 3.0.0

Release notes

Sourced from gulp-sourcemaps's releases.

Security Fixes

Nothing changed to the overall API.

However the following security fixes lead to the following:

Commits
  • 2bcfcbb 3.0.0
  • d8bed0c Merge pull request #373 from adrian3d/update/doc-gulp-4
  • 5686db3 Merge pull request #380 from kennyr87/gh-378/upgrade-css
  • 2c66b2c Depdenency: Upgrade css to v3.0.0
  • 9a9289b Breaking: Drop Node <6 support & upgrade identity-map which uses changes CSS ...
  • 11d1e31 Update doc to gulp 4
  • bd0aeb0 Docs: Temporarily point at phated/gulp-sourcemaps for AppVeyor badge
  • 7e69e97 Build: Ensure tests pass on Windows
  • 404eb5b Docs: Update badges
  • 8a22ecc Scaffold: Convert repository to use gulp patterns (closes #357) (#367)
  • See full diff in compare view

Updates gulp-zip from 5.0.1 to 6.1.0

Release notes

Sourced from gulp-zip's releases.

v6.1.0

  • Update dependencies (#126) 2cb2061

sindresorhus/gulp-zip@v6.0.0...v6.1.0

v6.0.0

Breaking

  • Require Node.js 18 ccd0a32
  • This package is now pure ESM. Please read this.

sindresorhus/gulp-zip@v5.1.0...v6.0.0

v5.1.0

  • Add support for streaming output with option (#118) ca2e4f7

sindresorhus/gulp-zip@v5.0.2...v5.1.0

v5.0.2

  • Fix creating unusable ZIP files on Windows (#117) 20106c8

sindresorhus/gulp-zip@v5.0.1...v5.0.2

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… with 9 updates

Bumps the production-dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@fortawesome/fontawesome-free](https://github.com/FortAwesome/Font-Awesome) | `6.7.2` | `7.1.0` |
| [async](https://github.com/caolan/async) | `3.2.4` | `3.2.6` |
| [chai](https://github.com/chaijs/chai) | `4.2.0` | `6.2.0` |
| [del](https://github.com/sindresorhus/del) | `7.1.0` | `8.0.1` |
| [glob](https://github.com/isaacs/node-glob) | `10.4.5` | `11.0.3` |
| [gulp-autoprefixer](https://github.com/sindresorhus/gulp-autoprefixer) | `8.0.0` | `10.0.0` |
| [gulp-sass](https://github.com/dlmanning/gulp-sass) | `5.1.0` | `6.0.1` |
| [gulp-sourcemaps](https://github.com/gulp-sourcemaps/gulp-sourcemaps) | `2.6.5` | `3.0.0` |
| [gulp-zip](https://github.com/sindresorhus/gulp-zip) | `5.0.1` | `6.1.0` |



Updates `@fortawesome/fontawesome-free` from 6.7.2 to 7.1.0
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.7.2...7.1.0)

Updates `async` from 3.2.4 to 3.2.6
- [Release notes](https://github.com/caolan/async/releases)
- [Changelog](https://github.com/caolan/async/blob/master/CHANGELOG.md)
- [Commits](caolan/async@v3.2.4...v3.2.6)

Updates `chai` from 4.2.0 to 6.2.0
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@4.2.0...v6.2.0)

Updates `del` from 7.1.0 to 8.0.1
- [Release notes](https://github.com/sindresorhus/del/releases)
- [Commits](sindresorhus/del@v7.1.0...v8.0.1)

Updates `glob` from 10.4.5 to 11.0.3
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v10.4.5...v11.0.3)

Updates `gulp-autoprefixer` from 8.0.0 to 10.0.0
- [Release notes](https://github.com/sindresorhus/gulp-autoprefixer/releases)
- [Commits](sindresorhus/gulp-autoprefixer@v8.0.0...v10.0.0)

Updates `gulp-sass` from 5.1.0 to 6.0.1
- [Release notes](https://github.com/dlmanning/gulp-sass/releases)
- [Changelog](https://github.com/dlmanning/gulp-sass/blob/master/CHANGELOG.md)
- [Commits](dlmanning/gulp-sass@v5.1.0...v6.0.1)

Updates `gulp-sourcemaps` from 2.6.5 to 3.0.0
- [Release notes](https://github.com/gulp-sourcemaps/gulp-sourcemaps/releases)
- [Commits](gulp-sourcemaps/gulp-sourcemaps@v2.6.5...v3.0.0)

Updates `gulp-zip` from 5.0.1 to 6.1.0
- [Release notes](https://github.com/sindresorhus/gulp-zip/releases)
- [Commits](sindresorhus/gulp-zip@v5.0.1...v6.1.0)

---
updated-dependencies:
- dependency-name: "@fortawesome/fontawesome-free"
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: async
  dependency-version: 3.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: chai
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: del
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: glob
  dependency-version: 11.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: gulp-autoprefixer
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: gulp-sass
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: gulp-sourcemaps
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: gulp-zip
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 5, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 6, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 6, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-0c37bbf7fa branch October 6, 2025 15:24
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 javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants