Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 28, 2024

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

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) 1.8.31.9.4 age confidence
@types/node (source) 20.16.120.19.30 age confidence
changelogen 0.5.50.6.2 age confidence
typescript (source) 5.5.45.9.3 age confidence
vitest (source) 2.0.52.1.9 age confidence
zod (source) 3.23.83.25.76 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v1.9.4

Compare Source

v1.9.3

Compare Source

v1.9.2

Compare Source

v1.9.1

Compare Source

v1.9.0

Compare Source

unjs/changelogen (changelogen)

v0.6.2

Compare Source

compare changes

🩹 Fixes
  • cli: Accept hideAuthorEmail arg (#​275)
📖 Documentation
  • Add note about version number interpretation (#​272)
🌊 Types
  • config.types accept boolean value (#​278)
🏡 Chore
❤️ Contributors

v0.6.1

Compare Source

compare changes

🩹 Fixes
  • Pass cwd in more places before running commands (#​266)
🏡 Chore
✅ Tests
❤️ Contributors

v0.6.0

Compare Source

compare changes

🚀 Enhancements
  • Update jiti to v2 (6e85d32)
  • Add check for breaking changes in commit body (#​228)
  • Hide author email address via flag (#​247)
  • Add noAuthors option (#​183)
🩹 Fixes
  • Use https proto for author's github link (#​225)
  • Use https proto for author's github link in tests (#​226)
  • Release version regex supporting pre versions (#​259)
  • Use correct compare changes URL for Bitbucket (#​257)
  • Use tag template for version title and compare change link (#​255)
  • Render usernames in github changelog (#​265)
💅 Refactors
  • Use consola for colors (49e0401)
  • Use confbox for yaml parsing (19e940c)
📦 Build
🏡 Chore
✅ Tests
  • Add tests for parsing co-authors from commit body (#​229)
⚠️ Breaking Changes
❤️ Contributors

v0.5.7

Compare Source

compare changes

🩹 Fixes
  • bump: Avoid using + for canary suffix (#​224)
❤️ Contributors

v0.5.6

Compare Source

compare changes

🚀 Enhancements
  • Add option to sign git tags (#​117)
  • git: Support parse git messages that have prefix emoji (#​146)
🩹 Fixes
  • github: Use bearer token (#​180)
  • Handle repo name with multiple segments (#​219)
  • Lowercase scope when filtering (#​199)
💅 Refactors
  • Replace execa with execSync (#​222)
  • Use human readable date for canary versions (#​223)
  • Update execCommand (68127be)
🏡 Chore
❤️ Contributors
microsoft/TypeScript (typescript)

v5.9.3: TypeScript 5.9.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.9.2: TypeScript 5.9

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.8.3: TypeScript 5.8.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement.

Downloads are available on:

v5.8.2: TypeScript 5.8

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.7.3: TypeScript 5.7.3

Compare Source

For release notes, check out the release announcement.

Downloads are available on npm

v5.7.2: TypeScript 5.7

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.6.3: TypeScript 5.6.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.6.2: TypeScript 5.6

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitest-dev/vitest (vitest)

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 - At any time (no schedule defined), 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 changed the title chore(deps): update devdependency @types/node to v20.16.2 chore(deps): update devdependency @types/node to v20.16.3 Sep 1, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cd7fed4 to b4b2388 Compare September 1, 2024 13:04
@renovate renovate bot changed the title chore(deps): update devdependency @types/node to v20.16.3 chore(deps): update devdependency @types/node to v20.16.4 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b4b2388 to 33be4fe Compare September 4, 2024 01:01
@renovate renovate bot changed the title chore(deps): update devdependency @types/node to v20.16.4 chore(deps): update devdependency @types/node to v20.16.5 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from cea0b56 to e6525bb Compare September 9, 2024 16:27
@renovate renovate bot changed the title chore(deps): update devdependency @types/node to v20.16.5 chore(deps): update all non-major dependencies Sep 9, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 581ab10 to a227348 Compare September 15, 2024 18:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 8722f6f to 4883e08 Compare September 26, 2024 00:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6cff699 to 404f119 Compare October 2, 2024 19:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9f5edee to c10478c Compare October 14, 2024 19:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from f5d19e2 to 863a774 Compare October 23, 2024 14:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 863a774 to 4c5e602 Compare October 25, 2024 13:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 8f6da5b to 1506df7 Compare August 15, 2025 10:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1506df7 to 673f4b3 Compare August 19, 2025 16:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 103c707 to 1311241 Compare September 6, 2025 23:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7145fe2 to d10b691 Compare September 18, 2025 02:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 4e3e0ac to 60f7de6 Compare October 1, 2025 02:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f87335d to badc884 Compare October 11, 2025 17:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c89a807 to 3f9f91b Compare October 21, 2025 00:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3f9f91b to d865d41 Compare October 28, 2025 18:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 12919d2 to 61f70ed Compare November 12, 2025 04:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 61f70ed to b0aba98 Compare November 18, 2025 12:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 22ff9f2 to aaa8214 Compare December 14, 2025 01:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aaa8214 to e5f49d8 Compare December 31, 2025 15:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 58d20cd to ccfa0c5 Compare January 13, 2026 16:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ccfa0c5 to 61bd4de Compare January 15, 2026 18:01
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