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 the build group with 3 updates #2941

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2025

Bumps the build group with 3 updates: web-ext, esbuild and sass.

Updates web-ext from 8.3.0 to 8.4.0

Release notes

Sourced from web-ext's releases.

8.4.0

main changes

  • Added: export submit-addon via package.json (#3250)
  • Updated: dependency addons-linter to 7.8.0 (#3335)
    • This version contains the JSON schemas for Firefox 135
  • Removed: remove --disable-component-update from default args (#3298)

dependencies

  • Updated: dependency @babel/runtime to 7.26.7 (#3339)
  • Updated: dependency @devicefarmer/adbkit to 3.3.8 (#3308)
  • Updated: dependency https-proxy-agent to 7.0.6 (#3322)
  • Updated: dependency jose to 5.9.6 (#3281)

dev dependencies

  • Updated: dependency @babel/cli to 7.26.4 (#3321)
  • Updated: dependency @babel/core to 7.26.7 (#3340)
  • Updated: dependency @babel/eslint-parser to 7.26.5 (#3330)
  • Updated: dependency @babel/preset-env to 7.26.7 (#3338)
  • Updated: dependency @babel/register to 7.25.9 (#3286)
  • Updated: dependency @commitlint/cli to 19.7.1 (#3343)
  • Updated: dependency @commitlint/config-conventional to 19.7.1 (#3344)
  • Updated: dependency chai-as-promised to 8.0.1 (#3311)
  • Updated: dependency chai to 5.1.2 (#3289)
  • Updated: dependency cross-spawn to 7.0.5 (#3303)
  • Updated: dependency eslint-plugin-import to 2.31.0 (#3267)
  • Updated: dependency fs-extra to 11.3.0 (#3332)
  • Updated: dependency mocha to 11.1.0 (#3334)
  • Updated: dependency nyc to 17.1.0 (#3255)
  • Updated: dependency prettier to 3.4.2 (#3319)

new contributors


See all changes: mozilla/web-ext@8.3.0...8.4.0

Commits
  • 0ab5869 8.4.0
  • f23ae59 chore(deps-dev): bump @​commitlint/cli from 19.6.0 to 19.7.1 (#3343)
  • 2436e12 chore(deps-dev): bump @​commitlint/config-conventional from 19.6.0 to 19.7.1 (...
  • 58ea561 chore(deps-dev): bump @​babel/eslint-parser from 7.25.9 to 7.26.5 (#3330)
  • 1eb22d0 chore(deps-dev): bump mocha from 11.0.1 to 11.1.0 (#3334)
  • ea39d27 chore(deps-dev): bump @​babel/preset-env from 7.26.0 to 7.26.7 (#3338)
  • 71dd59f chore(deps-dev): bump fs-extra from 11.2.0 to 11.3.0 (#3332)
  • 636d93a chore(deps): bump @​babel/runtime from 7.26.0 to 7.26.7 (#3339)
  • 114548b chore(deps-dev): bump @​babel/core from 7.26.0 to 7.26.7 (#3340)
  • 15c5fa6 docs: Add missing whitespace in program.js (#3336)
  • Additional commits viewable in compare view

Updates esbuild from 0.24.2 to 0.25.0

Release notes

Sourced from esbuild's releases.

v0.25.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.24.0 or ~0.24.0. See npm's documentation about semver for more information.

  • Restrict access to esbuild's development server (GHSA-67mh-4wv8-2f99)

    This change addresses esbuild's first security vulnerability report. Previously esbuild set the Access-Control-Allow-Origin header to * to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in the report.

    Starting with this release, CORS will now be disabled, and requests will now be denied if the host does not match the one provided to --serve=. The default host is 0.0.0.0, which refers to all of the IP addresses that represent the local machine (e.g. both 127.0.0.1 and 192.168.0.1). If you want to customize anything about esbuild's development server, you can put a proxy in front of esbuild and modify the incoming and/or outgoing requests.

    In addition, the serve() API call has been changed to return an array of hosts instead of a single host string. This makes it possible to determine all of the hosts that esbuild's development server will accept.

    Thanks to @​sapphi-red for reporting this issue.

  • Delete output files when a build fails in watch mode (#3643)

    It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.

  • Fix correctness issues with the CSS nesting transform (#3620, #3877, #3933, #3997, #4005, #4037, #4038)

    This release fixes the following problems:

    • Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using :is() to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues.

      /* Original code */
      .parent {
        > .a,
        > .b1 > .b2 {
          color: red;
        }
      }
      /* Old output (with --supported:nesting=false) */
      .parent > :is(.a, .b1 > .b2) {
      color: red;
      }
      /* New output (with --supported:nesting=false) */
      .parent > .a,
      .parent > .b1 > .b2 {
      color: red;
      }

      Thanks to @​tim-we for working on a fix.

    • The & CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered && to have the same specificity as &. With this release, this should now work correctly:

      /* Original code (color should be red) */

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2024

This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).

Commits
  • e9174d6 publish 0.25.0 to npm
  • c27dbeb fix hosts in plugin-tests.js
  • 6794f60 fix hosts in node-unref-tests.js
  • de85afd Merge commit from fork
  • da1de1b fix #4065: bitwise operators can return bigints
  • f4e9d19 switch case liveness: default is always last
  • 7aa47c3 fix #4028: minify live/dead switch cases better
  • 22ecd30 minify: more constant folding for strict equality
  • 4cdf03c fix #4053: reordering of .tsx in node_modules
  • dc71977 fix #3692: 0 now picks a random ephemeral port
  • Additional commits viewable in compare view

Updates sass from 1.83.4 to 1.84.0

Changelog

Sourced from sass's changelog.

1.84.0

  • Allow newlines in whitespace in the indented syntax.

  • Potentially breaking bug fix: Selectors with unmatched brackets now always produce a parser error. Previously, some edge cases like [foo#{"]:is(bar"}) {a: b} would compile without error, but this was an unintentional bug.

  • Fix a bug in which various Color Level 4 functions weren't allowed in plain CSS.

  • Fix the error message for @extend without a selector and possibly other parsing edge-cases in contexts that allow interpolation.

Embedded Host

  • Fixed the implementation of the SassBoolean type to adhere to the spec, now using a class instead of an interface.
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 build group with 3 updates: [web-ext](https://github.com/mozilla/web-ext), [esbuild](https://github.com/evanw/esbuild) and [sass](https://github.com/sass/dart-sass).


Updates `web-ext` from 8.3.0 to 8.4.0
- [Release notes](https://github.com/mozilla/web-ext/releases)
- [Commits](mozilla/web-ext@8.3.0...8.4.0)

Updates `esbuild` from 0.24.2 to 0.25.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.24.2...v0.25.0)

Updates `sass` from 1.83.4 to 1.84.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.83.4...1.84.0)

---
updated-dependencies:
- dependency-name: web-ext
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: build
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: build
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 10, 2025
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
Development

Successfully merging this pull request may close these issues.

0 participants