-
Notifications
You must be signed in to change notification settings - Fork 0
Commit 0914190
authored
chore(deps): update all dependencies (#12)
[](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)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](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)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](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) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](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) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [vite-plugin-dts](https://togithub.com/qmhc/vite-plugin-dts) |
[`3.5.0` ->
`3.5.1`](https://renovatebot.com/diffs/npm/vite-plugin-dts/3.5.0/3.5.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>Microsoft/playwright (@​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()`.
([#​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.
([#​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
([#​14031](https://togithub.com/vitejs/vite/issues/14031))
([4021a0e](https://togithub.com/vitejs/vite/commit/4021a0e)), closes
[#​14031](https://togithub.com/vitejs/vite/issues/14031)
- chore(deps): update all non-major dependencies
([#​13938](https://togithub.com/vitejs/vite/issues/13938))
([a1b519e](https://togithub.com/vitejs/vite/commit/a1b519e)), closes
[#​13938](https://togithub.com/vitejs/vite/issues/13938)
- fix: dynamic import vars ignored warning
([#​14006](https://togithub.com/vitejs/vite/issues/14006))
([4479431](https://togithub.com/vitejs/vite/commit/4479431)), closes
[#​14006](https://togithub.com/vitejs/vite/issues/14006)
- fix(build): silence warn dynamic import module when
inlineDynamicImports true
([#​13970](https://togithub.com/vitejs/vite/issues/13970))
([7a77aaf](https://togithub.com/vitejs/vite/commit/7a77aaf)), closes
[#​13970](https://togithub.com/vitejs/vite/issues/13970)
- perf: improve build times and memory utilization
([#​14016](https://togithub.com/vitejs/vite/issues/14016))
([9d7d45e](https://togithub.com/vitejs/vite/commit/9d7d45e)), closes
[#​14016](https://togithub.com/vitejs/vite/issues/14016)
- perf: replace startsWith with ===
([#​14005](https://togithub.com/vitejs/vite/issues/14005))
([f5c1224](https://togithub.com/vitejs/vite/commit/f5c1224)), closes
[#​14005](https://togithub.com/vitejs/vite/issues/14005)
</details>
<details>
<summary>qmhc/vite-plugin-dts (vite-plugin-dts)</summary>
###
[`v3.5.1`](https://togithub.com/qmhc/vite-plugin-dts/blob/HEAD/CHANGELOG.md#351-2023-08-06)
[Compare
Source](https://togithub.com/qmhc/vite-plugin-dts/compare/v3.5.0...v3.5.1)
##### Bug Fixes
- obviate effect of declarationDir config
([7dee40b](https://togithub.com/qmhc/vite-plugin-dts/commit/7dee40b1ff79f4250d2af543457e73d8dd71e7c6)),
closes
[#​258](https://togithub.com/qmhc/vite-plugin-dts/issues/258)
</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/ui).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40MC4zIiwidXBkYXRlZEluVmVyIjoiMzYuNDAuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 9498c12 commit 0914190Copy full SHA for 0914190
File tree
Expand file treeCollapse file tree
2 files changed
+55
-55
lines changedFilter options
Expand file treeCollapse file tree
2 files changed
+55
-55
lines changed+5-5Lines changed: 5 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
51 | 51 |
| |
52 | 52 |
| |
53 | 53 |
| |
54 |
| - | |
| 54 | + | |
55 | 55 |
| |
56 |
| - | |
| 56 | + | |
57 | 57 |
| |
58 | 58 |
| |
59 | 59 |
| |
60 | 60 |
| |
61 |
| - | |
| 61 | + | |
62 | 62 |
| |
63 | 63 |
| |
64 | 64 |
| |
65 |
| - | |
66 |
| - | |
| 65 | + | |
| 66 | + | |
67 | 67 |
| |
68 | 68 |
| |
69 | 69 |
| |
|
+50-50Lines changed: 50 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments