Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2023

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
lint-staged 13.2.2 -> 13.3.0 age confidence
pump 3.0.0 -> 3.0.3 age confidence
simple-git (source) 3.18.0 -> 3.30.0 age confidence
vitest (source) 0.30.1 -> 0.34.6 age confidence

Release Notes

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

v13.3.0

Compare Source

Bug Fixes
  • dependencies: update most dependencies (7443870)
  • detect duplicate redundant braces in pattern (d895aa8)
Features
  • dependencies: update listr2@​6.6.0 (09844ca)

v13.2.3

Compare Source

Bug Fixes
  • the --diff option implies --no-stash (66a716d)
mafintosh/pump (pump)

v3.0.3

Compare Source

v3.0.2

Compare Source

v3.0.1

Compare Source

steveukx/git-js (simple-git)

v3.30.0

Compare Source

Minor Changes
  • bc77774: Correctly identify current branch name when using git.status in a cloned empty repo.

    Previously git.status would report the current branch name as No. Thank you to @​MaddyGuthridge for identifying this issue.

v3.29.0

Compare Source

Minor Changes
  • 240ec64: Support for absolute paths on Windows when using git.checkIngore, previously Windows would report
    paths with duplicate separators \\\\ between directories.

    Following this change all paths returned from git.checkIgnore will be normalized through node:path,
    this should have no impact on non-windows users where the git binary doesn't wrap absolute paths with
    quotes.

    Thanks to @​Maxim-Mazurok for reporting this issue.

  • 9872f84: Support the use of git.branch(['--show-current']) to limit the branch list to only the current branch.

    Thanks to @​peterbe for pointing out the use-case.

  • 5736bd8: Change to biome for lint and format

v3.28.0

Compare Source

Minor Changes
  • 2adf47d: Allow repeating git options like {'--opt': ['value1', 'value2']}

v3.27.0

Compare Source

Minor Changes
  • 52f767b: Add similarity to the DiffResultNameStatusFile interface used when fetching log/diff with the --name-status option.
  • 739b0d9: Diff summary includes original name of renamed files when run wiht the --name-status option.
  • bc90e7e: Fixes an issue with reporting name changes in the files array returned by git.status.
    Thank you @​mark-codesphere for the contribution.
Patch Changes
  • 03e1c64: Resolve error in log parsing when fields have empty values.

v3.26.0

Compare Source

Minor Changes
  • 28d545b: Upgrade build tools and typescript

v3.25.0

Compare Source

Minor Changes
  • 0a5378d: Add support for parsing count-objects
Patch Changes
  • 4aceb15: Upgrade dependencies and build tools

v3.24.0

Compare Source

Minor Changes
  • c355317: Enable the use of a two part custom binary

v3.23.0

Compare Source

Minor Changes
  • 9bfdf08: Bump package manager from yarn v1 to v4
Patch Changes
  • 8a3118d: Fixed a performance issue when parsing stat diff summaries
  • 9f1a174: Update build tools and workflows for Yarn 4 compatibility

v3.22.0

Compare Source

Minor Changes
  • df14065: add status to DiffResult when using --name-status

v3.21.0

Compare Source

Minor Changes
  • 709d80e: Add firstCommit utility interface
Patch Changes

v3.20.0

Compare Source

Minor Changes
  • 2eda817: Use pathspec in git.log to allow use of previously deleted files in file argument

v3.19.1

Compare Source

Patch Changes
  • 2ab1936: keep path splitter without path specs

v3.19.0

Compare Source

Minor Changes
  • f702b61: Create a utility to append pathspec / file lists to tasks through the TaskOptions array/object
vitest-dev/vitest (vitest)

v0.34.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.34.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.34.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.34.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.34.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.34.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.34.0

Compare Source

   🚨 Breaking Changes
  • Transform mode affects only test files, not regular files  -  by @​sheremet-va in #​3491 (9608b)
    • transformMode is now moved to server.transformMode. This option is highly discouraged to use. If you need to change the transform mode, use the new option testTransformMode instead to control the mode based on the running test, not the current file path. By default, tests with jsdom or happy-dom use web transform mode, and tests using node or edge environment use ssr mode. If you have a custom environment, it should provide transformMode property.
  • Custom environment now should be processed before Vitest can consume it. It means that you cannot specify a path to a TS file or use import paths that should be processed by Vite.
  • Disable coverage.reportOnFailure by default  -  by @​AriPerkkio in #​3615 (0c6f6)
  • Remove @vitest/coverage-c8 package  -  by @​AriPerkkio in #​3614 (a90d6)
    • @vitest/coverage-c8 is no longer supported. Please, use @vitest/coverage-v8 instead.
  • Support running tests using VM context  -  by @​sheremet-va and @​dammy001 in #​3203 (b0929)
    • To address speed issues in some applications, Vitest now provides experimentalVmThreads pool to run your tests using VM Sandboxes environment. Make sure you understand all pitfalls of this pool before opening an issue.
  • Introduce server option  -  by @​fenghan34 and @​sheremet-va in #​3725 (dc4fa)
    • Most of deps. options are now moved to server.deps with a deprecation warning. Please, consider using deps.optimizer instead of deps.inline/deps.external. Ideally, we would like to move away from using server.deps.inline altogether.
  • vite-node: Make CLI arguments parsing behavior consistent with node/tsx/ts-node  -  by @​rxliuli in #​3574 (1cd4e)
    • You now have to provide CLI arguments before the entry point. For example, instead of vite-node index.ts --watch, you now have to do vite-node --watch index.ts.
  • Add preact example, remove optimizer experimental status, enable by default  -  by @​sheremet-va and @​eryue0220 in #​3854 (4b946)
    • deps.optimizer is now enabled by default. This means that Vitest will bundle specified dependencies before running your tests. This field inherits options from optimizeDeps and ssr.optimizeDeps which are populated by other plugins (like, Svelte).
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
  • Deprecate deps.registerNodeLoader  -  by @​sheremet-va (7f45b)
    • This option was introduced to support aliasing inside external packages. Please, use deps.optimizer.web instead. If you test Node.js applications, consider adding external packages to server.deps.inline.
    View changes on GitHub

v0.33.0

Compare Source

   🚨 Breaking Changes
  • Revert default include patterns  -  by @​so1ve #​3729
    • 0.32.0 changed the default include globs to be compatible with Jest. After a discussion with the community, we are reverting this change because it turned out to be non-intuitive.
   🐞 Bug Fixes
    View changes on GitHub

v0.32.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.32.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.32.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.32.1

Compare Source

   🚀 Features
   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - "every month" in timezone America/Manaus, Automerge - At any time (no schedule defined).

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

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 added [type] dependencies 🔕 do not notify indicar que deve ser ignorada por notificadores (ex: bot do telegram) labels Jun 1, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 2 times, most recently from 2816ec2 to 87e0a79 Compare June 6, 2023 20:57
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 2 times, most recently from bc7cde7 to 5408465 Compare June 16, 2023 16:28
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 3 times, most recently from 2d6f541 to de40432 Compare July 3, 2023 11:09
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from de40432 to 7666e04 Compare July 6, 2023 15:11
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 2 times, most recently from 5fc7869 to c1efff4 Compare August 1, 2023 19:22
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 2 times, most recently from c6bd650 to bef4707 Compare August 17, 2023 12:06
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from bef4707 to 781decc Compare August 25, 2023 10:09
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 781decc to 4711a40 Compare September 8, 2023 13:18
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 2 times, most recently from 6211dd6 to 1f0f4a5 Compare September 23, 2023 16:45
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 1f0f4a5 to c01782c Compare September 29, 2023 16:16
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from c01782c to d7c2cde Compare November 20, 2023 09:50
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from d7c2cde to 2feae7f Compare December 29, 2023 10:48
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 2feae7f to 4d34570 Compare March 17, 2024 10:11
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 4d34570 to fb4fa04 Compare March 28, 2024 20:28
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from fb4fa04 to 727f30b Compare June 10, 2024 12:42
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 727f30b to e8e247c Compare September 1, 2024 13:05
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 2 times, most recently from 9025ac2 to a973953 Compare September 11, 2024 11:47
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from a973953 to a895ac2 Compare September 19, 2024 12:38
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from a895ac2 to 9e4510c Compare June 6, 2025 19:11
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 9e4510c to 9f49cc2 Compare June 16, 2025 12:51
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 2 times, most recently from 2e84c39 to 98fc856 Compare August 13, 2025 17:36
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 98fc856 to b194075 Compare August 19, 2025 15:32
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from b194075 to 760b750 Compare August 31, 2025 10:36
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 760b750 to a347215 Compare September 25, 2025 14:58
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from a347215 to 4456193 Compare October 21, 2025 11:40
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch 2 times, most recently from e316795 to 9fd5941 Compare November 2, 2025 10:01
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 9fd5941 to 1c8c00a Compare November 10, 2025 16:00
@renovate renovate bot force-pushed the renovate/all-minor-patch-no-breaking-changes branch from 1c8c00a to 5882e32 Compare December 3, 2025 18:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🔕 do not notify indicar que deve ser ignorada por notificadores (ex: bot do telegram) [type] dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant