Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 8, 2024

Bumps the npm-development-modules-updates group in /frontend with 14 updates:

Package From To
autoprefixer-core 5.2.1 6.0.1
browser-sync 2.29.3 3.0.2
del 2.2.2 7.1.0
gulp 3.9.1 5.0.0
gulp-add-src 0.2.0 1.0.0
gulp-file-include 0.10.0 2.3.0
gulp-if 1.2.5 3.0.0
gulp-imagemin 2.4.0 9.1.0
gulp-postcss 5.1.10 10.0.0
gulp-rename 1.4.0 2.0.0
gulp-sass 2.3.2 5.1.0
gulp-uglify 1.5.4 3.0.2
imagemin-pngquant 4.2.2 10.0.0
rimraf 2.7.1 5.0.5

Updates autoprefixer-core from 5.2.1 to 6.0.1

Commits

Updates browser-sync from 2.29.3 to 3.0.2

Release notes

Sourced from browser-sync's releases.

v3.0.2

What's Changed

New Contributors

Full Changelog: BrowserSync/browser-sync@v3.0.1...v3.0.2

v3.0.1

⚠️ Breaking

What's Changed

Full Changelog: BrowserSync/browser-sync@v2.29.3...v3.0.1

Commits

Updates del from 2.2.2 to 7.1.0

Release notes

Sourced from del's releases.

v7.1.0

  • Add path to onProgress event (#155) f5d31e6

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

v7.0.0

Breaking

  • Require Node.js 14 (#143) 106d7d8
  • This package is now pure ESM. Please read this.
  • Moved from a default export to named exports:
    • require('del')import {deleteAsync} from 'del'
    • require('del').syncimport {deleteSync} from 'del'

sindresorhus/del@v6.1.1...v7.0.0

v6.1.1

  • Fix ProgressData#deletedCount (#142) 7b4c881

sindresorhus/del@v6.1.0...v6.1.1

v6.1.0

sindresorhus/del@v6.0.0...v6.1.0

v6.0.0

Breaking

  • Require Node.js 10 6c99805

Improvements

  • Update dependencies 6c99805

sindresorhus/del@v5.1.0...v6.0.0

v5.1.0

Enhancements:

  • Allow non-glob patterns with backslash on Windows (like v4) (#100) 01da91f
  • Make deletion more reliable on Windows by retrying when Windows is being difficult (#108) 1299747
  • Sort removed files, so the returned array is always stable (#102) ca05c65

Fixes:

  • Fix the cwd option (#96) ffbf4c4
  • Prevent race condition on macOS when deleting files (#95) 8efdbcd

sindresorhus/del@v5.0.0...v5.1.0


... (truncated)

Commits

Updates gulp from 3.9.1 to 5.0.0

Release notes

Sourced from gulp's releases.

gulp v5.0.0

We've tried to provide a high-level changelog for gulp v5 below, but it doesn't contain all changes from the 60+ dependencies that we maintain.

Please see individual changelogs to drill down into all changes that were made.

⚠ BREAKING CHANGES

  • Drop support for Node.js <10.13
  • Default stream encoding to UTF-8
  • Standardized on anymatch library for globbing paths. All globs should work the same between src and watch now!
  • Removed support for ordered globs. This aligns with the chokidar globbing implementation. If you need your globs to be ordered, you can use ordered-read-stream
  • All globs and paths are normalized to unix-like filepaths
  • Only allow JS variants for .gulp.* config files
  • Removed support for alpha releases of v4 from gulp-cli
  • Removed the --verify flag
  • Renamed the --require flag to --preload to avoid conflicting with Node.js flags
  • Removed many legacy and deprecated loaders
  • Upgrade to chokidar v3
  • Clone Vinyl objects with stream contents using teex, but no longer wait for all streams to flow before cloned streams will receive data
  • Stop using process.umask() to make directories, instead falling back to Node's default mode
  • Throw on non-function, non-string option coercers
  • Drop support of Node.js snake_case flags
  • Use a Symbol for attaching the gulplog namespace to the store
  • Use a Symbol for attaching the gulplog store to the global
  • Use sha256 to hash the v8flags cache into a filename

Features

  • Streamlined the dependency tree
  • Switch all streams implementation to Streamx
  • Rewrote glob-stream to use a custom directory walk that relies on newer Node.js features and is more performant than old implementation
  • Implement translation support for all CLI messages and all messages passing through gulplog
  • Allow users to customize or remove the timestamp from their logs
  • Upgraded gulplog to v2. Messages logged via v1 will also display a deprecated warning. Plugins should update to v2 as the community upgrades to gulp 5
  • Added support for gulpile.cjs and gulpfile.mjs
  • Add support for swc, esbuild, sucrase, and mdx loaders
  • Provide an ESM export (#2760) (b00de68)
  • Support sourcemap handling on streaming Vinyl contents
  • Support extends syntax for .gulp.* config file
  • Allow overriding gulpfile and preloads via .gulp.* config file

Bug Fixes

  • Resolve bugs related to symlinks on various platforms
  • Resolved some reported ReDoS CVEs and improved performance in glob-parent
  • Rework errors surfaced when encountering files or symlinks when trying to create directories
  • Ensure watch allows japanese characters in globs (72668c6)

... (truncated)

Changelog

Sourced from gulp's changelog.

5.0.0 (2024-03-29)

We've tried to provide a high-level changelog for gulp v5 below, but it doesn't contain all changes from the 60+ dependencies that we maintain.

Please see individual changelogs to drill down into all changes that were made.

⚠ BREAKING CHANGES

  • Drop support for Node.js <10.13
  • Default stream encoding to UTF-8
  • Standardized on anymatch library for globbing paths. All globs should work the same between src and watch now!
  • Removed support for ordered globs. This aligns with the chokidar globbing implementation. If you need your globs to be ordered, you can use ordered-read-stream
  • All globs and paths are normalized to unix-like filepaths
  • Only allow JS variants for .gulp.* config files
  • Removed support for alpha releases of v4 from gulp-cli
  • Removed the --verify flag
  • Renamed the --require flag to --preload to avoid conflicting with Node.js flags
  • Removed many legacy and deprecated loaders
  • Upgrade to chokidar v3
  • Clone Vinyl objects with stream contents using teex, but no longer wait for all streams to flow before cloned streams will receive data
  • Stop using process.umask() to make directories, instead falling back to Node's default mode
  • Throw on non-function, non-string option coercers
  • Drop support of Node.js snake_case flags
  • Use a Symbol for attaching the gulplog namespace to the store
  • Use a Symbol for attaching the gulplog store to the global
  • Use sha256 to hash the v8flags cache into a filename

Features

  • Streamlined the dependency tree
  • Switch all streams implementation to Streamx
  • Rewrote glob-stream to use a custom directory walk that relies on newer Node.js features and is more performant than old implementation
  • Implement translation support for all CLI messages and all messages passing through gulplog
  • Allow users to customize or remove the timestamp from their logs
  • Upgraded gulplog to v2. Messages logged via v1 will also display a deprecated warning. Plugins should update to v2 as the community upgrades to gulp 5
  • Added support for gulpile.cjs and gulpfile.mjs
  • Add support for swc, esbuild, sucrase, and mdx loaders
  • Provide an ESM export (#2760) (b00de68)
  • Support sourcemap handling on streaming Vinyl contents
  • Support extends syntax for .gulp.* config file
  • Allow overriding gulpfile and preloads via .gulp.* config file

Bug Fixes

  • Resolve bugs related to symlinks on various platforms
  • Resolved some reported ReDoS CVEs and improved performance in glob-parent
  • Rework errors surfaced when encountering files or symlinks when trying to create directories
  • Ensure watch allows japanese characters in globs (72668c6)

... (truncated)

Commits

Updates gulp-add-src from 0.2.0 to 1.0.0

Changelog

Sourced from gulp-add-src's changelog.

1.0.0 - 2018-03-28

  • Upgrade Vinyl for Node 8 LTS compatibility (#15)
Commits

Updates gulp-file-include from 0.10.0 to 2.3.0

Commits

Updates gulp-if from 1.2.5 to 3.0.0

Commits

Updates gulp-imagemin from 2.4.0 to 9.1.0

Release notes

Sourced from gulp-imagemin's releases.

v9.1.0

  • Update dependencies 127615e

sindresorhus/gulp-imagemin@v9.0.0...v9.1.0

v9.0.0

Breaking

  • Require Node.js 18 70e07e8

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

v8.0.0

sindresorhus/gulp-imagemin@v7.1.0...v8.0.0

v7.1.0

sindresorhus/gulp-imagemin@v7.0.0...v7.1.0

v7.0.0

Breaking

  • Require Node.js 10 aacca91
  • Replace jpegtran with mozjpeg in the default plugins (#336) 279a91b

sindresorhus/gulp-imagemin@v6.2.0...v7.0.0

v6.2.0

  • Add silent option (#331) 0460c78

sindresorhus/gulp-imagemin@v6.1.1...v6.2.0

v6.1.1

  • Make Gulp an optional peer dependency 165bf8b

sindresorhus/gulp-imagemin@v6.1.0...v6.1.1

v6.1.0

  • Update dependencies 92e224a

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

v6.0.0

Breaking:

  • Require Node.js 8 6e091ed

... (truncated)

Commits

Updates gulp-postcss from 5.1.10 to 10.0.0

Release notes

Sourced from gulp-postcss's releases.

10.0.0

Same changes as https://github.com/postcss/gulp-postcss/releases/tag/9.1.0, published with the major version bump because of a breaking change.

9.1.0 (deprecated)

Deprecated, republished as 10.0.0 to follow semver, because of the breaking change to drop support for node <18

  • Bump postcss-load-config to ^5.0.0
  • Ensure options are passed to plugins when using postcss.config.js #170
  • Update deps
  • Drop support for node <18
  • Add flake.nix for local dev with nix develop

9.0.1

  • Bump postcss-load-config to ^3.0.0

9.0.0

  • Bump PostCSS to 8.0
  • Drop Node 6 support
  • PostCSS is now a peer dependency

8.0.0

  • Bump PostCSS to 7.0
  • Drop Node 4 support

7.0.1

  • Drop dependency on gulp-util

7.0.0

  • Bump PostCSS to 6.0
  • Smaller module size
  • Use eslint instead of jshint

6.4.0

  • Add more details to PluginError object

6.3.0

  • Integrated with postcss-load-config
  • Added a callback to configure postcss on per-file-basis
  • Dropped node 0.10 support

6.2.0

  • Fix syntax error message for PostCSS 5.2 compatibility

6.1.1

  • Fixed the error output

6.1.0

  • Support for null files
  • Updated dependencies

... (truncated)

Commits
  • 46533ec Bump to 10.0.0
  • 77ed79a Merge pull request #187 from postcss/update-deps
  • 687f29f Bump to 9.1.0
  • c21fca9 Merge pull request #170 from JohnAlbin/pass-options-to-plugins
  • bd9d4c0 Merge pull request #186 from postcss/bump-postcss-load-config
  • 0f15414 Bump postcss-load-config
  • 83dcfcd Merge branch 'main' into pass-options-to-plugins
  • 70dfabe Release 9.0.1
  • 5d3bf7a Merge pull request #176 from postcss/switch-to-github-workflows
  • 22e8c3a Switch to github workflow for testing
  • Additional commits viewable in compare view

Updates gulp-rename from 1.4.0 to 2.0.0

Release notes

Sourced from gulp-rename's releases.

2.0.0

Breaking

  • Add the ability to use the function argument as an immutable map function (This may be breaking for users who were relying on the return value of the function being ignored)

Chores

  • Update deps
  • Switch from JSCS/JSHint to Prettier
Changelog

Sourced from gulp-rename's changelog.

v2.0.0

Breaking

  • Add the ability to use the function argument as an immutable map function (This may be breaking for users who were relying on the return value of the function being ignored)

Chores

  • Update deps
  • Switch from JSCS/JSHint to Prettier
Commits

Updates gulp-sass from 2.3.2 to 5.1.0

Release notes

Sourced from gulp-sass's releases.

v5.1.0

Huge shout out to @​XhmikosR for putting a ton of effort into this release 🎉

What's Changed

New Contributors

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

v5.0.0

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

Breaking changes

  • Require Node >= 12
  • Require Gulp 4
  • Drop dependency on the deprecate node-sass
  • Remove hardcoded default Sass compiler

Upgrading to v5

It is now required to explicitly install a Sass compiler.

npm install gulp-sass sass
</tr></table> 

... (truncated)

Changelog

Sourced from gulp-sass's changelog.

gulp-sass Changelog

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

March 24, 2018

https://github.com/dlmanning/gulp-sass/releases/tag/v3.2.1

v3.2.0

March 12, 2018

https://github.com/dlmanning/gulp-sass/releases/tag/v3.2.0

... (truncated)

Commits

Updates gulp-uglify from 1.5.4 to 3.0.2

Release notes

Sourced from gulp-uglify's releases.

v3.0.2

A relatively small maintenance release adjusting dependencies.

Features

  • Lodash is removed in favor of lighter dependencies specifically for the features used. intelli-espower-loader was also removed, as it's no longer compatible with the full suite of Node.js releases tested.

v3.0.1

A relatively small maintenance release.

Fixes

  • If the error from UglifyJS contains column information, append this to the error message (alongside the line number).
  • Buffers are now allocated with Buffer.from, ensuring Buffers never have any private information.
  • The Streams callback is only called once, even if a downstream exits in error.

v3.0.0

We're now targeting UglifyJS3, if you need to continue to use UglifyJS2, you should stay on v2.1.2.

Breaking Changes

  • The custom option "preserveComments" was removed.

    As a replacement, set the options.output.comments option directly, UglifyJS3 understands the following options:

    • "all", to attempt to keep all comments.
    • "some", to keep comments containing some license text.
    • a RegExp
    • a function that should return true or false.

    While the "some" option works for many cases, it doesn't fully match the behavior of the "license" option. Fortunately, you can pass the exported function from uglify-save-license as the comment option.

  • The "minifier" API, which you could use to provide your own UglifyJS instance has been removed. It has been replaced with the "composer" API.

v2.1.2

Bug Fixes

  • package: In the previous release devDependencies were incorrectly added as dependencies. This moves them to the correct location. (ba83a45c)

v2.1.1

Bug Fixes

  • errors: restore filenames and line information to GulpUglifyError's toString method. (c722ab9c)

v2.1.0

Minor Fixes

v2.0.1

Minor Fixes

v2.0.0

Bug Fixes

  • errors: emit errors of type GulpUglifyError (1232c3c)
  • minifer: use gulplog for the warning (5632cee)

... (truncated)

Changelog

Sourced from gulp-uglify's changelog.

As of version 2.0.0, the CHANGELOG is maintained on GitHub Releases.

Change Log

Commits
  • 7b9a7ad 3.0.2
  • a56d1c7 feat: remove lodash dependency
  • bcdda44 docs: replace pump with pipeline
  • c92197d 3.0.1
  • 27b26d4 fix(composer): invoke callback only once
  • 2c7f656 tests: import tape-catch to catch thrown errors
  • b2492c4 fix: create safe-buffers
  • a751c5a tests: convert tests to to tape harness
  • 95f17a5 feat(error): add column to error string
  • e2462fa chore(travis): update test matrix
  • Additional commits viewable in compare view

Updates imagemin-pngquant from 4.2.2 to 10.0.0

Release notes

Sourced from imagemin-pngquant's releases.

v10.0.0

Breaking

  • Require Node.js 18 981b216
  • This package is now pure ESM. Please read this.
  • It now returns Uint8Array instead of Buffer 981b216
    • Buffer is a subclass of Uint8Array, so this only affects you if you use buffer-specific methods.
  • Removed support for streams 981b216

Improvements

imagemin/imagemin-pngquant@v9.0.2...v10.0.0

v9.0.2

  • Fix the strip option (#72) 9b9f350

imagemin/imagemin-pngquant@v9.0.1...v9.0.2

v9.0.1

  • Fix issue with pngquant and exit code 99 (#71) c8e1546

imagemin/imagemin-pngquant@v9.0.0...v9.0.1

v9.0.0

  • Require Node.js 10 (#67) d285e92

imagemin/imagemin-pngquant@v8.0.0...v9.0.0

v8.0.0

Breaking:

  • Require Node.js 8 7049509

imagemin/imagemin-pngquant@v7.0.0...v8.0.0

v7.0.0

Breaking:

  • Rename floyd option to dithering and drop the nofs option 515fb7e
  • Change the quality option to accept an array of min and max elements and use fractional numbers 0e0edd2 {quality: '60-80'}{quality: [0.6, 0.8]}

Other:

  • Add TypeScript definition (#54) b2ad077
  • Update dependencies fdac781

v6.0.1

  • Don't throw on inputs larger than 10 MB (#52) 6b0e2a6
Commits

Updates rimraf from 2.7.1 to 5.0.5

Changelog

Sourced from rimraf's changelog.

5.0

  • No default export, only named exports

4.4

  • Provide Dirent or Stats object as second argument to filter

4.3

  • Return boolean indicating whether the path was fully removed
  • Add filter option
  • bin: add --verbose, -v to print files as they are deleted
  • bin: add --no-verbose, -V to not print files as they are deleted
  • bin: add -i --interactive to be prompted on each deletion
  • bin: add -I --no-interactive to not be prompted on each deletion
  • 4.3.1 Fixed inappropriately following symbolic links to directories

v4.2

  • Brought back glob support, using the new and improved glob v9

v4.1

  • Improved hybrid module with no need to look at the .default dangly bit. .default preserved as a reference to rimraf for compatibility with anyone who came to rely on it in v4.0.
  • Accept and ignore -rf and -fr arguments to the bin.

v4.0

  • Remove glob dependency entirely. This library now only accepts actual file and folder names to delete.
  • Accept array of paths or single path.
  • Windows performance and reliability improved.
  • All strategies separated into explicitly exported methods.
  • Drop support for Node.js below version 14
  • rewrite in TypeScript
  • ship CJS/ESM hybrid module
  • Error on unknown arguments to the bin. (Previously they were silently ignored.)

v3.0

  • Add --preserve-root option to executable (default true)
  • Drop support for Node.js below version 6

v2.7

... (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

Bumps the npm-development-modules-updates group in /frontend with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [autoprefixer-core](https://github.com/ai/autoprefixer-core) | `5.2.1` | `6.0.1` |
| [browser-sync](https://github.com/BrowserSync/browser-sync) | `2.29.3` | `3.0.2` |
| [del](https://github.com/sindresorhus/del) | `2.2.2` | `7.1.0` |
| [gulp](https://github.com/gulpjs/gulp) | `3.9.1` | `5.0.0` |
| [gulp-add-src](https://github.com/urish/gulp-add-src) | `0.2.0` | `1.0.0` |
| [gulp-file-include](https://github.com/haoxins/gulp-file-include) | `0.10.0` | `2.3.0` |
| [gulp-if](https://github.com/robrich/gulp-if) | `1.2.5` | `3.0.0` |
| [gulp-imagemin](https://github.com/sindresorhus/gulp-imagemin) | `2.4.0` | `9.1.0` |
| [gulp-postcss](https://github.com/postcss/gulp-postcss) | `5.1.10` | `10.0.0` |
| [gulp-rename](https://github.com/hparra/gulp-rename) | `1.4.0` | `2.0.0` |
| [gulp-sass](https://github.com/dlmanning/gulp-sass) | `2.3.2` | `5.1.0` |
| [gulp-uglify](https://github.com/terinjokes/gulp-uglify) | `1.5.4` | `3.0.2` |
| [imagemin-pngquant](https://github.com/imagemin/imagemin-pngquant) | `4.2.2` | `10.0.0` |
| [rimraf](https://github.com/isaacs/rimraf) | `2.7.1` | `5.0.5` |


Updates `autoprefixer-core` from 5.2.1 to 6.0.1
- [Commits](https://github.com/ai/autoprefixer-core/commits)

Updates `browser-sync` from 2.29.3 to 3.0.2
- [Release notes](https://github.com/BrowserSync/browser-sync/releases)
- [Changelog](https://github.com/BrowserSync/browser-sync/blob/master/CHANGELOG.md)
- [Commits](BrowserSync/browser-sync@v2.29.3...v3.0.2)

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

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

Updates `gulp-add-src` from 0.2.0 to 1.0.0
- [Release notes](https://github.com/urish/gulp-add-src/releases)
- [Changelog](https://github.com/urish/gulp-add-src/blob/master/CHANGELOG.md)
- [Commits](https://github.com/urish/gulp-add-src/commits)

Updates `gulp-file-include` from 0.10.0 to 2.3.0
- [Commits](haoxins/gulp-file-include@0.10.0...v2.3.0)

Updates `gulp-if` from 1.2.5 to 3.0.0
- [Commits](https://github.com/robrich/gulp-if/commits/3.0.0)

Updates `gulp-imagemin` from 2.4.0 to 9.1.0
- [Release notes](https://github.com/sindresorhus/gulp-imagemin/releases)
- [Commits](sindresorhus/gulp-imagemin@v2.4.0...v9.1.0)

Updates `gulp-postcss` from 5.1.10 to 10.0.0
- [Release notes](https://github.com/postcss/gulp-postcss/releases)
- [Commits](postcss/gulp-postcss@5.1.10...10.0.0)

Updates `gulp-rename` from 1.4.0 to 2.0.0
- [Release notes](https://github.com/hparra/gulp-rename/releases)
- [Changelog](https://github.com/hparra/gulp-rename/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hparra/gulp-rename/commits/v2.0.0)

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

Updates `gulp-uglify` from 1.5.4 to 3.0.2
- [Release notes](https://github.com/terinjokes/gulp-uglify/releases)
- [Changelog](https://github.com/terinjokes/gulp-uglify/blob/master/CHANGELOG.md)
- [Commits](terinjokes/gulp-uglify@v1.5.4...v3.0.2)

Updates `imagemin-pngquant` from 4.2.2 to 10.0.0
- [Release notes](https://github.com/imagemin/imagemin-pngquant/releases)
- [Commits](imagemin/imagemin-pngquant@v4.2.2...v10.0.0)

Updates `rimraf` from 2.7.1 to 5.0.5
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v2.7.1...v5.0.5)

---
updated-dependencies:
- dependency-name: autoprefixer-core
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: browser-sync
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: del
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp-add-src
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp-file-include
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp-if
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp-imagemin
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp-postcss
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp-rename
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp-sass
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: gulp-uglify
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: imagemin-pngquant
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
- dependency-name: rimraf
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-development-modules-updates
...

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 May 8, 2024
@coveralls
Copy link

Pull Request Test Coverage Report for Build 8995497150

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 89.599%

Totals Coverage Status
Change from base Build 8995496736: 0.0%
Covered Lines: 491
Relevant Lines: 548

💛 - Coveralls

Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 1, 2024

Superseded by #23.

@dependabot dependabot bot closed this Jun 1, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend/npm-development-modules-updates-89027bf77e branch June 1, 2024 04:47
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.

1 participant