composer / satis

Simple static Composer repository generator - For a full private Composer repo use Private Packagist
MIT License
3.14k stars 519 forks source link

Bump the minor-patch group with 32 updates #884

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the minor-patch group with 32 updates:

Package From To
@babel/core 7.24.7 7.24.8
@babel/preset-env 7.24.7 7.24.8
prettier 3.3.2 3.3.3
sass 1.77.6 1.77.8
webpack 5.92.1 5.93.0
@babel/compat-data 7.24.7 7.24.8
@babel/generator 7.24.7 7.24.8
@babel/helper-compilation-targets 7.24.7 7.24.8
@babel/helper-create-class-features-plugin 7.24.7 7.24.8
@babel/helper-member-expression-to-functions 7.24.7 7.24.8
@babel/helper-module-transforms 7.24.7 7.24.8
@babel/helper-plugin-utils 7.24.7 7.24.8
@babel/helper-string-parser 7.24.7 7.24.8
@babel/helper-validator-option 7.24.7 7.24.8
@babel/helpers 7.24.7 7.24.8
@babel/parser 7.24.7 7.24.8
@babel/plugin-transform-classes 7.24.7 7.24.8
@babel/plugin-transform-destructuring 7.24.7 7.24.8
@babel/plugin-transform-modules-commonjs 7.24.7 7.24.8
@babel/plugin-transform-optional-chaining 7.24.7 7.24.8
@babel/plugin-transform-typeof-symbol 7.24.7 7.24.8
@babel/runtime 7.24.7 7.24.8
@babel/traverse 7.24.7 7.24.8
@babel/types 7.24.7 7.24.8
@jridgewell/sourcemap-codec 1.4.15 1.5.0
@types/ws 8.5.10 8.5.11
browserslist 4.23.1 4.23.2
caniuse-lite 1.0.30001640 1.0.30001642
electron-to-chromium 1.4.818 1.4.827
esquery 1.5.0 1.6.0
postcss-selector-parser 6.1.0 6.1.1
terser 5.31.1 5.31.2

Updates @babel/core from 7.24.7 to 7.24.8

Release notes

Sourced from @​babel/core's releases.

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Committers: 9

Changelog

Sourced from @​babel/core's changelog.

v7.24.8 (2024-07-11)

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Commits


Updates @babel/preset-env from 7.24.7 to 7.24.8

Release notes

Sourced from @​babel/preset-env's releases.

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Committers: 9

Changelog

Sourced from @​babel/preset-env's changelog.

v7.24.8 (2024-07-11)

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Commits


Updates prettier from 3.3.2 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​footagged template
class X {}

// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

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 webpack from 5.92.1 to 5.93.0

Release notes

Sourced from webpack's releases.

v5.93.0

Bug Fixes

  • Generate correct relative path to runtime chunks
  • Makes DefinePlugin quieter under default log level
  • Fixed mangle destructuring default in namespace import
  • Fixed consumption of eager shared modules for module federation
  • Strip slash for pretty regexp
  • Calculate correct contenthash for CSS generator options

New Features

  • Added the binary generator option for asset modules to explicitly keep source maps produced by loaders
  • Added the modern-module library value for tree shakable output
  • Added the overrideStrict option to override strict or non-strict mode for javascript modules
Commits
  • 277460b chore(release): 5.93.0
  • 76ab754 fix: relative path to runtime chunks
  • 40b1a77 test: added
  • 080e54f fix: relative path to runtime chunks
  • 7764e38 chore(deps-dev): bump eslint from 9.5.0 to 9.6.0
  • 22738f3 chore(deps-dev): bump eslint from 9.5.0 to 9.6.0
  • 1a27b9e fix: contenthash for css generator options
  • e716d44 chore(deps-dev): bump @​eslint/js from 9.5.0 to 9.6.0
  • 7a34330 chore(deps-dev): bump typescript from 5.5.2 to 5.5.3
  • 974752f chore(deps-dev): bump globals from 15.6.0 to 15.8.0
  • Additional commits viewable in compare view


Updates @babel/compat-data from 7.24.7 to 7.24.8

Release notes

Sourced from @​babel/compat-data's releases.

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Committers: 9

Changelog

Sourced from @​babel/compat-data's changelog.

v7.24.8 (2024-07-11)

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Commits


Updates @babel/generator from 7.24.7 to 7.24.8

Release notes

Sourced from @​babel/generator's releases.

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Committers: 9

Changelog

Sourced from @​babel/generator's changelog.

v7.24.8 (2024-07-11)

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Commits


Updates @babel/helper-compilation-targets from 7.24.7 to 7.24.8

Release notes

Sourced from @​babel/helper-compilation-targets's releases.

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Committers: 9

Changelog

Sourced from @​babel/helper-compilation-targets's changelog.

v7.24.8 (2024-07-11)

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Commits


Updates @babel/helper-create-class-features-plugin from 7.24.7 to 7.24.8

Release notes

Sourced from @​babel/helper-create-class-features-plugin's releases.

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Committers: 9

Changelog

Sourced from @​babel/helper-create-class-features-plugin's changelog.

v7.24.8 (2024-07-11)

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Commits


Updates @babel/helper-member-expression-to-functions from 7.24.7 to 7.24.8

Release notes

Sourced from @​babel/helper-member-expression-to-functions's releases.

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

  • babel-generator
    • #16630 Correctly print parens around in in for heads (