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

build(deps): bump the dependecies group with 8 updates #89

Merged
merged 1 commit into from
Feb 19, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 19, 2024

Bumps the dependecies group with 8 updates:

Package From To
@fortawesome/fontawesome-free 6.4.2 6.5.1
@primer/css 21.0.9 21.2.0
autoprefixer 10.4.16 10.4.17
dompurify 3.0.6 3.0.8
postcss 8.4.31 8.4.35
postcss-cli 10.1.0 11.0.0
postcss-import 15.1.0 16.0.1
sass 1.69.5 1.71.0

Updates @fortawesome/fontawesome-free from 6.4.2 to 6.5.1

Release notes

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

Release 6.5.1

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

Release 6.5.0

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

Commits

Updates @primer/css from 21.0.9 to 21.2.0

Release notes

Sourced from @​primer/css's releases.

v21.2.0

Minor Changes

Patch Changes

v21.1.1

Patch Changes

v21.1.0

Minor Changes

v21.0.10

Patch Changes

Changelog

Sourced from @​primer/css's changelog.

21.2.0

Minor Changes

Patch Changes

21.1.1

Patch Changes

21.1.0

Minor Changes

21.0.10

Patch Changes

Commits

Updates autoprefixer from 10.4.16 to 10.4.17

Release notes

Sourced from autoprefixer's releases.

10.4.17

  • Fixed user-select: contain prefixes.
Changelog

Sourced from autoprefixer's changelog.

10.4.17

  • Fixed user-select: contain prefixes.
Commits

Updates dompurify from 3.0.6 to 3.0.8

Release notes

Sourced from dompurify's releases.

DOMPurify 3.0.8

  • Fixed errors caused by conditional exports, thanks @​ssi02014
  • Fixed a type error when working with custom element config, thanks @​cpmotion

DOMPurify 3.0.7

  • Added better protection against CSPP attacks, thanks @​kevin-mizu
  • Updated browser versions for automated tests
  • Updated Node versions for automated tests
  • Refactored code base, thanks @​ssi02014
  • Refactored build system & deployment, thanks @​ssi02014
Commits
  • ec1346a Merge pull request #899 from cure53/main
  • b3b441e chore: Preparing 3.0.8 release
  • 486673f Merge pull request #898 from cpmotion/issue-897
  • 38e4dc3 fix: Avoid TypeError for null values on CUSTOM_ELEMENT_HANDLING config.
  • 771eb82 Merge pull request #896 from ssi02014/revert/conditionalExports
  • 2d963cf fix: revert conditional exports
  • aa2c561 Merge pull request #893 from cure53/main
  • ab2c081 chore: Preparing 3.0.7 release
  • d7498e0 Merge pull request #890 from cure53/dependabot/github_actions/github/codeql-a...
  • 813bea6 build(deps): bump github/codeql-action from 2 to 3
  • Additional commits viewable in compare view

Updates postcss from 8.4.31 to 8.4.35

Release notes

Sourced from postcss's releases.

8.4.35

  • Avoid ! in node.parent.nodes type.
  • Allow to pass undefined to node adding method to simplify types.

8.4.34

8.4.33

8.4.32

Changelog

Sourced from postcss's changelog.

8.4.35

  • Avoid ! in node.parent.nodes type.
  • Allow to pass undefined to node adding method to simplify types.

8.4.34

  • Fixed AtRule#nodes type (by Tim Weißenfels).
  • Cleaned up code (by Dmitry Kirillov).

8.4.33

  • Fixed NoWorkResult behavior difference with normal mode (by Romain Menke).
  • Fixed NoWorkResult usage conditions (by @​ahmdammarr).

8.4.32

  • Fixed postcss().process() types (by Andrew Ferreira).
Commits

Updates postcss-cli from 10.1.0 to 11.0.0

Changelog

Sourced from postcss-cli's changelog.

11.0.0 / 2023-12-05

Commits

Updates postcss-import from 15.1.0 to 16.0.1

Changelog

Sourced from postcss-import's changelog.

16.0.1 / 2024-02-14

  • Fix crash when handling some @imports with media conditions (#557, #558)

16.0.0 / 2024-01-02

  • BREAKING: Require Node.js v18+ (#550, #551)
  • BREAKING: Signifigant rewrite, with small behavioral tweaks in a number of edge cases
  • Support for @supports conditional imports added (#532, #548)
  • When skipDuplicates is false, handles import cycles correctly (#462, #535)
  • Add warnOnEmpty option to allow disabling warnings for empty files (#84, #541)
  • Use proper node.errors (#518, #540)

Huge thanks to @romainmenke for all the hard work he put into this release.

Commits

Updates sass from 1.69.5 to 1.71.0

Release notes

Sourced from sass's releases.

Dart Sass 1.71.0

To install Sass 1.71.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

For more information about pkg: importers, see the announcement on the Sass blog.

Command-Line Interface

  • Add a --pkg-importer flag to enable built-in pkg: importers. Currently this only supports the Node.js package resolution algorithm, via --pkg-importer=node. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss.

JavaScript API

  • Add a NodePackageImporter importer that can be passed to the importers option. This loads files using the pkg: URL scheme according to the Node.js package resolution algorithm. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single optional argument, which indicates the base directory to use when locating node_modules directories. It defaults to path.dirname(require.main.filename).

Dart API

  • Add a NodePackageImporter importer that can be passed to the importers option. This loads files using the pkg: URL scheme according to the Node.js package resolution algorithm. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single argument, which indicates the base directory to use when locating node_modules directories.

See the full changelog for changes in earlier releases.

Dart Sass 1.70.0

To install Sass 1.70.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

JavaScript API

  • Add a sass.initCompiler() function that returns a sass.Compiler object which supports compile() and compileString() methods with the same API as the global Sass object. On the Node.js embedded host, each sass.Compiler object uses a single long-lived subprocess, making compiling multiple stylesheets much more efficient.

  • Add a sass.initAsyncCompiler() function that returns a sass.AsyncCompiler object which supports compileAsync() and compileStringAsync() methods with the same API as the global Sass object. On the Node.js embedded host, each sass.AsynCompiler object uses a single long-lived subprocess, making compiling multiple stylesheets much more efficient.

Embedded Sass

  • Support the CompileRequest.silent field. This allows compilations with no logging to avoid unnecessary request/response cycles.

  • The Dart Sass embedded compiler now reports its name as "dart-sass" rather than "Dart Sass", to match the JS API's info field.

See the full changelog for changes in earlier releases.

Dart Sass 1.69.7

To install Sass 1.69.7, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

... (truncated)

Changelog

Sourced from sass's changelog.

1.71.0

For more information about pkg: importers, see the announcement on the Sass blog.

Command-Line Interface

  • Add a --pkg-importer flag to enable built-in pkg: importers. Currently this only supports the Node.js package resolution algorithm, via --pkg-importer=node. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss.

JavaScript API

  • Add a NodePackageImporter importer that can be passed to the importers option. This loads files using the pkg: URL scheme according to the Node.js package resolution algorithm. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single optional argument, which indicates the base directory to use when locating node_modules directories. It defaults to path.dirname(require.main.filename).

Dart API

  • Add a NodePackageImporter importer that can be passed to the importers option. This loads files using the pkg: URL scheme according to the Node.js package resolution algorithm. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single argument, which indicates the base directory to use when locating node_modules directories.

1.70.0

JavaScript API

  • Add a sass.initCompiler() function that returns a sass.Compiler object which supports compile() and compileString() methods with the same API as the global Sass object. On the Node.js embedded host, each sass.Compiler object uses a single long-lived subprocess, making compiling multiple stylesheets much more efficient.

  • Add a sass.initAsyncCompiler() function that returns a sass.AsyncCompiler object which supports compileAsync() and compileStringAsync() methods with the same API as the global Sass object. On the Node.js embedded host, each sass.AsynCompiler object uses a single long-lived subprocess, making compiling multiple stylesheets much more efficient.

Embedded Sass

... (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 dependecies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@fortawesome/fontawesome-free](https://github.com/FortAwesome/Font-Awesome) | `6.4.2` | `6.5.1` |
| [@primer/css](https://github.com/primer/css) | `21.0.9` | `21.2.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.16` | `10.4.17` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.0.6` | `3.0.8` |
| [postcss](https://github.com/postcss/postcss) | `8.4.31` | `8.4.35` |
| [postcss-cli](https://github.com/postcss/postcss-cli) | `10.1.0` | `11.0.0` |
| [postcss-import](https://github.com/postcss/postcss-import) | `15.1.0` | `16.0.1` |
| [sass](https://github.com/sass/dart-sass) | `1.69.5` | `1.71.0` |


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

Updates `@primer/css` from 21.0.9 to 21.2.0
- [Release notes](https://github.com/primer/css/releases)
- [Changelog](https://github.com/primer/css/blob/main/CHANGELOG.md)
- [Commits](primer/css@v21.0.9...v21.2.0)

Updates `autoprefixer` from 10.4.16 to 10.4.17
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.16...10.4.17)

Updates `dompurify` from 3.0.6 to 3.0.8
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.0.6...3.0.8)

Updates `postcss` from 8.4.31 to 8.4.35
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.31...8.4.35)

Updates `postcss-cli` from 10.1.0 to 11.0.0
- [Release notes](https://github.com/postcss/postcss-cli/releases)
- [Changelog](https://github.com/postcss/postcss-cli/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-cli@10.1.0...11.0.0)

Updates `postcss-import` from 15.1.0 to 16.0.1
- [Release notes](https://github.com/postcss/postcss-import/releases)
- [Changelog](https://github.com/postcss/postcss-import/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-import@15.1.0...16.0.1)

Updates `sass` from 1.69.5 to 1.71.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.69.5...1.71.0)

---
updated-dependencies:
- dependency-name: "@fortawesome/fontawesome-free"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependecies
- dependency-name: "@primer/css"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependecies
- dependency-name: autoprefixer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependecies
- dependency-name: dompurify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependecies
- dependency-name: postcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependecies
- dependency-name: postcss-cli
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependecies
- dependency-name: postcss-import
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependecies
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependecies
...

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 Feb 19, 2024
@offbyone offbyone merged commit fc0f924 into main Feb 19, 2024
2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependecies-2a485dfad9 branch February 19, 2024 16:24
This pull request was closed.
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