twbs / examples

Functional examples of using Bootstrap in common JS frameworks like Webpack, Parcel, Vite, and more!
MIT License
506 stars 288 forks source link

build(deps-dev): bump the development-dependencies group across 1 directory with 5 updates #490

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 2 weeks ago

Bumps the development-dependencies group with 5 updates in the /sass-js-esm directory:

Package From To
autoprefixer 10.4.19 10.4.20
postcss 8.4.39 8.4.43
sass 1.77.6 1.77.8
stylelint 16.6.1 16.9.0
stylelint-config-twbs-bootstrap 14.1.0 15.0.0

Updates autoprefixer from 10.4.19 to 10.4.20

Release notes

Sourced from autoprefixer's releases.

10.4.20

  • Fixed fit-content prefix for Firefox.
Changelog

Sourced from autoprefixer's changelog.

10.4.20

  • Fixed fit-content prefix for Firefox.
Commits


Updates postcss from 8.4.39 to 8.4.43

Release notes

Sourced from postcss's releases.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).
Changelog

Sourced from postcss's changelog.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).
Commits


Updates sass from 1.77.6 to 1.77.8

Release notes

Sourced from sass's releases.

Dart Sass 1.77.8

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

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.77.8

  • No user-visible changes.

1.77.7

  • Declarations that appear after nested rules are deprecated, because the semantics Sass has historically used are different from the semantics specified by CSS. In the future, Sass will adopt the standard CSS semantics.

    See the Sass website for details.

  • Potentially breaking bug fix: // in certain places such as unknown at-rule values was being preserved in the CSS output, leading to potentially invalid CSS. It's now properly parsed as a silent comment and omitted from the CSS output.

Commits


Updates stylelint from 16.6.1 to 16.9.0

Release notes

Sourced from stylelint's releases.

16.9.0

  • Changed: secondaryOptions argument type of the Rule function (#7950) (@​Mouvedia).
  • Fixed: color-function-notation reporting functions with less than 3 arguments (#7948) (@​Mouvedia).
  • Fixed: declaration-property-value-no-unknown false positives/negatives (#7944 & #7957 & #7956) (@​Mouvedia & @​sidverma32).
    • false positives: overflow, word-break, width
    • false negatives: anchor-name, field-sizing, text-box-edge, text-box-trim, text-spacing-trim, text-wrap, text-wrap-mode, text-wrap-style, view-timeline, view-timeline-axis, view-timeline-inset, view-timeline-name, view-transition-name
  • Fixed: keyframe-block-no-duplicate-selectors/keyframe-declaration-no-important/keyframe-selector-notation/no-unknown-animations false negatives for @-o-keyframes and @-ms-keyframes (#7953) (@​Mouvedia).
  • Fixed: no-duplicate-selectors reported ranges (#7938) (@​romainmenke).
  • Fixed: property-no-vendor-prefix report for -webkit-background-size (#7940) (@​Mouvedia).
  • Fixed: selector-class-pattern reported ranges (#7959) (@​Mouvedia).
  • Fixed: selector-no-qualifying-type reported ranges (#7937) (@​romainmenke).
  • Fixed: honour Node.js --no-deprecation flag for rule deprecation warnings (#7943) (@​Mouvedia).

16.8.2

16.8.1

16.8.0

  • Deprecated: github formatter (#7865) (@​marcalexiei).
  • Fixed: function-url-quotes false positives for SCSS variables and #/? characters (#7874) (@​vimalloc).
  • Fixed: keyframe-selector-notation false positives for entry-crossing and exit-crossing (#7859) (@​romainmenke).
  • Fixed: no-descending-specificity false positives for nested rules without declarations (#7850) (@​romainmenke).
  • Fixed: no-duplicate-selectors end positions (#7867) (@​romainmenke).
  • Fixed: no-duplicate-selectors false negatives for three or more duplicates (#7867) (@​romainmenke).
  • Fixed: selector-max-compound-selectors error for @nest (#7875) (@​romainmenke).
  • Fixed: selector-pseudo-class-no-unknown false positives for :active-view-transition and :active-view-transition-type() (#7868) (@​Mouvedia).
  • Fixed: selector-type-*, selector-max-type and selector-class-pattern false positives for <timeline-range-name> in keyframe selectors (#7856) (@​romainmenke).
  • Fixed: stylelint.utils.checkAgainstRule() regression when reportNeedlessDisables and quiet are both enabled (#7879) (@​ybiquitous).
  • Fixed: configuration comments within selector and value lists being ignored (#7839) (@​romainmenke).

16.7.0

  • Changed: tap formatter to support TAP14 (#7759) (@​Mouvedia).
  • Added: url secondary option (#7743) (@​emmacharp).
  • Fixed: at-rule-no-unknown false positives for @historical-forms and @font-palette-values (#7774) (@​Mouvedia).
  • Fixed: at-rule-no-unknown false positives for @view-transition (#7753) (@​sebdanielsson).
  • Fixed: at-rule-no-vendor-prefix false negatives for @-moz-document and @-webkit-viewport (#7772) (@​Mouvedia).
  • Fixed: comment-whitespace-inside end positions (#7744) (@​Mouvedia).
  • Fixed: declaration-block-no-duplicate-properties reported ranges (#7758) (@​Mouvedia).
  • Fixed: declaration-block-no-redundant-longhand-properties/declaration-block-no-shorthand-property-overrides false negatives for font-variant (#7734) (@​Bilie).
  • Fixed: font-family-name-quotes false negatives for -moz-*/-webkit-* keywords (#7777) (@​Mouvedia).
  • Fixed: font-family-no-missing-generic-family-keyword false negatives for font families which names match a CSS3 font-variant keyword (#7823) (@​Mouvedia).
  • Fixed: function-name-case end positions (#7747) (@​Mouvedia).

... (truncated)

Changelog

Sourced from stylelint's changelog.

16.9.0

  • Changed: secondaryOptions argument type of the Rule function (#7950) (@​Mouvedia).
  • Fixed: color-function-notation reporting functions with less than 3 arguments (#7948) (@​Mouvedia).
  • Fixed: declaration-property-value-no-unknown false positives/negatives (#7944 & #7957 & #7956) (@​Mouvedia & @​sidverma32).
    • false positives: overflow, word-break, width
    • false negatives: anchor-name, field-sizing, text-box-edge, text-box-trim, text-spacing-trim, text-wrap, text-wrap-mode, text-wrap-style, view-timeline, view-timeline-axis, view-timeline-inset, view-timeline-name, view-transition-name
  • Fixed: keyframe-block-no-duplicate-selectors/keyframe-declaration-no-important/keyframe-selector-notation/no-unknown-animations false negatives for @-o-keyframes and @-ms-keyframes (#7953) (@​Mouvedia).
  • Fixed: no-duplicate-selectors reported ranges (#7938) (@​romainmenke).
  • Fixed: property-no-vendor-prefix report for -webkit-background-size (#7940) (@​Mouvedia).
  • Fixed: selector-class-pattern reported ranges (#7959) (@​Mouvedia).
  • Fixed: selector-no-qualifying-type reported ranges (#7937) (@​romainmenke).
  • Fixed: honour Node.js --no-deprecation flag for rule deprecation warnings (#7943) (@​Mouvedia).

16.8.2

16.8.1

16.8.0

  • Deprecated: github formatter (#7865) (@​marcalexiei).
  • Fixed: function-url-quotes false positives for SCSS variables and #/? characters (#7874) (@​vimalloc).
  • Fixed: keyframe-selector-notation false positives for entry-crossing and exit-crossing (#7859) (@​romainmenke).
  • Fixed: no-descending-specificity false positives for nested rules without declarations (#7850) (@​romainmenke).
  • Fixed: no-duplicate-selectors end positions (#7867) (@​romainmenke).
  • Fixed: no-duplicate-selectors false negatives for three or more duplicates (#7867) (@​romainmenke).
  • Fixed: selector-max-compound-selectors error for @nest (#7875) (@​romainmenke).
  • Fixed: selector-pseudo-class-no-unknown false positives for :active-view-transition and :active-view-transition-type() (#7868) (@​Mouvedia).
  • Fixed: selector-type-*, selector-max-type and selector-class-pattern false positives for <timeline-range-name> in keyframe selectors (#7856) (@​romainmenke).
  • Fixed: stylelint.utils.checkAgainstRule() regression when reportNeedlessDisables and quiet are both enabled (#7879) (@​ybiquitous).
  • Fixed: configuration comments within selector and value lists being ignored (#7839) (@​romainmenke).

16.7.0

... (truncated)

Commits
  • 94c3d93 16.9.0
  • 549a1a8 Prepare 16.9.0 (#7946)
  • baadc25 Refactor to fix CoreRules type inconsistencies (#7967)
  • 78b1e83 Improve PublicApi['rules'] type and remove BuiltInRules, Formatters and...
  • 5cf18b1 Refactor to add CoreRules type (#7954)
  • ce0b1af Bump supports-hyperlinks from 3.0.0 to 3.1.0 (#7962)
  • ab47e73 Change secondaryOptions argument type of the Rule function (#7950)
  • d53ce33 Fix declaration-property-value-no-unknown false negatives (#7957)
  • 83e2851 Fix keyframe-block-no-duplicate-selectors/`keyframe-declaration-no-importan...
  • 9744c18 Fix selector-class-pattern reported ranges (#7959)
  • Additional commits viewable in compare view


Updates stylelint-config-twbs-bootstrap from 14.1.0 to 15.0.0

Release notes

Sourced from stylelint-config-twbs-bootstrap's releases.

v15.0.0

What's Changed

Full Changelog: https://github.com/twbs/stylelint-config-twbs-bootstrap/compare/v14.2.0...v15.0.0

v14.2.0

What's Changed

Full Changelog: https://github.com/twbs/stylelint-config-twbs-bootstrap/compare/v14.1.0...v14.2.0

Commits
  • 05414af 15.0.0
  • bb859a8 Update ESLint to v9.x (#269)
  • 55e07a0 Bump stylelint-config-recess-order from 5.0.1 to 5.1.0 (#267)
  • 9b8bda4 Bump stylelint-scss from 6.5.0 to 6.5.1 (#266)
  • 7139bd0 Bump @​stylistic/stylelint-plugin from 3.0.0 to 3.0.1 (#264)
  • b474020 Bump stylelint from 16.8.1 to 16.9.0 (#265)
  • f90ad58 Regenerate package-lock.json
  • 787694f Require stylelint 16.8.0 like our deps
  • a434063 Bump stylelint-scss from 6.3.2 to 6.5.0 (#263)
  • d2dae92 Bump @​stylistic/stylelint-config from 1.0.1 to 2.0.0 (#262)
  • Additional commits viewable in compare view


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions