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

Bump the minor group in /trace-viewer with 3 updates #550

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 27, 2024

Bumps the minor group in /trace-viewer with 3 updates: @playwright/test, svelte-check and svelte-codemirror-editor.

Updates @playwright/test from 1.41.2 to 1.42.0

Release notes

Sourced from @​playwright/test's releases.

v1.42.0

New APIs

  • New method page.addLocatorHandler() registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears:
// Setup the handler.
await page.addLocatorHandler(
    page.getByRole('heading', { name: 'Hej! You are in control of your cookies.' }),
    async () => {
      await page.getByRole('button', { name: 'Accept all' }).click();
    });
// Write the test as usual.
await page.goto('https://www.ikea.com/');
await page.getByRole('link', { name: 'Collection of blue and white' }).click();
await expect(page.getByRole('heading', { name: 'Light and easy' })).toBeVisible();
electronApp.on('console', async msg => {
  const values = [];
  for (const arg of msg.args())
    values.push(await arg.jsonValue());
  console.log(...values);
});
await electronApp.evaluate(() => console.log('hello', 5, { foo: 'bar' }));
  • New syntax for adding tags to the tests (@-tokens in the test title are still supported):
test('test customer login', {
  tag: ['@fast', '@login'],
}, async ({ page }) => {
  // ...
});

Use --grep command line option to run only tests with certain tags.

npx playwright test --grep @fast
  • --project command line flag now supports '*' wildcard:
npx playwright test --project='*mobile*'
</tr></table> 

... (truncated)

Commits

Updates svelte-check from 3.6.4 to 3.6.5

Release notes

Sourced from svelte-check's releases.

svelte-check-3.6.5

  • fix: adjust $props() comment type logic (#2294)
  • fix: use Svelte 4 compiler from user when available
  • fix: adjust snippet helper type to new snippet API
  • fix: also take type argument into account when analyzing $props()
  • fix: don't add form type to zero types when property is not typed out
Commits
  • 259ff2c fix: don't add form types when not typed out
  • 6badc2f fix: also take type argument into account when analyzing $props()
  • 8976bbe fix: adjust snippet helper type to new snippet API
  • 0b1cb06 fix: use Svelte 4 compiler from user when available
  • 00e347e feat: completion for custom element tag name and event (#2300)
  • 1b5e913 fix: adjust $props() comment type logic (#2294)
  • See full diff in compare view

Updates svelte-codemirror-editor from 1.2.0 to 1.3.0

Release notes

Sourced from svelte-codemirror-editor's releases.

v1.3.0

1.3.0 (2024-02-27)

Bug Fixes

  • use same event dispatcher (409cae6)

Features

  • dispatch event 'ready' when editorview initialized (b400ecf)
Changelog

Sourced from svelte-codemirror-editor's changelog.

1.3.0 (2024-02-27)

Bug Fixes

  • use same event dispatcher (409cae6)

Features

  • dispatch event 'ready' when editorview initialized (b400ecf)
Commits
  • d0819b3 chore(release): 1.3.0 [skip ci]
  • 409cae6 fix: use same event dispatcher
  • b400ecf feat: dispatch event 'ready' when editorview initialized
  • See full diff 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 minor group in /trace-viewer with 3 updates: [@playwright/test](https://github.com/microsoft/playwright), [svelte-check](https://github.com/sveltejs/language-tools) and [svelte-codemirror-editor](https://github.com/touchifyapp/svelte-codemirror-editor).


Updates `@playwright/test` from 1.41.2 to 1.42.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.41.2...v1.42.0)

Updates `svelte-check` from 3.6.4 to 3.6.5
- [Release notes](https://github.com/sveltejs/language-tools/releases)
- [Commits](sveltejs/language-tools@svelte-check-3.6.4...svelte-check-3.6.5)

Updates `svelte-codemirror-editor` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/touchifyapp/svelte-codemirror-editor/releases)
- [Changelog](https://github.com/touchifyapp/svelte-codemirror-editor/blob/main/CHANGELOG.md)
- [Commits](touchifyapp/svelte-codemirror-editor@v1.2.0...v1.3.0)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: svelte-check
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: svelte-codemirror-editor
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

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 Feb 27, 2024
@benbrandt benbrandt merged commit 903584f into main Feb 27, 2024
3 checks passed
@benbrandt benbrandt deleted the dependabot/npm_and_yarn/trace-viewer/minor-be40a14313 branch February 27, 2024 20:32
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.

1 participant