Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the production-dependencies group with 11 updates:

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
glob 7.1.6 11.0.3
glob-all 3.2.1 3.3.1
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
js-yaml 3.13.1 4.1.0
node-fetch 2.7.0 3.3.2

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 glob from 7.1.6 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
Maintainer changes

This version was pushed to npm by isaacs, a new releaser for glob since your current version.


Updates glob-all from 3.2.1 to 3.3.1

Release notes

Sourced from glob-all's releases.

v3.3.1

Bump deps

3.3.0

No release notes provided.

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

Updates js-yaml from 3.13.1 to 4.1.0

Changelog

Sourced from js-yaml's changelog.

[4.1.0] - 2021-04-15

Added

  • Types are now exported as yaml.types.XXX.
  • Every type now has options property with original arguments kept as they were (see yaml.types.int.options as an example).

Changed

  • Schema.extend() now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered as abcd instead of cbad).

[4.0.0] - 2021-01-03

Changed

  • Check migration guide to see details for all breaking changes.
  • Breaking: "unsafe" tags !!js/function, !!js/regexp, !!js/undefined are moved to js-yaml-js-types package.
  • Breaking: removed safe* functions. Use load, loadAll, dump instead which are all now safe by default.
  • yaml.DEFAULT_SAFE_SCHEMA and yaml.DEFAULT_FULL_SCHEMA are removed, use yaml.DEFAULT_SCHEMA instead.
  • yaml.Schema.create(schema, tags) is removed, use schema.extend(tags) instead.
  • !!binary now always mapped to Uint8Array on load.
  • Reduced nesting of /lib folder.
  • Parse numbers according to YAML 1.2 instead of YAML 1.1 (01234 is now decimal, 0o1234 is octal, 1:23 is parsed as string instead of base60).
  • dump() no longer quotes :, [, ], (, ) except when necessary, #470, #557.
  • Line and column in exceptions are now formatted as (X:Y) instead of at line X, column Y (also present in compact format), #332.
  • Code snippet created in exceptions now contains multiple lines with line numbers.
  • dump() now serializes undefined as null in collections and removes keys with undefined in mappings, #571.
  • dump() with skipInvalid=true now serializes invalid items in collections as null.
  • Custom tags starting with ! are now dumped as !tag instead of !<!tag>, #576.
  • Custom tags starting with tag:yaml.org,2002: are now shorthanded using !!, #258.

Added

  • Added .mjs (es modules) support.
  • Added quotingType and forceQuotes options for dumper to configure string literal style, #290, #529.
  • Added styles: { '!!null': 'empty' } option for dumper (serializes { foo: null } as "foo: "), #570.
  • Added replacer option (similar to option in JSON.stringify), #339.
  • Custom Tag can now handle all tags or multiple tags with the same prefix, #385.

Fixed

  • Astral characters are no longer encoded by dump(), #587.
  • "duplicate mapping key" exception now points at the correct column, #452.
  • Extra commas in flow collections (e.g. [foo,,bar]) now throw an exception instead of producing null, #321.
  • __proto__ key no longer overrides object prototype, #164.

... (truncated)

Commits
  • 2cef47b 4.1.0 released
  • 810b149 dist rebuild
  • 2b5620e Export built-in types, type override now preserves order
  • ab31bba doc: clarify lineWidth dump options (#612)
  • ee74ce4 4.0.0 released
  • a44bb7c dist rebuild
  • aee620a Throw an error if block sequence/mapping indent contains a tab
  • f0f205b Fix parsing of invalid block mappings
  • e8cf6f6 Fix error with anchor not being assigned to an empty node
  • a583097 Shorthand tags with !! whenever possible
  • Additional commits viewable in compare view

Updates node-fetch from 2.7.0 to 3.3.2

Release notes

Sourced from node-fetch's releases.

v3.3.2

3.3.2 (2023-07-25)

Bug Fixes

v3.3.1

3.3.1 (2023-03-11)

Bug Fixes

  • release "Allow URL class object as an argument for fetch()" #1696 (#1716) (7b86e94)

v3.3.0

3.3.0 (2022-11-10)

Features

v3.2.10

3.2.10 (2022-07-31)

Bug Fixes

v3.2.9

3.2.9 (2022-07-18)

Bug Fixes

  • Headers: don't forward secure headers on protocol change (#1599) (e87b093)

v3.2.8

3.2.8 (2022-07-12)

Bug Fixes

... (truncated)

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 3, 2025
Bumps the production-dependencies group with 11 updates:

| 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` |
| [glob](https://github.com/isaacs/node-glob) | `7.1.6` | `11.0.3` |
| [glob-all](https://github.com/jpillora/node-glob-all) | `3.2.1` | `3.3.1` |
| [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` |
| [js-yaml](https://github.com/nodeca/js-yaml) | `3.13.1` | `4.1.0` |
| [node-fetch](https://github.com/node-fetch/node-fetch) | `2.7.0` | `3.3.2` |


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 `glob` from 7.1.6 to 11.0.3
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v7.1.6...v11.0.3)

Updates `glob-all` from 3.2.1 to 3.3.1
- [Release notes](https://github.com/jpillora/node-glob-all/releases)
- [Commits](https://github.com/jpillora/node-glob-all/commits/v3.3.1)

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)

Updates `js-yaml` from 3.13.1 to 4.1.0
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](nodeca/js-yaml@3.13.1...4.1.0)

Updates `node-fetch` from 2.7.0 to 3.3.2
- [Release notes](https://github.com/node-fetch/node-fetch/releases)
- [Commits](node-fetch/node-fetch@v2.7.0...v3.3.2)

---
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: glob
  dependency-version: 11.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: glob-all
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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
- dependency-name: js-yaml
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: node-fetch
  dependency-version: 3.3.2
  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 force-pushed the dependabot/npm_and_yarn/production-dependencies-6414babd62 branch from 9af72b6 to 874fea4 Compare October 5, 2025 02:01
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 5, 2025

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

@dependabot dependabot bot closed this Oct 5, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-6414babd62 branch October 5, 2025 23:39
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