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 #237

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) ^19.3.0 -> ^19.5.0 age adoption passing confidence
@commitlint/config-conventional (source) ^19.2.2 -> ^19.5.0 age adoption passing confidence
@discordjs/collection (source) ^2.1.0 -> ^2.1.1 age adoption passing confidence
@sapphire/utilities (source) ^3.16.2 -> ^3.17.0 age adoption passing confidence
@types/jest (source) ^29.5.12 -> ^29.5.13 age adoption passing confidence
@types/node (source) ^20.14.10 -> ^20.16.11 age adoption passing confidence
eslint (source) ^8.57.0 -> ^8.57.1 age adoption passing confidence
eslint-plugin-prettier ^5.1.3 -> ^5.2.1 age adoption passing confidence
husky ^9.1.5 -> ^9.1.6 age adoption passing confidence
lint-staged ^15.2.7 -> ^15.2.10 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence
ts-jest (source) ^29.1.5 -> ^29.2.5 age adoption passing confidence
tslib (source) ^2.6.3 -> ^2.7.0 age adoption passing confidence
yarn (source) 4.3.1 -> 4.5.0 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.5.0

Compare Source

Features

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/cli

v19.4.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v19.4.0

Compare Source

Features
conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.5.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/config-conventional

19.2.2 (2024-04-14)

Note: Version bump only for package @​commitlint/config-conventional

v19.4.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

discordjs/discord.js (@​discordjs/collection)

v2.1.1

Compare Source

Bug Fixes

Testing

Typings

sapphiredev/utilities (@​sapphire/utilities)

v3.17.0

Compare Source

🏠 Refactor

🐛 Bug Fixes

📝 Documentation

🚀 Features

eslint/eslint (eslint)

v8.57.1

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.1

Compare Source

Patch Changes
typicode/husky (husky)

v9.1.6

Compare Source

lint-staged/lint-staged (lint-staged)

v15.2.10

Compare Source

Patch Changes

v15.2.9

Compare Source

Patch Changes
  • #​1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.

v15.2.8

Compare Source

Patch Changes
  • f0480f0 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version switched the --show-toplevel flag with --show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.js child_process. The new flag returns a path relative to the working directory, avoiding the issue.

    The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.

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.

kulshekhar/ts-jest (ts-jest)

v29.2.5

Compare Source

v29.2.4

Compare Source

v29.2.3

Compare Source

v29.2.2

Compare Source

v29.2.1

Compare Source

v29.2.0

Compare Source

Bug Fixes
  • fix: don't show warning message with Node16/NodeNext (99c4f49), closes #​4266
Features
  • feat(cli): allow migrating cjs presets to transform config (22fb027)
  • feat(presets): add util functions to create ESM presets (06f78ed)
  • feat(presets): add util functions to create CJS presets (f9cc3c0)
Code refactoring
  • refactor: replace lodash deps with native js implementation (40f1708)
  • refactor: use TsJestTransformerOptions type everywhere possibly (7d001be)
  • refactor(cli): use new preset util functions to initialize test config (c2b56ca)
  • refactor(presets): use create preset util functions for cjs presets (922d6d0)
  • test: switch react-app to use Vite (827c8ad)
Microsoft/tslib (tslib)

v2.7.0

Compare Source

yarnpkg/berry (yarn)

v4.5.0

Compare Source

v4.4.1

Compare Source

v4.4.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 12pm on Sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 added the dependencies Concerns external dependencies or libraries used in the project. label Jul 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f013b74 to a0c812e Compare July 23, 2024 17:29
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jul 23, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1042e36 to 4221973 Compare July 28, 2024 11:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ee96a1a to d2442e0 Compare August 7, 2024 10:02
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Aug 7, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d2442e0 to 02c6c77 Compare August 9, 2024 20:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 1ae9ff0 to 4d0a1ee Compare August 24, 2024 16:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4708159 to 4a1d535 Compare September 2, 2024 22:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 380ef6c to 079a834 Compare September 4, 2024 22:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6562d3b to 37544f2 Compare September 11, 2024 22:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 024532d to 22d2bd6 Compare September 16, 2024 17:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from bde1e03 to fec46f7 Compare September 27, 2024 20:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fec46f7 to c8e6e00 Compare October 7, 2024 22:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Concerns external dependencies or libraries used in the project.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants