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): bump the npm group across 1 directory with 5 updates #42

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the npm group with 5 updates in the / directory:

Package From To
nw-builder 4.10.0 4.11.0
@types/chrome 0.0.270 0.0.272
@types/node 22.5.4 22.6.2
selenium-webdriver 4.24.0 4.25.0
vitest 2.0.5 2.1.1

Updates nw-builder from 4.10.0 to 4.11.0

Release notes

Sourced from nw-builder's releases.

v4.11.0

4.11.0 (2024-09-20)

Features

  • bld: add NSLocalNetworkUsageDescription option for MacOS (#1236) (eea3f69), closes #1235

Chores

  • bld: remove repetitive code for updating MacOS Helper apps (#1214) (e1edc05)
  • cli: migrate from yargs to commander (#1216) (7ca5a28)
  • deps: bump actions/setup-node from 4.0.3 to 4.0.4 in /.github/workflows in the gha group (#1232) (8473fc6)
  • deps: bump the npm group across 1 directory with 7 updates (#1233) (9efa2f4)
  • deps: bump vite from 5.3.5 to 5.4.6 (#1231) (6135682)
Changelog

Sourced from nw-builder's changelog.

4.11.0 (2024-09-20)

Features

  • bld: add NSLocalNetworkUsageDescription option for MacOS (#1236) (eea3f69), closes #1235

Chores

  • bld: remove repetitive code for updating MacOS Helper apps (#1214) (e1edc05)
  • cli: migrate from yargs to commander (#1216) (7ca5a28)
  • deps: bump actions/setup-node from 4.0.3 to 4.0.4 in /.github/workflows in the gha group (#1232) (8473fc6)
  • deps: bump the npm group across 1 directory with 7 updates (#1233) (9efa2f4)
  • deps: bump vite from 5.3.5 to 5.4.6 (#1231) (6135682)
Commits
  • 1de38a9 chore(main): release 4.11.0 (#1215)
  • 9efa2f4 chore(deps): bump the npm group across 1 directory with 7 updates (#1233)
  • 8473fc6 chore(deps): bump actions/setup-node from 4.0.3 to 4.0.4 in /.github/workflow...
  • eea3f69 feat(bld): add NSLocalNetworkUsageDescription option for MacOS (#1236)
  • 6135682 chore(deps): bump vite from 5.3.5 to 5.4.6 (#1231)
  • 7ca5a28 chore(cli): migrate from yargs to commander (#1216)
  • e1edc05 chore(bld): remove repetitive code for updating MacOS Helper apps (#1214)
  • See full diff in compare view

Updates @types/chrome from 0.0.270 to 0.0.272

Commits

Updates @types/node from 22.5.4 to 22.6.2

Commits

Updates selenium-webdriver from 4.24.0 to 4.25.0

Release notes

Sourced from selenium-webdriver's releases.

Selenium 4.25.0

Detailed Changelogs by Component

Java     |     Python     |     DotNet     |     Ruby     |     JavaScript     |     IEDriver

What's Changed

... (truncated)

Commits
  • 030fcf7 [ci] Using the commit sha and quoting values in workflow
  • 2d8e47d [ci] Setting permissions on workflow
  • aabdb7f Update mirror info (Fri Sep 20 00:22:17 UTC 2024)
  • 72f3c94 [ci] Fixing typo on workflow
  • f6f3ef3 [ci] Trying out a different release action
  • 96976cc [ci] Removing release notes headers
  • f08149c [ci] Continuing if tag already exists
  • dc05aef [ci] Fetching all history and trunk
  • ea4ecca [ci] Fetching tags after the build has completed.
  • 54d8355 [ci] Enabling workflow to be triggered manually
  • Additional commits viewable in compare view

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

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 npm group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [nw-builder](https://github.com/nwutils/nw-builder) | `4.10.0` | `4.11.0` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.270` | `0.0.272` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.4` | `22.6.2` |
| [selenium-webdriver](https://github.com/SeleniumHQ/selenium) | `4.24.0` | `4.25.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.0.5` | `2.1.1` |



Updates `nw-builder` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/nwutils/nw-builder/releases)
- [Changelog](https://github.com/nwutils/nw-builder/blob/main/CHANGELOG.md)
- [Commits](nwutils/nw-builder@v4.10.0...v4.11.0)

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

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

Updates `selenium-webdriver` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/SeleniumHQ/selenium/releases)
- [Commits](SeleniumHQ/selenium@selenium-4.24.0...selenium-4.25.0)

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)

---
updated-dependencies:
- dependency-name: nw-builder
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/chrome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: selenium-webdriver
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

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 25, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 26, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Sep 26, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-ed2199da12 branch September 26, 2024 00:25
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