Skip to content

Bump form-data, postcss-image-inliner, gulp-sass and jsdom#17

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-23d3c1c820
Open

Bump form-data, postcss-image-inliner, gulp-sass and jsdom#17
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-23d3c1c820

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 21, 2026

Copy link
Copy Markdown

Removes form-data. It's no longer used after updating ancestor dependencies form-data, postcss-image-inliner, gulp-sass and jsdom. These dependencies need to be updated together.

Removes form-data

Updates postcss-image-inliner from 2.0.0 to 2.0.3

Release notes

Sourced from postcss-image-inliner's releases.

v2.0.3

  • Merge pull request #226 from XhmikosR/v2.x d4f06c2
  • Switch to using xo directly. 6040336
  • Minor ES6 tweaks. 120efec
  • Merge pull request #222 from XhmikosR/v2.x b943218
  • Update dependencies. 9ddc400
  • [2.x] Switch to GitHub Actions CI. (#221) 2a76cc9
  • Switch to GitHub Actions CI. 5f97496

bezoerb/postcss-image-inliner@v2.0.2...v2.0.3

Thanks again to @​XhmikosR :)

v2.0.2

  • Bump deps 7cea88f
  • [2.x] Update dependencies. (#219) 3feac8a
  • Update dependencies. 27cbe33

bezoerb/postcss-image-inliner@v2.0.1...v2.0.2

v2.0.1

  • fix: uses npm install on appveyor node 6 6611aa8
  • Adds windows tests for 2.x e9a3993
  • Merge remote-tracking branch 'patchstream/2.x' into v2.x 69f01b4
  • Add a .gitattributes file and enforce LF. 61ec964
  • Remove the moot .npmignore file. (#211) 618596e
  • Test more Node.js versions on Travis. 262a89c
  • Lint test/test.js. a30d313
  • Remove gulp and use npm scripts. 4c4264d
  • Remove yarn.lock 6d55a9d
  • Update dependencies to fix security vulnerabilities. 6c5ffac
  • Fixes vulnerabilities addc368

bezoerb/postcss-image-inliner@v2.0.0...v2.0.1

Thanks to @​XhmikosR

Changelog

Sourced from postcss-image-inliner's changelog.

v3.0.1 / 2019-06-14

  • Test node 12
  • Bump dependencies

v3.0.0 / 2019-01-19

  • Rewrite
  • Drop node support < 8
Commits

Updates gulp-sass from 4.0.1 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

... (truncated)

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

Commits

Updates jsdom from 12.2.0 to 29.1.1

Release notes

Sourced from jsdom's releases.

v29.1.1

  • Fixed 'border-radius' computed style serialization. (@​asamuzaK)
  • Fixed computed style computation when using 'background-origin' and 'background-clip' CSS properties. (@​asamuzaK)
  • Significantly optimized initial calls to getComputedStyle(), before the cache warms up. (@​asamuzaK)

v29.1.0

  • Added basic support for the ratio CSS type. (@​asamuzaK)
  • Fixed getComputedStyle() sometimes returning outdated results after CSS was modified. (@​asamuzaK)

v29.0.2

  • Significantly improved and sped up getComputedStyle(). Computed value rules are now applied across a broader set of properties, and include fixes related to inheritance, defaulting keywords, custom properties, and color-related values such as currentcolor and system colors. (@​asamuzaK)
  • Fixed CSS 'background' and 'border' shorthand parsing. (@​asamuzaK)

v29.0.1

  • Fixed CSS parsing of 'border', 'background', and their sub-shorthands containing keywords or var(). (@​asamuzaK)
  • Fixed getComputedStyle() to return a more functional CSSStyleDeclaration object, including indexed access support, which regressed in v29.0.0.

v29.0.0

Breaking changes:

  • Node.js v22.13.0+ is now the minimum supported v22 version (was v22.12.0+).

Other changes:

  • Overhauled the CSSOM implementation, replacing the @acemir/cssom and cssstyle dependencies with fresh internal implementations built on webidl2js wrappers and the css-tree parser. Serialization, parsing, and API behavior is improved in various ways, especially around edge cases.
  • Added CSSCounterStyleRule and CSSNamespaceRule to jsdom Windows.
  • Added cssMediaRule.matches and cssSupportsRule.matches getters.
  • Added proper media query parsing in MediaList, using css-tree instead of naive comma-splitting. Invalid queries become "not all" per spec.
  • Added cssKeyframeRule.keyText getter/setter validation.
  • Added cssStyleRule.selectorText setter validation: invalid selectors are now rejected.
  • Added styleSheet.ownerNode, styleSheet.href, and styleSheet.title.
  • Added bad port blocking per the fetch specification, preventing fetches to commonly-abused ports.
  • Improved Document initialization performance by lazily initializing the CSS selector engine, avoiding ~0.5 ms of overhead per Document. (@​thypon)
  • Fixed a memory leak when stylesheets were removed from the document.
  • Fixed CSSStyleDeclaration modifications to properly trigger custom element reactions.
  • Fixed nested @media rule parsing.
  • Fixed CSSStyleSheet's "disallow modification" flag not being checked in all mutation methods.
  • Fixed XMLHttpRequest's response getter returning parsed JSON during the LOADING state instead of null.
  • Fixed getComputedStyle() crashing in XHTML documents when stylesheets contained at-rules such as @page or @font-face.
  • Fixed a potential hang in synchronous XMLHttpRequest caused by a race condition with the worker thread's idle timeout.

v28.1.0

  • Added blob.text(), blob.arrayBuffer(), and blob.bytes() methods.
  • Improved getComputedStyle() to account for CSS specificity when multiple rules apply. (@​asamuzaK)
  • Improved synchronous XMLHttpRequest performance by using a persistent worker thread, avoiding ~400ms of setup overhead on every synchronous request after the first one.
  • Improved performance of node.getRootNode(), node.isConnected, and event.dispatchEvent() by caching the root node of document-connected trees.
  • Fixed getComputedStyle() to correctly handle !important priority. (@​asamuzaK)
  • Fixed document.getElementById() to return the first element in tree order when multiple elements share the same ID.
  • Fixed <svg> elements to no longer incorrectly proxy event handlers to the Window.
  • Fixed FileReader event timing and fileReader.result state to more closely follow the spec.

... (truncated)

Commits
  • 9b9ea7e 29.1.1
  • 07efb78 Optimize computed style comparison
  • 5f66329 Fix background-origin/background-clip in background shorthand
  • ad8af77 Fix border shorthand handling
  • 5a3e88e 29.1.0
  • 73db204 Update dependencies and dev dependencies
  • a7168a5 Support ratio CSS unit type
  • 15346e0 Fix style cache invalidation
  • 2a1e2cd 29.0.2
  • 4097d66 Resolve computed CSS values lazily in CSSStyleDeclaration
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for jsdom since your current version.

Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


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

Removes [form-data](https://github.com/form-data/form-data). It's no longer used after updating ancestor dependencies [form-data](https://github.com/form-data/form-data), [postcss-image-inliner](https://github.com/bezoerb/postcss-image-inliner), [gulp-sass](https://github.com/dlmanning/gulp-sass) and [jsdom](https://github.com/jsdom/jsdom). These dependencies need to be updated together.


Removes `form-data`

Updates `postcss-image-inliner` from 2.0.0 to 2.0.3
- [Release notes](https://github.com/bezoerb/postcss-image-inliner/releases)
- [Changelog](https://github.com/bezoerb/postcss-image-inliner/blob/main/CHANGELOG.md)
- [Commits](bezoerb/postcss-image-inliner@v2.0.0...v2.0.3)

Updates `gulp-sass` from 4.0.1 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@v4.0.1...v6.0.1)

Updates `jsdom` from 12.2.0 to 29.1.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Commits](jsdom/jsdom@v12.2.0...v29.1.1)

---
updated-dependencies:
- dependency-name: form-data
  dependency-version:
  dependency-type: indirect
- dependency-name: postcss-image-inliner
  dependency-version: 2.0.3
  dependency-type: indirect
- dependency-name: gulp-sass
  dependency-version: 6.0.1
  dependency-type: direct:development
- dependency-name: jsdom
  dependency-version: 29.1.1
  dependency-type: direct:development
...

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 Jun 21, 2026
@mergify

mergify Bot commented Jun 21, 2026

Copy link
Copy Markdown

Tick the box to add this pull request to the merge queue (same as @mergifyio queue).

  • Queue this pull request

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.

0 participants