Skip to content

Commit

Permalink
chore(deps): update all dependencies (#24)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@playwright/test](https://playwright.dev)
([source](https://togithub.com/Microsoft/playwright)) | [`1.36.2` ->
`1.37.0`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.36.2/1.37.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@playwright%2ftest/1.37.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@playwright%2ftest/1.37.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@playwright%2ftest/1.36.2/1.37.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@playwright%2ftest/1.36.2/1.37.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`20.4.7` ->
`20.4.10`](https://renovatebot.com/diffs/npm/@types%2fnode/20.4.7/20.4.10)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.4.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.4.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.4.7/20.4.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.4.7/20.4.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [happy-dom](https://togithub.com/capricorn86/happy-dom) | [`10.8.0` ->
`10.9.0`](https://renovatebot.com/diffs/npm/happy-dom/10.8.0/10.9.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/happy-dom/10.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/happy-dom/10.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/happy-dom/10.8.0/10.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/happy-dom/10.8.0/10.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [vite](https://togithub.com/vitejs/vite/tree/main/#readme)
([source](https://togithub.com/vitejs/vite)) | [`4.4.8` ->
`4.4.9`](https://renovatebot.com/diffs/npm/vite/4.4.8/4.4.9) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/vite/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/4.4.8/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/4.4.8/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>Microsoft/playwright (@&#8203;playwright/test)</summary>

###
[`v1.37.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.37.0)

[Compare
Source](https://togithub.com/Microsoft/playwright/compare/v1.36.2...v1.37.0)

#### ✨ New tool to merge reports

If you run tests on multiple shards, you can now merge all reports in a
single HTML report (or any other report)
using the new `merge-reports` CLI tool.

Using `merge-reports` tool requires the following steps:

1.  Adding a new "blob" reporter to the config when running on CI:

    ```js title="playwright.config.ts"
    export default defineConfig({
      testDir: './tests',
      reporter: process.env.CI ? 'blob' : 'html',
    });
    ```

The "blob" reporter will produce ".zip" files that contain all the
information
    about the test run.

2. Copying all "blob" reports in a single shared location and running
`npx playwright merge-reports`:

    ```bash
    npx playwright merge-reports --reporter html ./all-blob-reports
    ```

Read more in [our
documentation](https://playwright.dev/docs/test-sharding).

#### 📚 Debian 12 Bookworm Support

Playwright now supports Debian 12 Bookworm on both x86\_64 and arm64 for
Chromium, Firefox and WebKit.
Let us know if you encounter any issues!

Linux support looks like this:

|          | Ubuntu 20.04 | Ubuntu 22.04 | Debian 11 | Debian 12 |
| :--- | :---: | :---: | :---: | :---: |
| Chromium | ✅ | ✅ | ✅ | ✅ |
| WebKit | ✅ | ✅ | ✅ | ✅ |
| Firefox | ✅ | ✅ | ✅ | ✅ |

#### 🌈 UI Mode Updates

- UI Mode now respects project dependencies. You can control which
dependencies to respect by checking/unchecking them in a projects list.
-   Console logs from the test are now displayed in the Console tab.

#### Browser Versions

-   Chromium 116.0.5845.82
-   Mozilla Firefox 115.0
-   WebKit 17.0

This version was also tested against the following stable channels:

-   Google Chrome 115
-   Microsoft Edge 115

</details>

<details>
<summary>capricorn86/happy-dom (happy-dom)</summary>

###
[`v10.9.0`](https://togithub.com/capricorn86/happy-dom/releases/tag/v10.9.0)

[Compare
Source](https://togithub.com/capricorn86/happy-dom/compare/v10.8.1...v10.9.0)

##### 🎨 Features

- Adds support for `Node.isSameNode()`.
([#&#8203;757](https://togithub.com/capricorn86/happy-dom/issues/757))

###
[`v10.8.1`](https://togithub.com/capricorn86/happy-dom/releases/tag/v10.8.1)

[Compare
Source](https://togithub.com/capricorn86/happy-dom/compare/v10.8.0...v10.8.1)

##### 👷‍♂️ Patch fixes

- Fixes an issue where an exception was thrown when loading an iframe
using a relative URL. The URL is now relative to the main document URL
instead.
([#&#8203;1003](https://togithub.com/capricorn86/happy-dom/issues/1003))

</details>

<details>
<summary>vitejs/vite (vite)</summary>

###
[`v4.4.9`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small449-2023-08-07-small)

[Compare
Source](https://togithub.com/vitejs/vite/compare/v4.4.8...v4.4.9)

- chore: fix eslint warnings
([#&#8203;14031](https://togithub.com/vitejs/vite/issues/14031))
([4021a0e](https://togithub.com/vitejs/vite/commit/4021a0e)), closes
[#&#8203;14031](https://togithub.com/vitejs/vite/issues/14031)
- chore(deps): update all non-major dependencies
([#&#8203;13938](https://togithub.com/vitejs/vite/issues/13938))
([a1b519e](https://togithub.com/vitejs/vite/commit/a1b519e)), closes
[#&#8203;13938](https://togithub.com/vitejs/vite/issues/13938)
- fix: dynamic import vars ignored warning
([#&#8203;14006](https://togithub.com/vitejs/vite/issues/14006))
([4479431](https://togithub.com/vitejs/vite/commit/4479431)), closes
[#&#8203;14006](https://togithub.com/vitejs/vite/issues/14006)
- fix(build): silence warn dynamic import module when
inlineDynamicImports true
([#&#8203;13970](https://togithub.com/vitejs/vite/issues/13970))
([7a77aaf](https://togithub.com/vitejs/vite/commit/7a77aaf)), closes
[#&#8203;13970](https://togithub.com/vitejs/vite/issues/13970)
- perf: improve build times and memory utilization
([#&#8203;14016](https://togithub.com/vitejs/vite/issues/14016))
([9d7d45e](https://togithub.com/vitejs/vite/commit/9d7d45e)), closes
[#&#8203;14016](https://togithub.com/vitejs/vite/issues/14016)
- perf: replace startsWith with ===
([#&#8203;14005](https://togithub.com/vitejs/vite/issues/14005))
([f5c1224](https://togithub.com/vitejs/vite/commit/f5c1224)), closes
[#&#8203;14005](https://togithub.com/vitejs/vite/issues/14005)

</details>

---

### 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](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/slipmatio/logger).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40MC4zIiwidXBkYXRlZEluVmVyIjoiMzYuNDAuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Aug 14, 2023
1 parent 29a0e88 commit 87bef60
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 51 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
],
"license": "MIT",
"devDependencies": {
"@playwright/test": "1.36.2",
"@types/node": "20.4.7",
"@playwright/test": "1.37.0",
"@types/node": "20.4.10",
"@vitejs/plugin-vue": "4.2.3",
"@vitest/coverage-v8": "0.34.1",
"@vue/test-utils": "2.4.1",
"happy-dom": "10.8.0",
"happy-dom": "10.9.0",
"typescript": "5.1.6",
"vite": "4.4.8",
"vite": "4.4.9",
"vite-plugin-dts": "3.2.0",
"vitest": "0.34.1",
"vue": "3.3.4",
Expand Down
112 changes: 65 additions & 47 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 87bef60

Please sign in to comment.