Skip to content

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

Merged
yyxi merged 1 commit intotrunkfrom
renovate/all-minor-patch
Sep 18, 2025
Merged

chore(deps): update all non-major dependencies#256
yyxi merged 1 commit intotrunkfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 23, 2024

This PR contains the following updates:

Package Change Age Confidence
@commitlint/cli (source) 19.6.0 -> 19.8.1 age confidence
@commitlint/config-conventional (source) 19.6.0 -> 19.8.1 age confidence
@ls-lint/ls-lint 2.2.3 -> 2.3.1 age confidence
eslint (source) 9.31.0 -> 9.35.0 age confidence
lefthook 1.9.0 -> 1.13.0 age confidence
prettier (source) 3.4.2 -> 3.6.2 age confidence
syncpack 13.0.0 -> 13.0.4 age confidence
tsd 0.31.2 -> 0.33.0 age confidence
typescript (source) 5.7.2 -> 5.9.2 age confidence

Release Notes

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

v19.8.1

Compare Source

Bug Fixes

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

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

19.6.1 (2024-12-15)

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

v19.7.1

Compare Source

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

v19.6.1

Compare Source

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

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

v19.8.1

Compare Source

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

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

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

v19.7.1

Compare Source

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

loeffel-io/ls-lint (@​ls-lint/ls-lint)

v2.3.1

Compare Source

What's Changed

New Contributors

Full Changelog: loeffel-io/ls-lint@v2.3.0...v2.3.1

v2.3.0

Compare Source

Please see the v2.3.0 announcement for more informations: https://ls-lint.org/blog/announcements/v2.3.0.html

What's Changed

New Contributors

Full Changelog: loeffel-io/ls-lint@v2.2.3...v2.3.0

eslint/eslint (eslint)

v9.35.0

Compare Source

v9.34.0

Compare Source

v9.33.0

Compare Source

v9.32.0

Compare Source

evilmartians/lefthook (lefthook)

v1.13.0

Compare Source

v1.12.4

Compare Source

v1.12.3

Compare Source

v1.12.2

Compare Source

v1.12.1

Compare Source

v1.12.0

Compare Source

  • feat: allow installing only specific hooks (#​1069)
  • refactor: [breaking] restructure files and folders, remove deprecated options (#​1067)

v1.11.16

Compare Source

  • fix: race condition on repo state (#​1066)

v1.11.15

Compare Source

  • feat: add exclude arg (#​1063)
  • feat: inherit group envs (#​1061)
  • fix: apply implicit staged files filter to all files when all files arg given (#​1062)
  • deps: bump github.com/kaptinlin/jsonschema to 0.4.5
  • deps: bump github.com/knadh/koanf/parsers/yaml to 1.1.0
  • deps: bump github.com/knadh/koanf/v2 to 2.2.1 (#​1043)
  • fix: friendlier updater error message
  • fix: bump goreleaser

v1.11.14

Compare Source

v1.11.13

Compare Source

v1.11.12

Compare Source

v1.11.11

Compare Source

v1.11.10

Compare Source

v1.11.9

Compare Source

v1.11.8

Compare Source

v1.11.7

Compare Source

v1.11.6

Compare Source

v1.11.5

Compare Source

v1.11.4

Compare Source

v1.11.3

Compare Source

v1.11.2

Compare Source

v1.11.1

Compare Source

  • fix: race condition on repo state (#​1066)

v1.11.0

Compare Source

v1.10.11

Compare Source

v1.10.10

Compare Source

v1.10.9

Compare Source

  • fix: make uninstall --remove-configs description more accurate (#​934) by @​scop

v1.10.8

Compare Source

v1.10.7

Compare Source

v1.10.6

Compare Source

Changelog

v1.10.5

Compare Source

  • feat: add lefthook option for custom path or command (#​927) by @​mrexox
  • chore: update config template with new jobs by @​mrexox

v1.10.4

Compare Source

v1.10.3

Compare Source

v1.10.2

Compare Source

v1.10.1

Compare Source

v1.10.0

Compare Source

v1.9.3

Compare Source

v1.9.2

Compare Source

v1.9.1

Compare Source

prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

v3.5.3

Compare Source

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes

JamieMason/syncpack (syncpack)

v13.0.4

Compare Source

27 April 2025

  • fix(npm): drop deprecated @​effect/schema dependency #278
  • docs(site): add missing closing quote in example #277
  • chore(release): 13.0.4 808a5a9
  • chore(github): move to 13.x.x branch 9199058
  • chore(pnpm): bump version in ci a357240

v13.0.3

Compare Source

9 March 2025

  • fix(npm): use caret versions internally #259
  • fix(npm): update dependencies 611b49c
  • chore(release): 13.0.3 476a849
  • chore(scripts): fix node engines checker c10db2f

v13.0.2

Compare Source

5 February 2025

  • fix(core): do not remove empty objects #223
  • chore(release): 13.0.2 8d0b012
  • chore(git): ignore files from v14 branch 6a0a875
  • docs(readme): update link to alpha channel 5c80af7

v13.0.1

Compare Source

2 February 2025

  • fix(types): allow additional customTypes properties #255
  • chore(site): update dependencies 32847a2
  • fix(npm): update dependencies fee1f06
  • chore(github): add issue form templates 35dea02
tsdjs/tsd (tsd)

v0.33.0

Compare Source


v0.32.0

Compare Source


microsoft/TypeScript (typescript)

v5.9.2

Compare Source

v5.8.3

Compare Source

v5.8.2

Compare Source

v5.7.3: TypeScript 5.7.3

Compare Source

For release notes, check out the release announcement.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Dec 23, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 70c6179 to 763db98 Compare December 30, 2024 03:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5f336fe to 000dc76 Compare January 6, 2025 04:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ed4116c to 436e019 Compare January 19, 2025 09:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 020aa51 to 55c1615 Compare January 27, 2025 09:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bad06bd to 998d6d3 Compare February 3, 2025 05:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 6c51517 to 695f323 Compare February 14, 2025 22:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b6e85e0 to 61eab46 Compare February 18, 2025 18:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d33191a to 4fd2933 Compare March 17, 2025 10:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f7fb2ca to 250a044 Compare March 28, 2025 22:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 2d93309 to e7283ff Compare April 7, 2025 05:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3a78426 to 29f1168 Compare April 14, 2025 05:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 8feadb2 to 0309882 Compare April 21, 2025 07:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 891a5bf to ab0078d Compare April 28, 2025 09:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3ece578 to cd4f36c Compare May 5, 2025 07:44
@socket-security
Copy link

socket-security bot commented May 12, 2025

All alerts resolved. Learn more about Socket for GitHub.

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report

@socket-security
Copy link

socket-security bot commented Aug 10, 2025

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

Development

Successfully merging this pull request may close these issues.

1 participant