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): update all non-major dependencies (main) #20514

Merged
merged 2 commits into from Apr 28, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 26, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^18.16.0 -> ^18.16.1 age adoption passing confidence
@vitejs/plugin-vue (source) ^4.2.0 -> ^4.2.1 age adoption passing confidence
playwright (source) ^1.32.3 -> ^1.33.0 age adoption passing confidence
vite (source) ~4.3.2 -> ~4.3.3 age adoption passing confidence
vite (source) ^4.3.2 -> ^4.3.3 age adoption passing confidence
vue-loader ^17.0.1 -> ^17.1.0 age adoption passing confidence
vue-tsc ^1.4.4 -> ^1.6.0 age adoption passing confidence
webpack ^5.80.0 -> ^5.81.0 age adoption passing confidence

Release Notes

vitejs/vite-plugin-vue

v4.2.1

Compare Source

Microsoft/playwright

v1.33.0

Compare Source

Locators Update
  • Use [locator.or()][locator.or()] to create a locator that matches either of the two locators.
    Consider a scenario where you'd like to click on a "New email" button, but sometimes a security settings dialog shows up instead.
    In this case, you can wait for either a "New email" button, or a dialog and act accordingly:

    const newEmail = page.getByRole('button', { name: 'New' });
    const dialog = page.getByText('Confirm security settings');
    await expect(newEmail.or(dialog)).toBeVisible();
    if (await dialog.isVisible())
      await page.getByRole('button', { name: 'Dismiss' }).click();
    await newEmail.click();
  • Use new options hasNot and hasNotText in [locator.filter()][locator.filter()]
    to find elements that do not match certain conditions.

    const rowLocator = page.locator('tr');
    await rowLocator
        .filter({ hasNotText: 'text in column 1' })
        .filter({ hasNot: page.getByRole('button', { name: 'column 2 button' }) })
        .screenshot();
  • Use new web-first assertion [locatorAssertions.toBeAttached()][locatorAssertions.toBeAttached()] to ensure that the element
    is present in the page's DOM. Do not confuse with the [locatorAssertions.toBeVisible()][locatorAssertions.toBeVisible()] that ensures that
    element is both attached & visible.

New APIs
  • [locator.or()][locator.or()]
  • New option hasNot in [locator.filter()][locator.filter()]
  • New option hasNotText in [locator.filter()][locator.filter()]
  • [locatorAssertions.toBeAttached()][locatorAssertions.toBeAttached()]
  • New option timeout in [route.fetch()][route.fetch()]
  • [reporter.onExit()][reporter.onExit()]
⚠️ Breaking change
  • The mcr.microsoft.com/playwright:v1.34.0 now serves a Playwright image based on Ubuntu Jammy.
    To use the focal-based image, please use mcr.microsoft.com/playwright:v1.34.0-focal instead.
Browser Versions
  • Chromium 113.0.5672.53
  • Mozilla Firefox 112.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 112
  • Microsoft Edge 112
vitejs/vite

v4.3.3

Compare Source

vuejs/vue-loader

v17.1.0

Bug Fixes
vuejs/language-tools

v1.6.0

Compare Source

  • feat(doctor): show warning for TS 4.9 (#​2190)
  • feat: support inlayHints for vueCompilerOptions.optionsWrapper
  • fix: avoid props type-checking for VNode (#​2720)
  • fix: revert "fix: trim modifiers for slot name"
  • refactor: update extension settings from volar.* to vue.*
  • refactor(language-server): remove petiteVue, vitePress from server init options

    for IDEs other than VSCode, use additionalExtensions: ['html', 'md'] instead of

Breaking changes

  • deprecated vueCompilerOptions.jsxTemplates (#​2677)
  • deprecated vueCompilerOptions.nativeTags (#​2685)

Full-time Support by


WebContainer API is here.


Our Sponsors ⭐✨




Add you via GitHub Sponsors or Open Collective

v1.5.4

Compare Source

  • fix: defineExpose macro missing for Vue 3.3
  • fix(component-meta): meta info is empty if missing vue-component-type-helpers dependency
  • fix: don't check time for codeActions when saving multiple files

v1.5.3

Compare Source

  • feat: support type-checking for dynamic components
  • feat: support element type-checking for directives
  • fix: cannot infer event type for <Transition> (#​2700)
  • fix: tag / prop casing status not working
  • fix: slot name accidentally included modifiers in virtual code
  • fix: avoid always pop "Saving time is too long" edge case
  • fix: only generate JSX.ElementChildrenAttribute type when vueCompilerOptions.jsxSlots enabled (#​2714)
  • fix: top level await error in SFC if two script blocks are present (#​2712)
  • fix: cannot use generic components inside defineComponent (#​2709)
  • fix: intellisense not working in es module project (#​2661)

v1.5.2

Compare Source

  • fix: cannot recognize hyphenate tag name (#​2688)

v1.5.1

Compare Source

  • refactor: deprecate nativeTags option (#​2685)
  • fix: props type-check not working for one argument functional component (#​2686)
  • fix: <Suspense> default slot reporting error (#​2683)
  • fix: cannot infer slots type in vue2 project (#​2682)
  • fix: static directive arg should not recognize as expression (#​2678)

v1.5.0

Compare Source

  • refactor: deprecate jsxTemplates option (#​2677)
webpack/webpack

v5.81.0

Compare Source

New Features

Bug Fixes

Tests & Contributor Experience

Developer Experience

Dependencies & Maintenance

New Contributors

Full Changelog: webpack/webpack@v5.80.0...v5.81.0


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 has been generated by Mend Renovate. View repository job log here.

@codesandbox
Copy link

codesandbox bot commented Apr 26, 2023

CodeSandbox logoCodeSandbox logo  Open in CodeSandbox Web Editor | VS Code | VS Code Insiders

@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from 99e6c65 to 59c5fa2 Compare April 27, 2023 07:25
@renovate renovate bot changed the title chore(deps): update devdependency @types/node to ^18.16.1 (main) chore(deps): update all non-major dependencies (main) Apr 27, 2023
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from 9f42e8c to dc5e594 Compare April 28, 2023 10:03
@renovate
Copy link
Contributor Author

renovate bot commented Apr 28, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@danielroe danielroe merged commit d8176f1 into main Apr 28, 2023
17 checks passed
@danielroe danielroe deleted the renovate/main-all-minor-patch branch April 28, 2023 10:18
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.

None yet

1 participant