Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 25, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@commitlint/cli (source) ^19.4.0^19.8.1 age confidence
@commitlint/config-conventional (source) ^19.2.2^19.8.1 age confidence
@favware/cliff-jumper ^4.0.3^4.1.0 age confidence
@sapphire/eslint-config (source) ^5.0.5^5.0.6 age confidence
@sapphire/ts-config (source) ^5.0.1^5.0.3 age confidence
@types/node (source) ^20.16.0^20.19.30 age confidence
@vitest/coverage-v8 (source) ^2.0.5^2.1.9 age confidence
eslint (source) ^8.57.0^8.57.1 age confidence
eslint-config-prettier ^9.1.0^9.1.2 age confidence
eslint-plugin-prettier ^5.2.1^5.5.5 age confidence
husky ^9.1.4^9.1.7 age confidence
lint-staged ^15.2.9^15.5.2 age confidence
prettier (source) ^3.3.3^3.8.0 age confidence
tsup (source) ^8.2.4^8.5.1 age confidence
typedoc (source) ^0.26.5^0.28.16 age confidence
typedoc-json-parser ^10.1.5^10.2.0 age confidence
typescript (source) ^5.5.4^5.9.3 age confidence
vitest (source) ^2.0.5^2.1.9 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

v19.6.0

Compare Source

Note: Version bump only for package @​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

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

v19.6.0

Compare Source

Note: Version bump only for package @​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

favware/cliff-jumper (@​favware/cliff-jumper)

v4.1.0

Compare Source

🐛 Bug Fixes

🚀 Features

  • Update to git-cliff 2.5.0 (fb33eba)
sapphiredev/utilities (@​sapphire/eslint-config)

v5.0.6

Compare Source

🐛 Bug Fixes

📝 Documentation

sapphiredev/utilities (@​sapphire/ts-config)

v5.0.3

Compare Source

Changelog

All notable changes to this project will be documented in this file.

v5.0.2

Compare Source

🏠 Refactor

  • Relocate tsconfig files to the package root for rolldown compatibility (b7f8a51)

🐛 Bug Fixes

📝 Documentation

  • readme: Fix readme table of contents (c60e8bd)
vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.9

Compare Source

This release includes security patches for:

   🐞 Bug Fixes
    View changes on GitHub

v2.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.7

Compare Source

   🐞 Bug Fixes
  • Revert support for Vite 6  -  by @​sheremet-va (fbe5c)
    • This introduced some breaking changes (#​6992). We will enable support for it later. In the meantime, you can still use pnpm.overrides or yarn resolutions to override the vite version in the vitest package - the APIs are compatible.
    View changes on GitHub

v2.1.6

Compare Source

🚀 Features
  • Support Vite 6
    View changes on GitHub

v2.1.5

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.4

Compare Source

   🚀 Features

This patch release includes a non-breaking feature for the experimental Browser Mode that doesn't follow SemVer. If you want to avoid picking up releases like this, make sure to pin the Vitest version in your package.json. See npm's documentation about semver for more information.

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.0

Compare Source

This release makes another big change to the Browser Mode by introducing locators API:

test('renders blog posts', async () => {
  const screen = page.render(<Blog />)

  await expect.element(screen.getByRole('heading', { name: 'Blog' })).toBeInTheDocument()

  const [firstPost] = screen.getByRole('listitem').all()

  await firstPost.getByRole('button', { name: 'Delete' }).click()

  expect(screen.getByRole('listitem').all()).toHaveLength(3)
})

You can use either vitest-browser-vue, vitest-browser-svelte or vitest-browser-react to render components and make assertions using locators. Locators are also available on the page object from @vitest/browser/context.

Potential Breaking Change
  • workspace:
    • Correctly resolve workspace globs and file paths  -  by @​sheremet-va in #​6316 (afdcb)
    • This changes how the custom glob pattern in the workspace config is treated. Any file matching the glob is considered a Vitest config file. Any folder matching the glob pattern is treated as a workspace project and is subject to the regular config resolution (single vitest.config.ts or vite.config.ts inside the folder)
    • For example, projects/* will match anything inside the projects folder. If it's a folder, we try to find the config inside that folder (if there is none, it is still treated as a project with the default config). If it's a file, it will be treated as a Vitest config. projects/**/* previously would assume that you only wanted to have folders as projects, but now it will match every single file insideprojects.
    • This change doesn't affect non-glob usage.
   🚀 Features
   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 12pm on Sunday" (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

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

@renovate renovate bot requested a review from RealShadowNova as a code owner August 25, 2024 01:55
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 3 times, most recently from 6c392de to ea3f560 Compare August 28, 2024 07:56
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 5 times, most recently from 3ef6388 to 3b0823b Compare September 8, 2024 03:08
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 7 times, most recently from ce666f4 to 995b0bb Compare September 15, 2024 05:03
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 3 times, most recently from 300dbf3 to 0039d49 Compare September 22, 2024 04:52
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 7 times, most recently from 57e3fa7 to 2782711 Compare September 30, 2024 07:26
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 3 times, most recently from d7c8d74 to c8e1a3c Compare October 6, 2024 03:14
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 3 times, most recently from 050bbb9 to 9c43eec Compare October 11, 2025 17:28
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 2 times, most recently from da438d9 to 07e69e6 Compare October 21, 2025 01:14
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 2 times, most recently from 920c5f1 to 251f0df Compare November 2, 2025 06:13
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 3 times, most recently from 9377e6c to 9ef1718 Compare November 12, 2025 22:46
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 3 times, most recently from 7513a99 to 3fa6f68 Compare November 27, 2025 17:10
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 5 times, most recently from 8b5a7c7 to 2473d78 Compare December 3, 2025 06:04
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 2 times, most recently from f29c735 to d2062fd Compare December 14, 2025 00:29
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch from d2062fd to f5f144b Compare December 31, 2025 16:54
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch 6 times, most recently from 5ff46e8 to b811842 Compare January 15, 2026 02:38
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch from b811842 to bd7f375 Compare January 15, 2026 20:50
@renovate renovate bot force-pushed the renovate/all-non-major-dev branch from bd7f375 to d406b46 Compare January 19, 2026 17:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant