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-dev): bump the dev-dependencies group with 9 updates #686

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 16, 2024

Bumps the dev-dependencies group with 9 updates:

Package From To
@biomejs/biome 1.8.3 1.9.1
@rspack/cli 1.0.3 1.0.5
@rspack/core 1.0.3 1.0.5
happy-dom 15.7.3 15.7.4
publint 0.2.10 0.2.11
vitest 2.0.5 2.1.1
@types/node 22.5.4 22.5.5
@types/react 18.3.5 18.3.6
vite 5.4.3 5.4.5

Updates @biomejs/biome from 1.8.3 to 1.9.1

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.9.1

Analyzer

CLI

Bug fixes

  • useEditorConfig now loads the editorconfig when running biome ci #3864. Contributed by @​dyc3

  • Revert #3731 to fix broken quick fixes and code actions. Contributed by @​nhedger

Linter

New Features

Bug fixes

What's Changed

Other changes

New Contributors

Full Changelog: biomejs/biome@cli/v1.9.1-nightly.12688b6...cli/v1.9.1

CLI v1.9.1-nightly.12688b6

Analyzer

CLI

Bug fixes

  • useEditorConfig now loads the editorconfig when running biome ci #3864. Contributed by @​dyc3

Configuration

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.9.1 (2024-09-15)

CLI

Bug fixes

  • useEditorConfig now loads the editorconfig when running biome ci #3864. Contributed by @​dyc3

Editors

Bug fixes

  • Revert #3731 to fix broken quick fixes and code actions. Contributed by @​nhedger

Linter

New Features

Bug fixes

v1.9.0 (2024-09-12)

Analyzer

CLI

New features

  • Add --graphql-linter-enabled option, to control whether the linter should be enabled or not for GraphQL files. Contributed by @​ematipico

  • New EXPERIMENTAL search command. The search command allows you to search a Biome project using GritQL syntax.

    GritQL is a powerful language that lets you do structural searches on your codebase. This means that trivia such as whitespace or even the type of strings quotes used will be ignored in your search query. It also has many features for querying the structure of your code, making it much more elegant for searching code than regular expressions.

    While we believe this command may already be useful to users in some situations (especially when integrated in the IDE extensions!), we also had an ulterior motive for adding this command: We intend to utilize GritQL for our plugin efforts, and by allowing our users to try it out in a first iteration, we hope to gain insight in the type of queries you want to do, as well as the bugs we need to focus on.

    For now, the search command is explicitly marked as EXPERIMENTAL, since many bugs remain. Keep this in mind when you try it out, and please let us know your issues!

    Note: GritQL escapes code snippets using backticks, but most shells interpret backticks as command invocations. To avoid this, it's best to put single quotes around your Grit queries.

    biome search '`console.log($message)`' # find all `console.log` invocations

... (truncated)

Commits

Updates @rspack/cli from 1.0.3 to 1.0.5

Release notes

Sourced from @​rspack/cli's releases.

v1.0.5

What's Changed

Bug Fixes 🐞

Document Updates 📖

Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v1.0.4...v1.0.5

v1.0.4

What's Changed

Exciting New Features 🎉

Bug Fixes 🐞

... (truncated)

Commits

Updates @rspack/core from 1.0.3 to 1.0.5

Release notes

Sourced from @​rspack/core's releases.

v1.0.5

What's Changed

Bug Fixes 🐞

Document Updates 📖

Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v1.0.4...v1.0.5

v1.0.4

What's Changed

Exciting New Features 🎉

Bug Fixes 🐞

... (truncated)

Commits
  • d3d06f0 Release Packages:1.0.5
  • 8b89d53 refactor: css-extract using parseMeta to store css info (#7878)
  • fa38b86 fix: should provide full error message with error name when hideStack is se...
  • b1bf153 fix: remove LightningCssMinimizerRspackPlugin exclude option default value (#...
  • f5c6a1b refactor(types): remove @​ts-expect-error in Compiler and MultiCompiler (#7824)
  • 700be1d release:1.0.4 (#7844)
  • 092a71b feat: make namedChunkGroups iterable (#7840)
  • be2ee96 chore(infra/biome): enable noImplicitAnyLet and noArrayIndexKey rules (#7...
  • 2e42f0b fix: improve stats string for match resource with long data url (#7823)
  • ad91094 fix(loader-runner): remove legacy Node compatible code (#7818)
  • Additional commits viewable in compare view

Updates happy-dom from 15.7.3 to 15.7.4

Release notes

Sourced from happy-dom's releases.

v15.7.4

👷‍♂️ Patch fixes

  • Fixes incorrect handling of non-node items inserted using replaceWith(), before() and after() - By @​BenjaminAster in task #1533
Commits
  • afd256b fix: [1533] Fixes incorrect handling of non-node items inserted using replace...
  • See full diff in compare view

Updates publint from 0.2.10 to 0.2.11

Release notes

Sourced from publint's releases.

v0.2.11

Features

  • Update formatMessage() utility with a new color option to force enable or disable returning color in string (bluwy/publint#110)

New Contributors

Full Changelog: bluwy/publint@v0.2.10...v0.2.11

Commits

Updates vitest from 2.0.5 to 2.1.1

Release notes

Sourced from vitest's releases.

v2.1.1

   🐞 Bug Fixes

    View changes on GitHub

v2.1.0

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 vitest-dev/vitest#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

... (truncated)

Commits
  • 699055e chore: release v2.1.1
  • 36b5ace fix(workspace): resolve glob pattern once to avoid name collision (#6489)
  • 16aa76c fix(browser): make example test callbacks async (#6484)
  • 9f1fd18 chore: release v2.1.0
  • 94a186e fix(ui): render project name consistently (#6329)
  • ac698b1 fix: expect.getState().testPath always returns correct path (#6472)
  • b2be23e chore: release v2.1.0-beta.7
  • 0b44722 fix: ignore importer when resolving Vitest (#6469)
  • 97773e2 chore: fix edge case in license files bundling (#6460)
  • 7ab0f4a feat(browser): support --inspect-brk (#6434)
  • Additional commits viewable in compare view

Updates @types/node from 22.5.4 to 22.5.5

Commits

Updates @types/react from 18.3.5 to 18.3.6

Commits

Updates vite from 5.4.3 to 5.4.5

Changelog

Sourced from vite's changelog.

5.4.5 (2024-09-13)

5.4.4 (2024-09-11)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dev-dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.8.3` | `1.9.1` |
| [@rspack/cli](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack-cli) | `1.0.3` | `1.0.5` |
| [@rspack/core](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `1.0.3` | `1.0.5` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `15.7.3` | `15.7.4` |
| [publint](https://github.com/bluwy/publint/tree/HEAD/pkg) | `0.2.10` | `0.2.11` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.0.5` | `2.1.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.4` | `22.5.5` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.5` | `18.3.6` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.3` | `5.4.5` |


Updates `@biomejs/biome` from 1.8.3 to 1.9.1
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.9.1/packages/@biomejs/biome)

Updates `@rspack/cli` from 1.0.3 to 1.0.5
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.0.5/packages/rspack-cli)

Updates `@rspack/core` from 1.0.3 to 1.0.5
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.0.5/packages/rspack)

Updates `happy-dom` from 15.7.3 to 15.7.4
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v15.7.3...v15.7.4)

Updates `publint` from 0.2.10 to 0.2.11
- [Release notes](https://github.com/bluwy/publint/releases)
- [Commits](https://github.com/bluwy/publint/commits/v0.2.11/pkg)

Updates `vitest` from 2.0.5 to 2.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/vitest)

Updates `@types/node` from 22.5.4 to 22.5.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react` from 18.3.5 to 18.3.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `vite` from 5.4.3 to 5.4.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.5/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.5/packages/vite)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@rspack/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@rspack/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: happy-dom
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: publint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 16, 2024
Copy link

changeset-bot bot commented Sep 16, 2024

⚠️ No Changeset found

Latest commit: ff38d9c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants