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

chore(deps): update all non-major dependencies #94

Merged
merged 1 commit into from
Aug 1, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) ^7.24.7 -> ^7.24.9 age adoption passing confidence
@babel/preset-env (source) ^7.24.7 -> ^7.25.0 age adoption passing confidence
@eslint/js (source) ^9.6.0 -> ^9.8.0 age adoption passing confidence
@fortawesome/fontawesome-free (source) ^6.5.2 -> ^6.6.0 age adoption passing confidence
@types/node (source) ^20.14.9 -> ^20.14.13 age adoption passing confidence
eslint (source) ^9.6.0 -> ^9.8.0 age adoption passing confidence
globals ^15.7.0 -> ^15.8.0 age adoption passing confidence
jsdom ^24.1.0 -> ^24.1.1 age adoption passing confidence
mocha (source) ^10.5.2 -> ^10.7.0 age adoption passing confidence
postcss (source) ^8.4.39 -> ^8.4.40 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence
sass ^1.77.6 -> ^1.77.8 age adoption passing confidence
stylelint (source) ^16.6.1 -> ^16.7.0 age adoption passing confidence
typescript (source) ^5.5.2 -> ^5.5.4 age adoption passing confidence
typescript-eslint (source) ^8.0.0-alpha.38 -> ^8.0.0-alpha.56 age adoption passing confidence
webpack ^5.92.1 -> ^5.93.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.24.9

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal

v7.24.8

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
eslint/eslint (@​eslint/js)

v9.8.0

Compare Source

v9.7.0

Compare Source

FortAwesome/Font-Awesome (@​fortawesome/fontawesome-free)

v6.6.0

Compare Source

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

eslint/eslint (eslint)

v9.8.0

Compare Source

v9.7.0

Compare Source

Features

  • 7bd9839 feat: add support for es2025 duplicate named capturing groups (#​18630) (Yosuke Ota)
  • 1381394 feat: add regex option in no-restricted-imports (#​18622) (Nitin Kumar)

Bug Fixes

  • 14e9f81 fix: destructuring in catch clause in no-unused-vars (#​18636) (Francesco Trotta)

Documentation

  • 9f416db docs: Add Powered by Algolia label to the search. (#​18633) (Amaresh S M)
  • c8d26cb docs: Open JS Foundation -> OpenJS Foundation (#​18649) (Milos Djermanovic)
  • 6e79ac7 docs: loadESLint does not support option cwd (#​18641) (Francesco Trotta)

Chores

sindresorhus/globals (globals)

v15.8.0

Compare Source

jsdom/jsdom (jsdom)

v24.1.1

Compare Source

  • Fixed selection methods to trigger the selectionchange event on the Document object. (piotr-oles)
mochajs/mocha (mocha)

v10.7.0

Compare Source

🎉 Enhancements

v10.6.1

Compare Source

🐛 Fixes

v10.6.0

Compare Source

🎉 Enhancements
postcss/postcss (postcss)

v8.4.40

Compare Source

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

v3.3.3

Compare Source

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
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged 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:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

sass/dart-sass (sass)

v1.77.8

Compare Source

  • No user-visible changes.

v1.77.7

Compare Source

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

stylelint/stylelint (stylelint)

v16.7.0

Compare Source

Microsoft/TypeScript (typescript)

v5.5.4

Compare Source

v5.5.3

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.0.0-alpha.56

Compare Source

v8.0.0-alpha.55

Compare Source

v8.0.0-alpha.54

Compare Source

v8.0.0-alpha.53

Compare Source

v8.0.0-alpha.52

Compare Source

v8.0.0-alpha.51

Compare Source

v8.0.0-alpha.50

Compare Source

v8.0.0-alpha.49

Compare Source

v8.0.0-alpha.48

Compare Source

v8.0.0-alpha.47

Compare Source

v8.0.0-alpha.46

Compare Source

v8.0.0-alpha.45

Compare Source

v8.0.0-alpha.44

Compare Source

v8.0.0-alpha.43

Compare Source

v8.0.0-alpha.42

Compare Source

v8.0.0-alpha.41

Compare Source

v8.0.0-alpha.39

Compare Source

webpack/webpack (webpack)

v5.93.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4:00 am on the first day of the month" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 00ba069 to f568fa3 Compare August 1, 2024 13:07
@e-adrien e-adrien merged commit e337588 into main Aug 1, 2024
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant