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 dependencies #29

Merged
merged 1 commit into from
Sep 18, 2023
Merged

chore(deps): update all dependencies #29

merged 1 commit into from
Sep 18, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 17, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.37.1 -> 1.38.0 age adoption passing confidence
@types/node (source) 20.6.0 -> 20.6.1 age adoption passing confidence
happy-dom 11.0.2 -> 12.0.1 age adoption passing confidence
vue-tsc 1.8.10 -> 1.8.11 age adoption passing confidence

Release Notes

Microsoft/playwright (@​playwright/test)

v1.38.0

Compare Source

UI Mode Updates

Playwright UI Mode

  1. Zoom into time range.
  2. Network panel redesign.

New APIs

  • [browserContext.on('weberror')][browserContext.on('weberror')]
  • [locator.pressSequentially()][locator.pressSequentially()]
  • The [reporter.onEnd()][reporter.onEnd()] now reports startTime and total run duration.

Deprecations

  • The following methods were deprecated: [page.type()][page.type()], [frame.type()][frame.type()], [locator.type()][locator.type()] and [elementHandle.type()][elementHandle.type()].
    Please use [locator.fill()][locator.fill()] instead which is much faster. Use [locator.pressSequentially()][locator.pressSequentially()] only if there is a
    special keyboard handling on the page, and you need to press keys one-by-one.

Breaking Changes: Playwright no longer downloads browsers automatically

[!NOTE]
If you are using @playwright/test package, this change does not affect you.

Playwright recommends to use @playwright/test package and download browsers via npx playwright install command. If you are following this recommendation, nothing has changed for you.

However, up to v1.38, installing the playwright package instead of @playwright/test did automatically download browsers. This is no longer the case, and we recommend to explicitly download browsers via npx playwright install command.

v1.37 and earlier

playwright package was downloading browsers during npm install, while @playwright/test was not.

v1.38 and later

playwright and @playwright/test packages do not download browsers during npm install.

Recommended migration

Run npx playwright install to download browsers after npm install. For example, in your CI configuration:

- run: npm ci
- run: npx playwright install --with-deps

Alternative migration option - not recommended

Add @playwright/browser-chromium, @playwright/browser-firefox and @playwright/browser-webkit as a dependency. These packages download respective browsers during npm install. Make sure you keep the version of all playwright packages in sync:

// package.json
{
  "devDependencies": {
    "playwright": "1.38.0",
    "@​playwright/browser-chromium": "1.38.0",
    "@​playwright/browser-firefox": "1.38.0",
    "@​playwright/browser-webkit": "1.38.0"
  }
}
Browser Versions
  • Chromium 117.0.5938.62
  • Mozilla Firefox 117.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 116
  • Microsoft Edge 116
capricorn86/happy-dom (happy-dom)

v12.0.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes "__dirname not defined" error when using ESM. The error was introduced in v12.0.0. (#​1069)

Thank you @​ekwoka for collaborating on a fix!

v12.0.0

Compare Source

💣 Breaking Changes
  • Changes the default user agent. The default user agent will now be Mozilla/5.0 (X11; {process.platform} {process.arch}) AppleWebKit/537.36 (KHTML, like Gecko) HappyDOM/{packageVersion}. (#​1067)
🎨 Features
  • It is now possible to pass user agent as an option to the Window constructor or by setting Window.happyDOM.settings.navigator.userAgent. (#​1067)
  • React will no longer output the message Download the React DevTools for a better development experience to the console when using the default user agent. It was previously detected as a supported browser. (#​1067)

v11.2.0

Compare Source

🎨 Features
  • Adds support for Window.crypto. (#​1050)

Thank you @​Ayc0 for your contribution!

v11.1.2

Compare Source

👷‍♂️ Patch fixes
  • Only dispatch "close" event in HTMLDialogElement.close() when dialog was open. (#​1064)

Thank you @​Schleuse for your contribution!

v11.1.1

Compare Source

👷‍♂️ Patch fixes
  • Adds support for the mime type "image/svg+xml" to DOMParser.parseFromString(). It will no longer add HTML tags when parsing SVGs. (#​1040)

Thank you @​drtimwright for your contribution!

v11.1.0

Compare Source

🎨 Features
  • Add support for handling the <g> element as a an SVG element. (#​1034)

Thank you @​ottoszika for your contribution!

v11.0.6

Compare Source

👷‍♂️ Patch fixes

v11.0.5

Compare Source

👷‍♂️ Patch fixes
  • Increases timeout in Window.happyDOM.whenAsyncComplete(). (#​1059)

v11.0.4

Compare Source

👷‍♂️ Patch fixes
  • Jest was using setTimeout from Happy DOM internally for detecting when a test times out. This caused Window.happyDOM.whenAsyncComplete() and Window.happyDOM.cancelAsync() to not work as expected inside Jest. This is a bug in Jest, but this release adds a temporary fix to "@​happy-dom/jest-environment" until Jest has solved it. (#​1057)

v11.0.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes an issue where the Promise returned by Window.happyDOM.whenAsyncComplete() was resolved to early in some scenarios. (#​1053)
vuejs/language-tools (vue-tsc)

v1.8.11

Compare Source

  • feat: slot references codeLens counting fragment default slot (#​932)
  • fix: correct message for @vue-expect-error (#​3541) - thanks @​so1ve
  • fix: avoid global macros conflicts with local variables (#​3550) - thanks @​so1ve
  • fix: script setup comments at top breaks global macros (#​3549) - thanks @​so1ve
  • fix(vue-tsc): prevent rebuild in incremental mode throwing error (#​3556) - thanks @​blake-newman
Full-time Support by

WebContainer API is here.

Our Platinum Sponsors
The Intuitive Web Framework
The Progressive JavaScript Framework
Our Silver Sponsors

Add you via GitHub Sponsors or Open Collective

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Europe/Helsinki, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

@github-actions
Copy link

Coverage Summary

Status Category Percentage Covered / Total
🔵 Lines 89.61% 233 / 260
🔵 Statements 89.61% 233 / 260
🔵 Functions 93.75% 15 / 16
🔵 Branches 84.61% 44 / 52
File Coverage
File Stmts % Branch % Funcs % Lines Uncovered Lines
src/index.ts 86.48% 81.57% 93.33% 86.48% 37-38, 50-51, 83, 94-100, 105-106, 164-172, 177-178
src/types.ts 100% 100% 100% 100%
src/vue.ts 96.61% 92.3% 100% 96.61% 57-58

@renovate renovate bot merged commit 777ce51 into main Sep 18, 2023
3 checks passed
@renovate renovate bot deleted the renovate/all branch September 18, 2023 02:03
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.

0 participants