renovate
4736776ae9
chore: bump up jotai-effect version to v1 ( #6472 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [jotai-effect](https://togithub.com/jotaijs/jotai-effect ) | [`^0.6.0` -> `^1.0.0`](https://renovatebot.com/diffs/npm/jotai-effect/0.6.0/1.0.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/jotai-effect/1.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jotai-effect/1.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jotai-effect/0.6.0/1.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jotai-effect/0.6.0/1.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>jotaijs/jotai-effect (jotai-effect)</summary>
### [`v1.0.0`](https://togithub.com/jotaijs/jotai-effect/releases/tag/v1.0.0 )
[Compare Source](https://togithub.com/jotaijs/jotai-effect/compare/v0.6.0...v1.0.0 )
I am thrilled to announce the release of Jotai Effect version 1.0! This milestone represents a significant achievement marking its readiness for production use.
Jotai Effect was started last October with the aim of providing a utility package for reactive side effects within the Jotai ecosystem. Over the past six months, I have been closely monitoring the API's stability and its effectiveness in real-world applications.
For those eagerly waiting for Jotai to be considered production-ready, the moment has finally arrived. The feedback from our community has been overwhelmingly positive, and today, I'm confident that Jotai Effect is ready for its prime time.
I couldn't have reached this point without the help of our amazing contributors, Daishi Kato ([@​dai-shi](https://togithub.com/dai-shi )) and Alex Yang ([@​himself65](https://togithub.com/himself65 )). Their early contributions were pivotal in honing the library to what it is today. Additionally, I want to extend my gratitude to our vibrant community on [Discord](https://discord.com/invite/poimandres ) for their continuous support and feedback.
Thank you.
As we celebrate this release, I encourage you to explore [Jotai Effect](https://jotai.org/docs/extensions/effect ) and discover how it can streamline your reactive programming workflows. Happy Coding!
Best regards,
David Maskasky
*The full discussion can be viewed [here](https://togithub.com/jotaijs/jotai-effect/discussions/34 ).*
</details>
---
### 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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-04-08 02:12:52 +00:00
renovate
4351dc8541
chore: bump up css-loader version to v7 ( #6458 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [css-loader](https://togithub.com/webpack-contrib/css-loader ) | [`^6.10.0` -> `^7.0.0`](https://renovatebot.com/diffs/npm/css-loader/6.10.0/7.0.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/css-loader/7.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/css-loader/7.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/css-loader/6.10.0/7.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/css-loader/6.10.0/7.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>webpack-contrib/css-loader (css-loader)</summary>
### [`v7.0.0`](https://togithub.com/webpack-contrib/css-loader/blob/HEAD/CHANGELOG.md#700-2024-04-04 )
[Compare Source](https://togithub.com/webpack-contrib/css-loader/compare/v6.11.0...v7.0.0 )
##### ⚠ BREAKING CHANGES
- The `modules.namedExport` option is `true` by default if you enable the `esModule` option
Migration guide:
Before:
```js
import style from "./style.css";
console.log(style.myClass);
```
After:
```js
import * as style from "./style.css";
console.log(style.myClass);
```
- The `modules.exportLocalsConvention` has the value `as-is` when the `modules.namedExport` option is `true` and you don't specify a value
- Minimum supported webpack version is `5.27.0`
- Minimum supported Node.js version is `18.12.0`
##### Features
- The `modules.namedExports` option works fine with any `modules.exportLocalsConvention` values ([f96a110](f96a11007d
))
- Added dashed variants for the `modules.exportLocalsConvention` options ([40e1668](40e1668b83
))
### [`v6.11.0`](https://togithub.com/webpack-contrib/css-loader/blob/HEAD/CHANGELOG.md#6110-2024-04-03 )
[Compare Source](https://togithub.com/webpack-contrib/css-loader/compare/v6.10.0...v6.11.0 )
##### Features
- supports multiple composes ([#​1582](https://togithub.com/webpack-contrib/css-loader/issues/1582 )) ([bbca614](bbca61411d
))
##### Bug Fixes
- do not break `@scope` at-rule without params ([#​1581](https://togithub.com/webpack-contrib/css-loader/issues/1581 )) ([e022e3b](e022e3bb40
))
</details>
---
### 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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-04-08 01:55:38 +00:00
renovate
39c90a4428
chore: bump up undici version to v6.11.1 [SECURITY] ( #6457 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [undici](https://undici.nodejs.org ) ([source](https://togithub.com/nodejs/undici )) | [`6.6.2` -> `6.11.1`](https://renovatebot.com/diffs/npm/undici/6.6.2/6.11.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/undici/6.11.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/undici/6.11.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/undici/6.6.2/6.11.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/undici/6.6.2/6.11.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
### GitHub Vulnerability Alerts
#### [CVE-2024-30260](https://togithub.com/nodejs/undici/security/advisories/GHSA-m4v8-wqvr-p9f7 )
### Impact
Undici cleared Authorization and Proxy-Authorization headers for `fetch()`, but did not clear them for `undici.request()`.
### Patches
This has been patched in 6805746680
.
Fixes has been released in v5.28.4 and v6.11.1.
### Workarounds
use `fetch()` or disable `maxRedirections`.
### References
Linzi Shang reported this.
* https://hackerone.com/reports/2408074
* https://github.com/nodejs/undici/security/advisories/GHSA-3787-6prv-h9w3
#### [CVE-2024-30261](https://togithub.com/nodejs/undici/security/advisories/GHSA-9qxr-qj54-h672 )
### Impact
If an attacker can alter the `integrity` option passed to `fetch()`, they can let `fetch()` accept requests as valid even if they have been tampered.
### Patches
Fixed in d542b8cd39
.
Fixes has been released in v5.28.4 and v6.11.1.
### Workarounds
Ensure that `integrity` cannot be tampered with.
### References
https://hackerone.com/reports/2377760
---
### Release Notes
<details>
<summary>nodejs/undici (undici)</summary>
### [`v6.11.1`](https://togithub.com/nodejs/undici/compare/v6.11.0...6df3c738d03dc4014a26640316bf699950d62024 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.11.0...v6.11.1 )
### [`v6.11.0`](https://togithub.com/nodejs/undici/compare/v6.10.2...ee5f892f3955eaca37730ed30349153ba203e9cd )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.10.2...v6.11.0 )
### [`v6.10.2`](https://togithub.com/nodejs/undici/releases/tag/v6.10.2 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.10.1...v6.10.2 )
##### What's Changed
- Do not fail test if streams support typed arrays by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2978 ](https://togithub.com/nodejs/undici/pull/2978 )
- fix(fetch): properly redirect non-ascii location header url by [@​Xvezda](https://togithub.com/Xvezda ) in [https://github.com/nodejs/undici/pull/2971 ](https://togithub.com/nodejs/undici/pull/2971 )
- perf: Remove double-stringify in setCookie by [@​peterver](https://togithub.com/peterver ) in [https://github.com/nodejs/undici/pull/2980 ](https://togithub.com/nodejs/undici/pull/2980 )
- \[fix [#​2982](https://togithub.com/nodejs/undici/issues/2982 )] use DispatcherInterceptor type for Dispatcher#Compose by [@​clovis-guillemot](https://togithub.com/clovis-guillemot ) in [https://github.com/nodejs/undici/pull/2983 ](https://togithub.com/nodejs/undici/pull/2983 )
- fix: make EventSource properties enumerable by [@​MattBidewell](https://togithub.com/MattBidewell ) in [https://github.com/nodejs/undici/pull/2987 ](https://togithub.com/nodejs/undici/pull/2987 )
- docs: ✏️ fixed benchmark links by [@​benhalverson](https://togithub.com/benhalverson ) in [https://github.com/nodejs/undici/pull/2991 ](https://togithub.com/nodejs/undici/pull/2991 )
- fix([#​2986](https://togithub.com/nodejs/undici/issues/2986 )): bad start check by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2992 ](https://togithub.com/nodejs/undici/pull/2992 )
- fix(H2 Client): bind stream 'data' listener only after received 'response' event by [@​St3ffGv4](https://togithub.com/St3ffGv4 ) in [https://github.com/nodejs/undici/pull/2985 ](https://togithub.com/nodejs/undici/pull/2985 )
- feat: added search input by [@​benhalverson](https://togithub.com/benhalverson ) in [https://github.com/nodejs/undici/pull/2993 ](https://togithub.com/nodejs/undici/pull/2993 )
- chore: validate responses can be consumed without a Content-Length or… by [@​jacob-ebey](https://togithub.com/jacob-ebey ) in [https://github.com/nodejs/undici/pull/2995 ](https://togithub.com/nodejs/undici/pull/2995 )
- fix error message by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2998 ](https://togithub.com/nodejs/undici/pull/2998 )
- Revert "perf: reuse TextDecoder instance ([#​2863](https://togithub.com/nodejs/undici/issues/2863 ))" by [@​panva](https://togithub.com/panva ) in [https://github.com/nodejs/undici/pull/2999 ](https://togithub.com/nodejs/undici/pull/2999 )
- test: remove only by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/3001 ](https://togithub.com/nodejs/undici/pull/3001 )
##### New Contributors
- [@​Xvezda](https://togithub.com/Xvezda ) made their first contribution in [https://github.com/nodejs/undici/pull/2971 ](https://togithub.com/nodejs/undici/pull/2971 )
- [@​peterver](https://togithub.com/peterver ) made their first contribution in [https://github.com/nodejs/undici/pull/2980 ](https://togithub.com/nodejs/undici/pull/2980 )
- [@​clovis-guillemot](https://togithub.com/clovis-guillemot ) made their first contribution in [https://github.com/nodejs/undici/pull/2983 ](https://togithub.com/nodejs/undici/pull/2983 )
- [@​MattBidewell](https://togithub.com/MattBidewell ) made their first contribution in [https://github.com/nodejs/undici/pull/2987 ](https://togithub.com/nodejs/undici/pull/2987 )
- [@​benhalverson](https://togithub.com/benhalverson ) made their first contribution in [https://github.com/nodejs/undici/pull/2991 ](https://togithub.com/nodejs/undici/pull/2991 )
- [@​St3ffGv4](https://togithub.com/St3ffGv4 ) made their first contribution in [https://github.com/nodejs/undici/pull/2985 ](https://togithub.com/nodejs/undici/pull/2985 )
- [@​jacob-ebey](https://togithub.com/jacob-ebey ) made their first contribution in [https://github.com/nodejs/undici/pull/2995 ](https://togithub.com/nodejs/undici/pull/2995 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.10.0...v6.10.2
### [`v6.10.1`](https://togithub.com/nodejs/undici/compare/v6.10.0...dd3918fee4f90e02fb93ff1bc04e707144041938 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.10.0...v6.10.1 )
### [`v6.10.0`](https://togithub.com/nodejs/undici/releases/tag/v6.10.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.9.0...v6.10.0 )
#### What's Changed
- test: fix flakyness of issue-803 test by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2960 ](https://togithub.com/nodejs/undici/pull/2960 )
- Cleanup format by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2959 ](https://togithub.com/nodejs/undici/pull/2959 )
- Chore: run tests daily against node nightly by [@​mweberxyz](https://togithub.com/mweberxyz ) in [https://github.com/nodejs/undici/pull/2969 ](https://togithub.com/nodejs/undici/pull/2969 )
- fix: fix retry handler option by [@​acommodari](https://togithub.com/acommodari ) in [https://github.com/nodejs/undici/pull/2962 ](https://togithub.com/nodejs/undici/pull/2962 )
- build(deps): bump node from `4999fa1` to `577f8eb` in /build by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2974 ](https://togithub.com/nodejs/undici/pull/2974 )
- feat(TS): add types for composed dispatchers by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2967 ](https://togithub.com/nodejs/undici/pull/2967 )
- fix: count for error response and network errors by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2966 ](https://togithub.com/nodejs/undici/pull/2966 )
#### New Contributors
- [@​mweberxyz](https://togithub.com/mweberxyz ) made their first contribution in [https://github.com/nodejs/undici/pull/2969 ](https://togithub.com/nodejs/undici/pull/2969 )
- [@​acommodari](https://togithub.com/acommodari ) made their first contribution in [https://github.com/nodejs/undici/pull/2962 ](https://togithub.com/nodejs/undici/pull/2962 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.9.0...v6.10.0
### [`v6.9.0`](https://togithub.com/nodejs/undici/releases/tag/v6.9.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.8.0...v6.9.0 )
#### What's Changed
- feat: add new dispatch compose by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2826 ](https://togithub.com/nodejs/undici/pull/2826 )
- ci: add macos-latest to test-matrix by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2952 ](https://togithub.com/nodejs/undici/pull/2952 )
- types: align RequestInit.body type with lib.dom.ts by [@​jdufresne](https://togithub.com/jdufresne ) in [https://github.com/nodejs/undici/pull/2956 ](https://togithub.com/nodejs/undici/pull/2956 )
- ci: pin versions of github actions by [@​UlisesGascon](https://togithub.com/UlisesGascon ) in [https://github.com/nodejs/undici/pull/2957 ](https://togithub.com/nodejs/undici/pull/2957 )
- fetch: improve output for FormData, Response, Request by [@​mertcanaltin](https://togithub.com/mertcanaltin ) in [https://github.com/nodejs/undici/pull/2955 ](https://togithub.com/nodejs/undici/pull/2955 )
- perf: optimize collectASequenceOfBytes by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2958 ](https://togithub.com/nodejs/undici/pull/2958 )
#### New Contributors
- [@​jdufresne](https://togithub.com/jdufresne ) made their first contribution in [https://github.com/nodejs/undici/pull/2956 ](https://togithub.com/nodejs/undici/pull/2956 )
- [@​UlisesGascon](https://togithub.com/UlisesGascon ) made their first contribution in [https://github.com/nodejs/undici/pull/2957 ](https://togithub.com/nodejs/undici/pull/2957 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.8.0...v6.9.0
### [`v6.8.0`](https://togithub.com/nodejs/undici/releases/tag/v6.8.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.7.1...v6.8.0 )
#### What's Changed
- fix: send correct SNI for proxy connections by [@​chrros95](https://togithub.com/chrros95 ) in [https://github.com/nodejs/undici/pull/2939 ](https://togithub.com/nodejs/undici/pull/2939 )
- build(deps): bump node from `8bf9240` to `7bfef1d` in /build by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2937 ](https://togithub.com/nodejs/undici/pull/2937 )
- fetch: improve util.inspect output for web specifications by [@​mertcanaltin](https://togithub.com/mertcanaltin ) in [https://github.com/nodejs/undici/pull/2938 ](https://togithub.com/nodejs/undici/pull/2938 )
- ci: fix broken ci on windows and node v21 because of libuv bug by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2941 ](https://togithub.com/nodejs/undici/pull/2941 )
- perf: improve getResolveErrorBodyCallback by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2940 ](https://togithub.com/nodejs/undici/pull/2940 )
- fix: don't assign kAgent twice by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2942 ](https://togithub.com/nodejs/undici/pull/2942 )
- perf: dump immediatly if known size exceeds limit by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2882 ](https://togithub.com/nodejs/undici/pull/2882 )
- build(deps): bump node from `7bfef1d` to `4999fa1` in /build by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2946 ](https://togithub.com/nodejs/undici/pull/2946 )
- try to fix windows failure by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2950 ](https://togithub.com/nodejs/undici/pull/2950 )
- perf: improve parsing form-data by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2944 ](https://togithub.com/nodejs/undici/pull/2944 )
#### New Contributors
- [@​chrros95](https://togithub.com/chrros95 ) made their first contribution in [https://github.com/nodejs/undici/pull/2939 ](https://togithub.com/nodejs/undici/pull/2939 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.7.1...v6.8.0
### [`v6.7.1`](https://togithub.com/nodejs/undici/releases/tag/v6.7.1 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.7.0...v6.7.1 )
#### What's Changed
- fetch: use EOL of os-module by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2915 ](https://togithub.com/nodejs/undici/pull/2915 )
- ci: only send codecov from ubuntu and node by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2914 ](https://togithub.com/nodejs/undici/pull/2914 )
- tests: improve skip for unix.js tests, remove skipped tests by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2916 ](https://togithub.com/nodejs/undici/pull/2916 )
- chore: fix typo in isHistoryNavigation comments by [@​kachick](https://togithub.com/kachick ) in [https://github.com/nodejs/undici/pull/2920 ](https://togithub.com/nodejs/undici/pull/2920 )
- fix(benchmark): set body correctly by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2918 ](https://togithub.com/nodejs/undici/pull/2918 )
- chore: increase test coverage to 100% for /lib/api/api-request.js by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2912 ](https://togithub.com/nodejs/undici/pull/2912 )
- fix: chunksDecode cuts off 3 characters at the end if having BOM by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2922 ](https://togithub.com/nodejs/undici/pull/2922 )
- docs: clarify URI parsing behavior of ProxyAgent constructor by [@​rossilor95](https://togithub.com/rossilor95 ) in [https://github.com/nodejs/undici/pull/2893 ](https://togithub.com/nodejs/undici/pull/2893 )
- implement sync formdata parser by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2911 ](https://togithub.com/nodejs/undici/pull/2911 )
- Fix docs links and add examples to sidebar by [@​tastypackets](https://togithub.com/tastypackets ) in [https://github.com/nodejs/undici/pull/2895 ](https://togithub.com/nodejs/undici/pull/2895 )
- doc: update diagnostics channel request headers type change by [@​jessezhang91](https://togithub.com/jessezhang91 ) in [https://github.com/nodejs/undici/pull/2925 ](https://togithub.com/nodejs/undici/pull/2925 )
- perf: optimize getResolveErrorBodyCallback by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2921 ](https://togithub.com/nodejs/undici/pull/2921 )
- override request dispatcher from init by [@​matthieusieben](https://togithub.com/matthieusieben ) in [https://github.com/nodejs/undici/pull/2928 ](https://togithub.com/nodejs/undici/pull/2928 )
- add busboy tests by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2924 ](https://togithub.com/nodejs/undici/pull/2924 )
- fix(benchmark): make it fair by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2929 ](https://togithub.com/nodejs/undici/pull/2929 )
- Revert "chore: remove no-simd wasm" by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2935 ](https://togithub.com/nodejs/undici/pull/2935 )
- build(deps): bump node from `d3271e4` to `8bf9240` in /build by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2936 ](https://togithub.com/nodejs/undici/pull/2936 )
- Flip link between docs and README by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2933 ](https://togithub.com/nodejs/undici/pull/2933 )
#### New Contributors
- [@​kachick](https://togithub.com/kachick ) made their first contribution in [https://github.com/nodejs/undici/pull/2920 ](https://togithub.com/nodejs/undici/pull/2920 )
- [@​tastypackets](https://togithub.com/tastypackets ) made their first contribution in [https://github.com/nodejs/undici/pull/2895 ](https://togithub.com/nodejs/undici/pull/2895 )
- [@​jessezhang91](https://togithub.com/jessezhang91 ) made their first contribution in [https://github.com/nodejs/undici/pull/2925 ](https://togithub.com/nodejs/undici/pull/2925 )
- [@​matthieusieben](https://togithub.com/matthieusieben ) made their first contribution in [https://github.com/nodejs/undici/pull/2928 ](https://togithub.com/nodejs/undici/pull/2928 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.7.0...v6.7.1
### [`v6.7.0`](https://togithub.com/nodejs/undici/releases/tag/v6.7.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.6.2...v6.7.0 )
#### What's Changed
- test: remove t.diagnostics() calls in push-dont-push.js test by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2715 ](https://togithub.com/nodejs/undici/pull/2715 )
- fix: fix flaky debug test by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2714 ](https://togithub.com/nodejs/undici/pull/2714 )
- fix: HTTP2 tweaks by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2711 ](https://togithub.com/nodejs/undici/pull/2711 )
- test: improve cookie tests by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2693 ](https://togithub.com/nodejs/undici/pull/2693 )
- test: response.url after redirect is set to target url by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2716 ](https://togithub.com/nodejs/undici/pull/2716 )
- chore: remove mocha and chai by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2696 ](https://togithub.com/nodejs/undici/pull/2696 )
- test: replace t.pass with t.ok by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2721 ](https://togithub.com/nodejs/undici/pull/2721 )
- perf: remove redundant operation in FormData by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2726 ](https://togithub.com/nodejs/undici/pull/2726 )
- Add support for passing iterable objects as headers by [@​JaoodxD](https://togithub.com/JaoodxD ) in [https://github.com/nodejs/undici/pull/2708 ](https://togithub.com/nodejs/undici/pull/2708 )
- chore: refine esbuild & node detection by [@​mochaaP](https://togithub.com/mochaaP ) in [https://github.com/nodejs/undici/pull/2677 ](https://togithub.com/nodejs/undici/pull/2677 )
- chore: rephrase some comments by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2717 ](https://togithub.com/nodejs/undici/pull/2717 )
- test: replace t.type with t.ok and instanceof by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2720 ](https://togithub.com/nodejs/undici/pull/2720 )
- remove useless options in web streams by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2729 ](https://togithub.com/nodejs/undici/pull/2729 )
- Let's add superagent to the benchmark. closes [#​2730](https://togithub.com/nodejs/undici/issues/2730 ) by [@​eddienubes](https://togithub.com/eddienubes ) in [https://github.com/nodejs/undici/pull/2731 ](https://togithub.com/nodejs/undici/pull/2731 )
- convert node build to latin1 by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2673 ](https://togithub.com/nodejs/undici/pull/2673 )
- simplify formData body parsing by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2735 ](https://togithub.com/nodejs/undici/pull/2735 )
- chore: migrate a batch of tests to node test runner no. 1 by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2719 ](https://togithub.com/nodejs/undici/pull/2719 )
- chore: migrate a batch of tests to node test runner no. 2 by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2737 ](https://togithub.com/nodejs/undici/pull/2737 )
- chore: migrate a batch of tests to node test runner no. 4 by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2739 ](https://togithub.com/nodejs/undici/pull/2739 )
- chore: migrate a batch of tests to node test runner no. 5 by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2740 ](https://togithub.com/nodejs/undici/pull/2740 )
- chore: migrate a batch of tests to node test runner no. 3 by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2738 ](https://togithub.com/nodejs/undici/pull/2738 )
- chore: migrate a batch of tests to node test runner no. 6 by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2741 ](https://togithub.com/nodejs/undici/pull/2741 )
- chore: migrate a batch of tests to node test runner no. 8 by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2744 ](https://togithub.com/nodejs/undici/pull/2744 )
- chore: migrate a batch of tests to node test runner no. 7 by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2742 ](https://togithub.com/nodejs/undici/pull/2742 )
- build(deps-dev): bump cronometro from 2.0.2 to 3.0.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2749 ](https://togithub.com/nodejs/undici/pull/2749 )
- perf: always use the same prototype Iterator by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2743 ](https://togithub.com/nodejs/undici/pull/2743 )
- chore: migrate a batch of tests to node test runner no. 9, remove tap by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2746 ](https://togithub.com/nodejs/undici/pull/2746 )
- chore: remove usage of http-errors in proxy example by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2753 ](https://togithub.com/nodejs/undici/pull/2753 )
- fix: dont ship wasm files of llhttp via npm by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2752 ](https://togithub.com/nodejs/undici/pull/2752 )
- fix: handle request body as late as possible by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2734 ](https://togithub.com/nodejs/undici/pull/2734 )
- perf(tree): avoid recursive calls by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2755 ](https://togithub.com/nodejs/undici/pull/2755 )
- docs: fix favicon by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2758 ](https://togithub.com/nodejs/undici/pull/2758 )
- chore: use mermaid engine and mermaid in markdown by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2759 ](https://togithub.com/nodejs/undici/pull/2759 )
- chore: remove sinon dev dependency by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2767 ](https://togithub.com/nodejs/undici/pull/2767 )
- tests: skip test/node-test/debug on node 21.6.2 and windows by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2765 ](https://togithub.com/nodejs/undici/pull/2765 )
- chore: improve usage of skip in tests by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2761 ](https://togithub.com/nodejs/undici/pull/2761 )
- feat: improve mock error breadcrumbs by [@​rossilor95](https://togithub.com/rossilor95 ) in [https://github.com/nodejs/undici/pull/2774 ](https://togithub.com/nodejs/undici/pull/2774 )
- expose MessageEvent in fetch bundle by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2770 ](https://togithub.com/nodejs/undici/pull/2770 )
- test: always exit with 0 when running in Node's Daily WPT Report CI job by [@​panva](https://togithub.com/panva ) in [https://github.com/nodejs/undici/pull/2778 ](https://togithub.com/nodejs/undici/pull/2778 )
- fix: add node prefix for util to fix issue in env with min version node 18 by [@​riderx](https://togithub.com/riderx ) in [https://github.com/nodejs/undici/pull/2775 ](https://togithub.com/nodejs/undici/pull/2775 )
- perf: improve perf of parseRawHeaders by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2781 ](https://togithub.com/nodejs/undici/pull/2781 )
- fix: make mock-agent.js test more resilient by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2780 ](https://togithub.com/nodejs/undici/pull/2780 )
- chore: make some test run even without internet connection by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2786 ](https://togithub.com/nodejs/undici/pull/2786 )
- mock: improve validateReplyParameters by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2783 ](https://togithub.com/nodejs/undici/pull/2783 )
- perf: improve TernarySearchTree by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2782 ](https://togithub.com/nodejs/undici/pull/2782 )
- fix: convert HeadersInit to sequence/dictionary correctly by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2784 ](https://togithub.com/nodejs/undici/pull/2784 )
- chore: improve getFieldValue by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2785 ](https://togithub.com/nodejs/undici/pull/2785 )
- Add RetryHandler to sidebar by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2797 ](https://togithub.com/nodejs/undici/pull/2797 )
- Add RetryAgent by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2798 ](https://togithub.com/nodejs/undici/pull/2798 )
- build(deps): bump step-security/harden-runner from 2.6.0 to 2.7.0 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2690 ](https://togithub.com/nodejs/undici/pull/2690 )
- build(deps): bump actions/checkout from 4.1.0 to 4.1.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2393 ](https://togithub.com/nodejs/undici/pull/2393 )
- build(deps): bump actions/upload-artifact from 3.1.3 to 4.3.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2799 ](https://togithub.com/nodejs/undici/pull/2799 )
- build(deps): bump node from 20-alpine to 21-alpine in /build by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2803 ](https://togithub.com/nodejs/undici/pull/2803 )
- perf: improve sort algorithm by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2756 ](https://togithub.com/nodejs/undici/pull/2756 )
- refactor: move web stuff into their own folder by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2793 ](https://togithub.com/nodejs/undici/pull/2793 )
- `s/ dispactgher/dispatcher/` by [@​steveluscher](https://togithub.com/steveluscher ) in [https://github.com/nodejs/undici/pull/2807 ](https://togithub.com/nodejs/undici/pull/2807 )
- Use paralellelRequests instead of connections to calculate req/sec in benchmarks by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2800 ](https://togithub.com/nodejs/undici/pull/2800 )
- Split out documentation into separate directory by [@​Ethan-Arrowood](https://togithub.com/Ethan-Arrowood ) in [https://github.com/nodejs/undici/pull/2788 ](https://togithub.com/nodejs/undici/pull/2788 )
- build(deps): bump fastify/github-action-merge-dependabot from 3.9.1 to 3.10.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2820 ](https://togithub.com/nodejs/undici/pull/2820 )
- build(deps): bump actions/dependency-review-action from 4.0.0 to 4.1.3 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2821 ](https://togithub.com/nodejs/undici/pull/2821 )
- build(deps): bump github/codeql-action from 3.23.2 to 3.24.4 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2818 ](https://togithub.com/nodejs/undici/pull/2818 )
- build(deps): bump actions/setup-node from 4.0.1 to 4.0.2 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2819 ](https://togithub.com/nodejs/undici/pull/2819 )
- fix: move CNAME and .nojekyll to root by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2822 ](https://togithub.com/nodejs/undici/pull/2822 )
- remove all fetchParam event handlers by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2823 ](https://togithub.com/nodejs/undici/pull/2823 )
- feat: refactor ProxyAgent constructor to also accept single URL argument by [@​rossilor95](https://togithub.com/rossilor95 ) in [https://github.com/nodejs/undici/pull/2810 ](https://togithub.com/nodejs/undici/pull/2810 )
- fix: isCTLExcludingHtab by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2790 ](https://togithub.com/nodejs/undici/pull/2790 )
- refactor: move files into logical folders by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2813 ](https://togithub.com/nodejs/undici/pull/2813 )
- refactor: move fixed-queeu to dispatcher and rm node folder by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2827 ](https://togithub.com/nodejs/undici/pull/2827 )
- chore: create package.json in benchmarks by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2766 ](https://togithub.com/nodejs/undici/pull/2766 )
- build(deps): bump github/codeql-action from 3.24.4 to 3.24.5 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2829 ](https://togithub.com/nodejs/undici/pull/2829 )
- chore: use lts for pubish types workflow by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2830 ](https://togithub.com/nodejs/undici/pull/2830 )
- add dispatcher option to Request by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2831 ](https://togithub.com/nodejs/undici/pull/2831 )
- fix url referrer wpt by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2832 ](https://togithub.com/nodejs/undici/pull/2832 )
- refactor: remove own sort logic by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2834 ](https://togithub.com/nodejs/undici/pull/2834 )
- fix(fetch): prevent crash when `fetch` is aborted with `null` as the `AbortSignal's` `reason` by [@​steveluscher](https://togithub.com/steveluscher ) in [https://github.com/nodejs/undici/pull/2833 ](https://togithub.com/nodejs/undici/pull/2833 )
- refactor: avoid http2 dynamic dispatch in socket handlers by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2839 ](https://togithub.com/nodejs/undici/pull/2839 )
- build(deps-dev): bump proxy from 1.0.2 to 2.1.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2137 ](https://togithub.com/nodejs/undici/pull/2137 )
- perf(tree): reduce overhead of build TernarySearchTree by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2840 ](https://togithub.com/nodejs/undici/pull/2840 )
- webidl: implement resizable arraybuffer checks by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2094 ](https://togithub.com/nodejs/undici/pull/2094 )
- websocket server only needs to reply with a single subprotocol by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2845 ](https://togithub.com/nodejs/undici/pull/2845 )
- unite webidl stringification by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2843 ](https://togithub.com/nodejs/undici/pull/2843 )
- fix: deflake connect-timeout test by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2851 ](https://togithub.com/nodejs/undici/pull/2851 )
- fix: coverage reporting by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2763 ](https://togithub.com/nodejs/undici/pull/2763 )
- fix: pipelining logic is not relevant for h2 by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2850 ](https://togithub.com/nodejs/undici/pull/2850 )
- processBody doesn't need to return a promise by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2858 ](https://togithub.com/nodejs/undici/pull/2858 )
- refactor: split client into client-h1/h2 by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2848 ](https://togithub.com/nodejs/undici/pull/2848 )
- ci: fix concurrency by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2862 ](https://togithub.com/nodejs/undici/pull/2862 )
- perf: improve performance of isValidSubprotocol by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2861 ](https://togithub.com/nodejs/undici/pull/2861 )
- perf: reuse TextDecoder instance by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2863 ](https://togithub.com/nodejs/undici/pull/2863 )
- chore: restructure benchmarks, use kebab-case by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2864 ](https://togithub.com/nodejs/undici/pull/2864 )
- cookies: improve perf of toIMFDate by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2867 ](https://togithub.com/nodejs/undici/pull/2867 )
- cookies: fix validateCookiePath by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2866 ](https://togithub.com/nodejs/undici/pull/2866 )
- refactor: move out more h2 from core client by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2860 ](https://togithub.com/nodejs/undici/pull/2860 )
- mock: improve test coverage of buildHeadersFromArray by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2872 ](https://togithub.com/nodejs/undici/pull/2872 )
- fix: remove broken build request hack by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2874 ](https://togithub.com/nodejs/undici/pull/2874 )
- chore: filenames should use kebab-case by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2873 ](https://togithub.com/nodejs/undici/pull/2873 )
- refactor: split out last h1 specific code from core by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2876 ](https://togithub.com/nodejs/undici/pull/2876 )
- fix: make pipelining limit work for h2 by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2875 ](https://togithub.com/nodejs/undici/pull/2875 )
- fix: http2 doesn't have pipelining queue by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2878 ](https://togithub.com/nodejs/undici/pull/2878 )
- fix: minor connect cleanup by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2877 ](https://togithub.com/nodejs/undici/pull/2877 )
- Request headers types by [@​JaoodxD](https://togithub.com/JaoodxD ) in [https://github.com/nodejs/undici/pull/2879 ](https://togithub.com/nodejs/undici/pull/2879 )
- ci: remove concurrency by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2880 ](https://togithub.com/nodejs/undici/pull/2880 )
- fix: prefer queueMicrotask by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2881 ](https://togithub.com/nodejs/undici/pull/2881 )
- chore: remove no-simd wasm by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2871 ](https://togithub.com/nodejs/undici/pull/2871 )
- cookies: improve validateCookieValue by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2883 ](https://togithub.com/nodejs/undici/pull/2883 )
- cookies: improve validateCookieName by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2884 ](https://togithub.com/nodejs/undici/pull/2884 )
- Properly parse set-cookie header using http2 by [@​jeanp413](https://togithub.com/jeanp413 ) in [https://github.com/nodejs/undici/pull/2886 ](https://togithub.com/nodejs/undici/pull/2886 )
- doc deprecate bodymixin.formData by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2892 ](https://togithub.com/nodejs/undici/pull/2892 )
- perf: optimize check invalid field-vchar by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2889 ](https://togithub.com/nodejs/undici/pull/2889 )
- build(deps): bump github/codeql-action from 3.24.5 to 3.24.6 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2897 ](https://togithub.com/nodejs/undici/pull/2897 )
- fix issue 2898 by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2900 ](https://togithub.com/nodejs/undici/pull/2900 )
- tests: ignore catch block when requiring crypto module by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2901 ](https://togithub.com/nodejs/undici/pull/2901 )
- websocket: remove dead code in parseCloseBody by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2902 ](https://togithub.com/nodejs/undici/pull/2902 )
- fix: tests dont need process.exit by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2909 ](https://togithub.com/nodejs/undici/pull/2909 )
- chore: remove proxyquire by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2906 ](https://togithub.com/nodejs/undici/pull/2906 )
- chore: remove import-fresh as devDependency by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2908 ](https://togithub.com/nodejs/undici/pull/2908 )
- perf(headers): a single set-cookie by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2903 ](https://togithub.com/nodejs/undici/pull/2903 )
- websocket: improve .close() by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2865 ](https://togithub.com/nodejs/undici/pull/2865 )
- feat: add sending data benchmark by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2905 ](https://togithub.com/nodejs/undici/pull/2905 )
- ci: integrate workflows into nodejs.yml by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2899 ](https://togithub.com/nodejs/undici/pull/2899 )
#### New Contributors
- [@​JaoodxD](https://togithub.com/JaoodxD ) made their first contribution in [https://github.com/nodejs/undici/pull/2708 ](https://togithub.com/nodejs/undici/pull/2708 )
- [@​eddienubes](https://togithub.com/eddienubes ) made their first contribution in [https://github.com/nodejs/undici/pull/2731 ](https://togithub.com/nodejs/undici/pull/2731 )
- [@​riderx](https://togithub.com/riderx ) made their first contribution in [https://github.com/nodejs/undici/pull/2775 ](https://togithub.com/nodejs/undici/pull/2775 )
- [@​steveluscher](https://togithub.com/steveluscher ) made their first contribution in [https://github.com/nodejs/undici/pull/2807 ](https://togithub.com/nodejs/undici/pull/2807 )
- [@​jeanp413](https://togithub.com/jeanp413 ) made their first contribution in [https://github.com/nodejs/undici/pull/2886 ](https://togithub.com/nodejs/undici/pull/2886 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.6.2...v6.7.0
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "" (UTC), 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.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-04-08 01:42:52 +00:00
darkskygit
593161dccb
feat: basic copilot plugin implement ( #6229 )
...
fix CLOUD-25
2024-04-02 07:04:49 +00:00
CatsJuice
a4cd51e503
refactor(component): new notification center implemented with sonner ( #6416 )
...
The Notification has been reimplemented using sooner, no longer relies on jotai, and new story has been added.
- Before
```ts
import { pushNotificationAtom } from '@affine/component/notification-center';
import { useSetAtom } from 'jotai';
export const Component = () => {
const pushNotification = useSetAtom(pushNotificationAtom);
pushNotification({ ... });
}
```
- After
```ts
import { notify } from "@affine/component";
export const Component = () => {
notify({ ... });
}
```
2024-04-02 03:18:57 +00:00
pengx17
f41d587d65
chore: upgrade cmdk to 1.0.0 ( #6401 )
...
Also include the command score into our own repo for some tweaks.
Might fix https://github.com/toeverything/AFFiNE/issues/6322
2024-03-30 08:00:21 +00:00
Brooooooklyn
c1eb7b657a
fix(templates): missing deps ( #6396 )
2024-03-29 06:56:52 +00:00
pengx17
c7e10c2283
feat(core): fav item reordering ( #6302 )
2024-03-29 04:04:27 +00:00
pengx17
0abd24654d
fix(electron): appimage wayland support ( #6371 )
...
Turns out the only solution for now is to patch the AppRun script in the AppImage using https://github.com/toeverything/electron-forge-maker-appimage/blob/master/scripts/patch-apprun.sh
fix #6340 , fix #6252
Some references:
- https://github.com/audacity/audacity/issues/2498
- https://github.com/develar/app-builder/issues/104
2024-03-29 02:47:20 +00:00
Brooooooklyn
7cd75824a4
fix(core): use ResizeObserver polyfill ( #6360 )
...
- Close https://github.com/toeverything/AFFiNE/issues/6359
2024-03-28 10:48:22 +00:00
Brooooooklyn
c2847e2082
chore(core): split sentry and setup into web/electron ( #6357 )
2024-03-28 10:24:25 +00:00
Brooooooklyn
5dcb3d69e5
fix(core): opt out telemetry if it was set to false ( #6335 )
2024-03-27 04:36:09 +00:00
fundon
8ee9f6ec05
chore: improve password error message ( #6255 )
...
chore: improve error message
chore: add password minlength & maxlength i18n
chore: check max length
fix: i18n variables
feat: add CredentialsRequirementType
2024-03-26 07:15:06 +00:00
Brooooooklyn
d8a3cd5ce2
chore: bump oxlint and rules ( #6314 )
2024-03-26 05:58:22 +00:00
renovate
2662ba763c
chore: bump up express version to v4.19.2 [SECURITY] ( #6308 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [express](http://expressjs.com/ ) ([source](https://togithub.com/expressjs/express )) | [`4.18.2` -> `4.19.2`](https://renovatebot.com/diffs/npm/express/4.18.2/4.19.2 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/express/4.19.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/express/4.19.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/express/4.18.2/4.19.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/express/4.18.2/4.19.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
### GitHub Vulnerability Alerts
#### [CVE-2024-29041](https://togithub.com/expressjs/express/security/advisories/GHSA-rv95-896h-c2vc )
### Impact
Versions of Express.js prior to 4.19.2 and pre-release alpha and beta versions before 5.0.0-beta.3 are affected by an open redirect vulnerability using malformed URLs.
When a user of Express performs a redirect using a user-provided URL Express performs an encode [using `encodeurl`](https://togithub.com/pillarjs/encodeurl ) on the contents before passing it to the `location` header. This can cause malformed URLs to be evaluated in unexpected ways by common redirect allow list implementations in Express applications, leading to an Open Redirect via bypass of a properly implemented allow list.
The main method impacted is `res.location()` but this is also called from within `res.redirect()`.
### Patches
0867302ddb
0b746953c4
An initial fix went out with `express@4.19.0`, we then patched a feature regression in `4.19.1` and added improved handling for the bypass in `4.19.2`.
### Workarounds
The fix for this involves pre-parsing the url string with either `require('node:url').parse` or `new URL`. These are steps you can take on your own before passing the user input string to `res.location` or `res.redirect`.
### References
[https://github.com/expressjs/express/pull/5539 ](https://togithub.com/expressjs/express/pull/5539 )
[https://github.com/koajs/koa/issues/1800 ](https://togithub.com/koajs/koa/issues/1800 )
https://expressjs.com/en/4x/api.html#res.location
---
### Release Notes
<details>
<summary>expressjs/express (express)</summary>
### [`v4.19.2`](https://togithub.com/expressjs/express/blob/HEAD/History.md#4192--2024-03-25 )
[Compare Source](https://togithub.com/expressjs/express/compare/4.19.1...4.19.2 )
\==========
- Improved fix for open redirect allow list bypass
### [`v4.19.1`](https://togithub.com/expressjs/express/blob/HEAD/History.md#4191--2024-03-20 )
[Compare Source](https://togithub.com/expressjs/express/compare/4.19.0...4.19.1 )
\==========
- Allow passing non-strings to res.location with new encoding handling checks
### [`v4.19.0`](https://togithub.com/expressjs/express/compare/4.18.3...83e77aff6a3859d58206f3ff9501277023c03f87 )
[Compare Source](https://togithub.com/expressjs/express/compare/4.18.3...4.19.0 )
### [`v4.18.3`](https://togithub.com/expressjs/express/blob/HEAD/History.md#4183--2024-02-26 )
[Compare Source](https://togithub.com/expressjs/express/compare/4.18.2...4.18.3 )
\==========
- Fix routing requests without method
- deps: body-parser@1.20.2
- Fix strict json error message on Node.js 19+
- deps: content-type@~1.0.5
- deps: raw-body@2.5.2
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "" (UTC), 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.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-26 03:17:49 +00:00
pengx17
2a019d4fae
fix(core): storybook stability for date ( #6300 )
2024-03-25 09:50:48 +00:00
donteatfriedrice
48abc52e85
feat: bump blocksuite ( #6294 )
...
## Features
- https://github.com/toeverything/BlockSuite/pull/6544 @golok727
- https://github.com/toeverything/BlockSuite/pull/6543 @golok727
- https://github.com/toeverything/BlockSuite/pull/6536 @donteatfriedrice
- https://github.com/toeverything/BlockSuite/pull/6497 @doouding
- https://github.com/toeverything/BlockSuite/pull/6514 @regischen
- https://github.com/toeverything/BlockSuite/pull/6523 @donteatfriedrice
- https://github.com/toeverything/BlockSuite/pull/6530 @zzj3720
- https://github.com/toeverything/BlockSuite/pull/6526 @fourdim
- https://github.com/toeverything/BlockSuite/pull/6532 @donteatfriedrice
- https://github.com/toeverything/BlockSuite/pull/6493 @golok727
- https://github.com/toeverything/BlockSuite/pull/6529 @zzj3720
- https://github.com/toeverything/BlockSuite/pull/6528 @zzj3720
- https://github.com/toeverything/BlockSuite/pull/6509 @zzj3720
- https://github.com/toeverything/BlockSuite/pull/6525 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6502 @donteatfriedrice
- https://github.com/toeverything/BlockSuite/pull/6489 @Flrande
## Bugfix
- https://github.com/toeverything/BlockSuite/pull/6558 @fourdim
- https://github.com/toeverything/BlockSuite/pull/6556 @fourdim
- https://github.com/toeverything/BlockSuite/pull/6547 @fundon
- https://github.com/toeverything/BlockSuite/pull/6537 @golok727
- https://github.com/toeverything/BlockSuite/pull/6531 @donteatfriedrice
- https://github.com/toeverything/BlockSuite/pull/6524 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6519 @regischen
- https://github.com/toeverything/BlockSuite/pull/6517 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6516 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6510 @donteatfriedrice
- https://github.com/toeverything/BlockSuite/pull/6511 @congzhou09
- https://github.com/toeverything/BlockSuite/pull/6507 @doouding
- https://github.com/toeverything/BlockSuite/pull/6500 @fourdim
- https://github.com/toeverything/BlockSuite/pull/6486 @congzhou09
- https://github.com/toeverything/BlockSuite/pull/6495 @donteatfriedrice
- https://github.com/toeverything/BlockSuite/pull/6488 @Saul-Mirone
- https://github.com/toeverything/BlockSuite/pull/6482 @Flrande
- https://github.com/toeverything/BlockSuite/pull/6558 @fourdim
## Refactor
- https://github.com/toeverything/BlockSuite/pull/6548 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6522 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6518 @regischen
- https://github.com/toeverything/BlockSuite/pull/6521 @Saul-Mirone
## Misc
- https://github.com/toeverything/BlockSuite/pull/6557 @fourdim
- https://github.com/toeverything/BlockSuite/pull/6546 @Flrande
- docs: update package desc
- https://github.com/toeverything/BlockSuite/pull/6527 @fourdim
- https://github.com/toeverything/BlockSuite/pull/6505 @Brooooooklyn
- https://github.com/toeverything/BlockSuite/pull/6503 @fourdim
- v0.13.0
- https://github.com/toeverything/BlockSuite/pull/6496 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6562 @donteatfriedrice
2024-03-25 09:20:45 +00:00
Brooooooklyn
6467e10690
ci: fix lint oom ( #6295 )
2024-03-25 07:11:49 +00:00
EYHN
f2adbdaba4
style: enable import-x/no-duplicates ( #6279 )
2024-03-25 03:55:33 +00:00
EYHN
d59e1389ec
chore(electron): config vitest swc ( #6282 )
2024-03-25 03:55:23 +00:00
EYHN
2b42a75e5a
style: enable rxjs/finnish ( #6276 )
...
chore(infra): use finnish notation for observables
do rename
2024-03-24 17:04:51 +00:00
dependabot
c6676fd074
build(deps): bump webpack-dev-middleware from 7.0.0 to 7.1.1 ( #6275 )
...
Bumps [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware ) from 7.0.0 to 7.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/webpack/webpack-dev-middleware/releases ">webpack-dev-middleware's releases</a>.</em></p>
<blockquote>
<h2>v7.1.1</h2>
<h3><a href="https://github.com/webpack/webpack-dev-middleware/compare/v7.1.0...v7.1.1 ">7.1.1</a> (2024-03-21)</h3>
<h3>Bug Fixes</h3>
<ul>
<li><code>ContentLength</code> incorrectly set for empty files (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1785 ">#1785</a>) (<a href="0f3e25e2b0
">0f3e25e</a>)</li>
<li>improve perf (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1777 ">#1777</a>) (<a href="5b47c9294e
">5b47c92</a>)</li>
<li><strong>types:</strong> make types better (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1786 ">#1786</a>) (<a href="e4d183ea6d
">e4d183e</a>)</li>
</ul>
<h2>v7.1.0</h2>
<h2><a href="https://github.com/webpack/webpack-dev-middleware/compare/v7.0.0...v7.1.0 ">7.1.0</a> (2024-03-19)</h2>
<h3>Features</h3>
<ul>
<li>prefer to use <code>fs.createReadStream</code> over <code>fs.readFileSync</code> to read files (<a href="ab533de933
">ab533de</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>cleaup stream and handle errors (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1769 ">#1769</a>) (<a href="1258fdd3d9
">1258fdd</a>)</li>
<li><strong>security:</strong> do not allow to read files above (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1771 ">#1771</a>) (<a href="e10008c762
">e10008c</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/webpack/webpack-dev-middleware/blob/master/CHANGELOG.md ">webpack-dev-middleware's changelog</a>.</em></p>
<blockquote>
<h3><a href="https://github.com/webpack/webpack-dev-middleware/compare/v7.1.0...v7.1.1 ">7.1.1</a> (2024-03-21)</h3>
<h3>Bug Fixes</h3>
<ul>
<li><code>ContentLength</code> incorrectly set for empty files (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1785 ">#1785</a>) (<a href="0f3e25e2b0
">0f3e25e</a>)</li>
<li>improve perf (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1777 ">#1777</a>) (<a href="5b47c9294e
">5b47c92</a>)</li>
<li><strong>types:</strong> make types better (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1786 ">#1786</a>) (<a href="e4d183ea6d
">e4d183e</a>)</li>
</ul>
<h2><a href="https://github.com/webpack/webpack-dev-middleware/compare/v7.0.0...v7.1.0 ">7.1.0</a> (2024-03-19)</h2>
<h3>Features</h3>
<ul>
<li>prefer to use <code>fs.createReadStream</code> over <code>fs.readFileSync</code> to read files (<a href="ab533de933
">ab533de</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>cleaup stream and handle errors (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1769 ">#1769</a>) (<a href="1258fdd3d9
">1258fdd</a>)</li>
<li><strong>security:</strong> do not allow to read files above (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1771 ">#1771</a>) (<a href="e10008c762
">e10008c</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="7c6164a82f
"><code>7c6164a</code></a> chore(release): 7.1.1</li>
<li><a href="e4d183ea6d
"><code>e4d183e</code></a> fix(types): make types better (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1786 ">#1786</a>)</li>
<li><a href="f23ed7ccd8
"><code>f23ed7c</code></a> chore(deps-dev): bump <code>@babel/core</code> from 7.24.1 to 7.24.3 (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1782 ">#1782</a>)</li>
<li><a href="0f3e25e2b0
"><code>0f3e25e</code></a> fix: <code>ContentLength</code> incorrectly set for empty files (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1785 ">#1785</a>)</li>
<li><a href="d45f033ea7
"><code>d45f033</code></a> chore(deps-dev): bump <code>@babel/preset-env</code> from 7.24.1 to 7.24.3 (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1783 ">#1783</a>)</li>
<li><a href="c0c2eea2e7
"><code>c0c2eea</code></a> chore(deps-dev): bump express from 4.18.3 to 4.19.1 (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1781 ">#1781</a>)</li>
<li><a href="5b47c9294e
"><code>5b47c92</code></a> fix: improve perf (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1777 ">#1777</a>)</li>
<li><a href="1a34bc4bce
"><code>1a34bc4</code></a> chore(deps-dev): bump <code>@types/node</code> from 20.11.29 to 20.11.30 (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1774 ">#1774</a>)</li>
<li><a href="d618f1f126
"><code>d618f1f</code></a> chore(deps-dev): bump <code>@babel/preset-env</code> from 7.24.0 to 7.24.1 (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1772 ">#1772</a>)</li>
<li><a href="40daa4bb71
"><code>40daa4b</code></a> chore(deps-dev): bump <code>@babel/core</code> from 7.24.0 to 7.24.1 (<a href="https://redirect.github.com/webpack/webpack-dev-middleware/issues/1776 ">#1776</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/webpack/webpack-dev-middleware/compare/v7.0.0...v7.1.1 ">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=webpack-dev-middleware&package-manager=npm_and_yarn&previous-version=7.0.0&new-version=7.1.1 )](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/toeverything/AFFiNE/network/alerts ).
</details>
2024-03-24 11:02:10 +00:00
pengx17
3c6983ee49
fix(core): storybook build issue ( #6274 )
...
1. es2022 is required and should be set separately in storybook.
2. @blocksuite/icons versions are not consistent across packages.
2024-03-23 06:33:25 +00:00
EYHN
34703a3b7d
feat(infra): new doc sync engine ( #6205 )
...
https://github.com/toeverything/AFFiNE/blob/eyhn/feat/new-sync/packages/common/infra/src/workspace/engine/doc/README.md
2024-03-22 16:43:26 +00:00
Brooooooklyn
05c44db5a9
chore(core): remove unused dependencies ( #6203 )
2024-03-22 10:39:39 +00:00
Brooooooklyn
150c22936d
chore(core): add mixpanel track ( #6202 )
2024-03-22 09:24:41 +00:00
Brooooooklyn
85ee22329c
fix(electron): add icon for AppImage build ( #6257 )
...
1. the icon is fixed in `/Applications`: 128b8c22f9 (diff-a694a3e854f53b066e34ec310e05bd18b4944c016455f6963f54a351784d5fa6L91)
2. the App's icon MUST be 64x64 png and set via `setIcon`
![image](https://github.com/toeverything/AFFiNE/assets/584378/bbce0007-066b-413f-a85a-193acbbe5c13 )
2024-03-21 14:29:02 +00:00
Brooooooklyn
18224a83d1
chore(electron): bump @napi-rs/macos-alias ( #6240 )
...
fix dmg background missing issue https://github.com/Brooooooklyn/macos-alias/pull/3
2024-03-21 06:53:14 +00:00
Brooooooklyn
483f957583
chore: bump up @aws-sdk/client-s3 version to v3.537.0 ( #6210 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3 ) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3 )) | [`3.536.0` -> `3.537.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.536.0/3.537.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.537.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.537.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.536.0/3.537.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.536.0/3.537.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.537.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35370-2024-03-19 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.536.0...v3.537.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
</details>
---
### 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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-20 14:44:24 +00:00
Brooooooklyn
32ab0693e2
feat(core): update split view icons and texts ( #6193 )
2024-03-20 14:30:35 +00:00
LongYinan
332cd3b380
refactor(core): split web entry from core ( #6082 )
...
This pr is trying to split `web` and `electron` entries from `core`. It allows more platform-related optimization to be addressed in each entry.
We should remove all browser/electron only codes from `core` eventually, this is the very first step for that.
2024-03-19 07:48:56 +00:00
LongYinan
26925c96e4
chore: bump up happy-dom version to v14 ( #6187 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [happy-dom](https://togithub.com/capricorn86/happy-dom ) | [`^13.4.1` -> `^14.0.0`](https://renovatebot.com/diffs/npm/happy-dom/13.4.1/14.0.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/happy-dom/14.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/happy-dom/14.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/happy-dom/13.4.1/14.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/happy-dom/13.4.1/14.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>capricorn86/happy-dom (happy-dom)</summary>
### [`v14.0.0`](https://togithub.com/capricorn86/happy-dom/releases/tag/v14.0.0 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.10.1...v14.0.0 )
##### 💣 Breaking Changes
- Removes interfaces for Node's, as they are no longer needed as newer versions of Typescript can handle circular dependencies - By **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1330](https://togithub.com/capricorn86/happy-dom/issues/1330 )
### [`v13.10.1`](https://togithub.com/capricorn86/happy-dom/compare/v13.10.0...a6debf50e909766e0e5442b9e4c5ebe8dadb1cd1 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.10.0...v13.10.1 )
### [`v13.10.0`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.10.0 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.9.0...v13.10.0 )
##### 🎨 Features
- Adds support for the Headers.getSetCookie - By **[@​betterqualityassuranceuser](https://togithub.com/betterqualityassuranceuser )** in task [#​1315](https://togithub.com/capricorn86/happy-dom/issues/1315 )
### [`v13.9.0`](https://togithub.com/capricorn86/happy-dom/compare/v13.8.6...9d6d1f39aeb2cbfce914277ce22264ee88290582 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.8.6...v13.9.0 )
### [`v13.8.6`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.8.6 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.8.5...v13.8.6 )
##### 👷♂️ Patch fixes
- Fixes bug related to multiple fallbacks to CSS variables being set incorrectly - By **[@​odanado](https://togithub.com/odanado )** in task [#​1308](https://togithub.com/capricorn86/happy-dom/issues/1308 )
### [`v13.8.5`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.8.5 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.8.4...v13.8.5 )
##### 👷♂️ Patch fixes
- Fixes problem related to invalid pseudo query selectors matching elements (e.g. ":before" should only match the pseudo element and not the actual element) - By **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1122](https://togithub.com/capricorn86/happy-dom/issues/1122 )
- Adds support for using multiple pseudo query selectors (e.g. ":first-of-type:last-of-type") - By **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1122](https://togithub.com/capricorn86/happy-dom/issues/1122 )
- Fixes minor typo in `HTMLElementConfig` - By **[@​danbentley](https://togithub.com/danbentley )** in task [#​1306](https://togithub.com/capricorn86/happy-dom/issues/1306 )
### [`v13.8.4`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.8.4 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.8.3...v13.8.4 )
##### 👷♂️ Patch fixes
- Adds support for returning URL relative to window location in `HTMLLinkElement.href`, `HTMLImageElement.src` and `HTMLScriptElement.src` - By **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1135](https://togithub.com/capricorn86/happy-dom/issues/1135 )
### [`v13.8.3`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.8.3 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.8.2...v13.8.3 )
##### 👷♂️ Patch fixes
- Fixes problem where some elements (e.g. `<li>`, `<h1>` or `<table>`) doesn't allow itself as direct descendant when parsing HTML, but should allow itself as descendant when it is not at first level - By **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1039](https://togithub.com/capricorn86/happy-dom/issues/1039 )
### [`v13.8.2`](https://togithub.com/capricorn86/happy-dom/compare/v13.8.1...4970c699d07d97c4a9839e25c831eef230445abf )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.8.1...v13.8.2 )
### [`v13.8.1`](https://togithub.com/capricorn86/happy-dom/compare/v13.8.0...08cd42601d62f39d42d01d902a56d2441f7128e0 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.8.0...v13.8.1 )
### [`v13.8.0`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.8.0 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.8...v13.8.0 )
##### 🎨 Features
- Adds support for Element.scrollIntoView - By **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1051](https://togithub.com/capricorn86/happy-dom/issues/1051 )
### [`v13.7.8`](https://togithub.com/capricorn86/happy-dom/compare/v13.7.7...0dfe51d6006c09b2f12ec2ec4f15858ae6450060 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.7...v13.7.8 )
### [`v13.7.7`](https://togithub.com/capricorn86/happy-dom/compare/v13.7.6...v13.7.7 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.6...v13.7.7 )
### [`v13.7.6`](https://togithub.com/capricorn86/happy-dom/compare/v13.7.5...54d1ae080f4e91ae09bb586ad01f82050cf5db15 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.5...v13.7.6 )
### [`v13.7.5`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.7.5 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.4...v13.7.5 )
##### 👷♂️ Patch fixes
- Modify option node to return empty string even if the value is empty string - In task [#​1138](https://togithub.com/capricorn86/happy-dom/issues/1138 )
### [`v13.7.4`](https://togithub.com/capricorn86/happy-dom/compare/v13.7.3...16396f9d1f114ad70c926f56da40a31382aeabcb )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.3...v13.7.4 )
### [`v13.7.3`](https://togithub.com/capricorn86/happy-dom/compare/v13.7.2...1bd90205d67aa78de52ea5d1ebb3c8f8db2364af )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.2...v13.7.3 )
### [`v13.7.2`](https://togithub.com/capricorn86/happy-dom/compare/v13.7.1...3b4339d709bb9b097a8302996dc4af356f496e1a )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.1...v13.7.2 )
### [`v13.7.1`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.7.1 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.7.0...v13.7.1 )
##### 👷♂️ Patch fixes
- Adds support for cloning body in `Response.clone()` - By **[@​cprecioso](https://togithub.com/cprecioso )** in task [#​1216](https://togithub.com/capricorn86/happy-dom/issues/1216 )
### [`v13.7.0`](https://togithub.com/capricorn86/happy-dom/compare/v13.6.2...4c808b62f8dcfb5c85d4ac4e94b8e2ba58195e86 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.6.2...v13.7.0 )
### [`v13.6.2`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.6.2 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.6.1...v13.6.2 )
##### 🎨 Features
- Add support for the ":target" pseudo query selector - By **[@​Schleuse](https://togithub.com/Schleuse )** in task [#​1221](https://togithub.com/capricorn86/happy-dom/issues/1221 )
##### 👷♂️ Patch fixes
- The Event listener method `handleEvent()` should be called within the listener scope - By **[@​titouanmathis](https://togithub.com/titouanmathis )** in task [#​1182](https://togithub.com/capricorn86/happy-dom/issues/1182 )
### [`v13.6.1`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.6.1 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.6.0...v13.6.1 )
##### 👷♂️ Patch fixes
- Improves validation for the options argument in `MutationsObserver.observe()` - By **[@​romansp](https://togithub.com/romansp )** in task [#​1223](https://togithub.com/capricorn86/happy-dom/issues/1223 )
### [`v13.6.0`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.6.0 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.5.3...v13.6.0 )
##### 🎨 Features
- Adds support for `Node.isEqualNode()` - By **[@​aralroca](https://togithub.com/aralroca )** in task [#​1263](https://togithub.com/capricorn86/happy-dom/issues/1263 )
##### 👷♂️ Patch fixes
- Adds support for the property `Document.forms` - By **[@​juandiegombr](https://togithub.com/juandiegombr )** in task [#​1260](https://togithub.com/capricorn86/happy-dom/issues/1260 )
- Adds check for if `MutationObserver` options are null, which most likely happens for code that is executed after the Window instance has been closed - By **[@​zachlankton](https://togithub.com/zachlankton )** in task [#​1217](https://togithub.com/capricorn86/happy-dom/issues/1217 )
### [`v13.5.3`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.5.3 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.5.2...v13.5.3 )
##### 👷♂️ Patch fixes
- Improves check for invalid query selectors - By **[@​btea](https://togithub.com/btea )** in task #​0
### [`v13.5.2`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.5.2 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.5.1...v13.5.2 )
##### 👷♂️ Patch fixes
- Adds unit test for Vue component with SVG - By **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1271](https://togithub.com/capricorn86/happy-dom/issues/1271 )
### [`v13.5.1`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.5.1 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.5.0...v13.5.1 )
##### 👷♂️ Patch fixes
- Fixes problem with query selectors not finding SVG elements after the v13.4.0 release - By **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1274](https://togithub.com/capricorn86/happy-dom/issues/1274 )
### [`v13.5.0`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.5.0 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v13.4.1...v13.5.0 )
##### 🎨 Features
- Use the Node.js `ReadableStream` class for the properties `Response.body` and `Request.body` - By **[@​diego-toro](https://togithub.com/diego-toro )** and **[@​capricorn86](https://togithub.com/capricorn86 )** in task [#​1180](https://togithub.com/capricorn86/happy-dom/issues/1180 )
- The previous implementation used the Node.js `Stream.Readable` class, which is not fully spec compliant
</details>
---
### 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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-19 07:34:32 +00:00
LongYinan
398d66fac1
chore: bump up all non-major dependencies ( #6107 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3 ) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3 )) | [`3.529.1` -> `3.536.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.529.1/3.536.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.536.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.536.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.529.1/3.536.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.529.1/3.536.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@nx/vite](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/vite )) | [`18.0.8` -> `18.1.2`](https://renovatebot.com/diffs/npm/@nx%2fvite/18.0.8/18.1.2 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@nx%2fvite/18.1.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@nx%2fvite/18.1.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@nx%2fvite/18.0.8/18.1.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@nx%2fvite/18.0.8/18.1.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@vitest/coverage-istanbul](https://togithub.com/vitest-dev/vitest/tree/main/packages/coverage-istanbul#readme ) ([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul )) | [`1.3.1` -> `1.4.0`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-istanbul/1.3.1/1.4.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@vitest%2fcoverage-istanbul/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitest%2fcoverage-istanbul/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitest%2fcoverage-istanbul/1.3.1/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitest%2fcoverage-istanbul/1.3.1/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@vitest/ui](https://togithub.com/vitest-dev/vitest/tree/main/packages/ui#readme ) ([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/ui )) | [`1.3.1` -> `1.4.0`](https://renovatebot.com/diffs/npm/@vitest%2fui/1.3.1/1.4.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@vitest%2fui/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitest%2fui/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitest%2fui/1.3.1/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitest%2fui/1.3.1/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [vitest](https://togithub.com/vitest-dev/vitest ) ([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/vitest )) | [`1.3.1` -> `1.4.0`](https://renovatebot.com/diffs/npm/vitest/1.3.1/1.4.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vitest/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vitest/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vitest/1.3.1/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitest/1.3.1/1.4.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.536.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35360-2024-03-18 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.535.0...v3.536.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.535.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35350-2024-03-15 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.534.0...v3.535.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.534.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35340-2024-03-14 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.533.0...v3.534.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.533.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35330-2024-03-13 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.1...v3.533.0 )
##### Features
- **client-s3:** This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT). ([2ddd8ec](2ddd8ec13e
))
#### [3.529.1](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1 ) (2024-03-08)
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
</details>
<details>
<summary>nrwl/nx (@​nx/vite)</summary>
### [`v18.1.2`](https://togithub.com/nrwl/nx/releases/tag/18.1.2 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.1.1...18.1.2 )
##### 18.1.2 (2024-03-18)
##### 🚀 Features
- **nx-dev:** add apollo.io tracking script to `_app.tsx` ([#​22339](https://togithub.com/nrwl/nx/pull/22339 ))
##### 🩹 Fixes
- **core:** do not use pseudo terminal if platform is unsuported and f… ([#​22341](https://togithub.com/nrwl/nx/pull/22341 ))
- **js:** read lockfile from the workspace root ([#​22340](https://togithub.com/nrwl/nx/pull/22340 ))
##### ❤️ Thank You
- Benjamin Cabanes [@​bcabanes](https://togithub.com/bcabanes )
- Jason Jean [@​FrozenPandaz](https://togithub.com/FrozenPandaz )
### [`v18.1.1`](https://togithub.com/nrwl/nx/releases/tag/18.1.1 )
[Compare Source](5e64e7dcb0
...18.1.1)
##### 18.1.1 (2024-03-15)
##### 🚀 Features
- **angular:** update jest-preset-angular version ([#​21776](https://togithub.com/nrwl/nx/pull/21776 ))
- **angular:** add the extract-i18n executor ([#​21802](https://togithub.com/nrwl/nx/pull/21802 ))
- **angular:** ensure all targets are generated for application and libraries ([#​21826](https://togithub.com/nrwl/nx/pull/21826 ))
- **angular:** support angular 17.2.0 ([#​21671](https://togithub.com/nrwl/nx/pull/21671 ))
- **angular:** force explicit targets when NX_ADD_PLUGINS is not explicitly true ([#​21852](https://togithub.com/nrwl/nx/pull/21852 ))
- **angular:** update jest-preset-angular dependency to 14.0.3 ([#​21912](https://togithub.com/nrwl/nx/pull/21912 ))
- **angular:** remove optional [@​nx/cypress](https://togithub.com/nx/cypress ) and [@​nx/jest](https://togithub.com/nx/jest ) from dependencies ([#​22162](https://togithub.com/nrwl/nx/pull/22162 ))
- **bundling:** bump rollup-plugin-typescript2 version ([#​20609](https://togithub.com/nrwl/nx/pull/20609 ))
- **bundling:** rollup should support ESM config files ([#​21999](https://togithub.com/nrwl/nx/pull/21999 ))
- **bundling:** crystalize rollup ([#​22045](https://togithub.com/nrwl/nx/pull/22045 ))
- **core:** update swc/register ([#​21755](https://togithub.com/nrwl/nx/pull/21755 ))
- **core:** add option to disable log grouping on CI ([#​21782](https://togithub.com/nrwl/nx/pull/21782 ))
- **core:** remove leading arrow from output headlines ([#​21359](https://togithub.com/nrwl/nx/pull/21359 ))
- **core:** remove leading arrow from output headlines" ([#​21800](https://togithub.com/nrwl/nx/pull/21800 ))
- **core:** support migrating to canary versions of nx for testing ([#​21812](https://togithub.com/nrwl/nx/pull/21812 ))
- **core:** flatten default base config to base ([#​19964](https://togithub.com/nrwl/nx/pull/19964 ))
- **core:** execute plugins in isolated processes ([#​21760](https://togithub.com/nrwl/nx/pull/21760 ))
- **core:** provide a hint when project.json has empty targets ([#​22028](https://togithub.com/nrwl/nx/pull/22028 ))
- **core:** add gradle plugin ([#​21055](https://togithub.com/nrwl/nx/pull/21055 ))
- **core:** use flag in nx.json for toggling crystal ([#​21980](https://togithub.com/nrwl/nx/pull/21980 ))
- **core:** forward options for run command ([#​22064](https://togithub.com/nrwl/nx/pull/22064 ))
- **core:** revert running plugins in isolation ([#​22246](https://togithub.com/nrwl/nx/pull/22246 ))
- **core:** run commands directly ([#​21918](https://togithub.com/nrwl/nx/pull/21918 ))
- **detox:** upgrade [@​config-plugins/detox](https://togithub.com/config-plugins/detox ) to 7 ([#​21959](https://togithub.com/nrwl/nx/pull/21959 ))
- **expo:** support cjs and mjs ([#​21408](https://togithub.com/nrwl/nx/pull/21408 ))
- **graph:** add error boundary error page for project details ([#​22007](https://togithub.com/nrwl/nx/pull/22007 ))
- **graph:** add spinner on the projects page ([#​22149](https://togithub.com/nrwl/nx/pull/22149 ))
- **js:** replace publish script with nx release config ([#​21474](https://togithub.com/nrwl/nx/pull/21474 ))
- **misc:** log message in nx init when detecting plugins ([#​21932](https://togithub.com/nrwl/nx/pull/21932 ))
- **nextjs:** use global NX_GRAPH_CREATION in withNx plugin to guard against graph creation during create nodes ([#​22026](https://togithub.com/nrwl/nx/pull/22026 ))
- **nuxt:** export storybook generator ([#​21969](https://togithub.com/nrwl/nx/pull/21969 ))
- **nx-dev:** update launch conf timings ([a0e4cf747d](https://togithub.com/nrwl/nx/commit/a0e4cf747d ))
- **nx-dev:** update launch page link text ([#​21747](https://togithub.com/nrwl/nx/pull/21747 ))
- **nx-dev:** update website header components ([#​21833](https://togithub.com/nrwl/nx/pull/21833 ))
- **nx-dev:** change color for nx-agents & nx-ai buttons on home ([#​22142](https://togithub.com/nrwl/nx/pull/22142 ))
- **react:** add tailwind as style prompt option for app gen ([#​21784](https://togithub.com/nrwl/nx/pull/21784 ))
- **release:** prompt to create github release when no file changes ([#​21819](https://togithub.com/nrwl/nx/pull/21819 ))
- **release:** interpolate workspaceRoot in changelog path ([#​22058](https://togithub.com/nrwl/nx/pull/22058 ))
- **release:** add conventional commits configurability for version and changelog ([#​22004](https://togithub.com/nrwl/nx/pull/22004 ))
- **remix:** add playwright option for e2eTestRunner ([#​21603](https://togithub.com/nrwl/nx/pull/21603 ))
- **remix:** upgrade to latest remix 2.6.0 ([#​21843](https://togithub.com/nrwl/nx/pull/21843 ))
- **remix:** use Remix CLI directly with Remix Crystal Plugin ([#​22234](https://togithub.com/nrwl/nx/pull/22234 ))
- **remix:** support version 2.8.0 ([#​22326](https://togithub.com/nrwl/nx/pull/22326 ))
- **remix:** add option to create-nx-workspace ([#​22334](https://togithub.com/nrwl/nx/pull/22334 ))
- **repo:** use latest pnpm for CI runs ([#​22207](https://togithub.com/nrwl/nx/pull/22207 ))
- **testing:** update cypress version ([#​21961](https://togithub.com/nrwl/nx/pull/21961 ))
- **testing:** add getJestProjectsAsync to support inferred targets ([#​21897](https://togithub.com/nrwl/nx/pull/21897 ))
- **vite:** add vitest.workspace.ts at root ([#​21915](https://togithub.com/nrwl/nx/pull/21915 ))
##### 🩹 Fixes
- **angular:** fix wrong trailing comma in mf bootstrap code generation ([#​21600](https://togithub.com/nrwl/nx/pull/21600 ))
- **angular:** support inferred cypress targets in setup-mf generator ([#​21619](https://togithub.com/nrwl/nx/pull/21619 ))
- **angular:** ajv hoisting issue ([#​21641](https://togithub.com/nrwl/nx/pull/21641 ))
- **angular:** resolve the index html transformer correctly for esbuild based build targets in dev-server ([#​21679](https://togithub.com/nrwl/nx/pull/21679 ))
- **angular:** generate app server module setup correctly in setup-ssr generator ([#​21702](https://togithub.com/nrwl/nx/pull/21702 ))
- **angular:** add missing forceEsbuild option to dev-server executor ([#​21753](https://togithub.com/nrwl/nx/pull/21753 ))
- **angular:** do not force explicit targets for separate e2e projects ([#​21865](https://togithub.com/nrwl/nx/pull/21865 ))
- **angular:** stop using npmScope as a prefix for component and directive selectors ([#​21828](https://togithub.com/nrwl/nx/pull/21828 ))
- **angular:** do not add target defaults for the ng-packagr-lite executor when generating non-buildable library ([#​21935](https://togithub.com/nrwl/nx/pull/21935 ))
- **angular:** ensure generated editor tsconfig in apps only include runtime files ([#​21945](https://togithub.com/nrwl/nx/pull/21945 ))
- **angular:** log message about unsupported ng cache command ([#​22154](https://togithub.com/nrwl/nx/pull/22154 ))
- **angular:** fix message logged for unsupported ng cache ([#​22211](https://togithub.com/nrwl/nx/pull/22211 ))
- **angular:** Module federation with Crystal enabled. ([#​22224](https://togithub.com/nrwl/nx/pull/22224 ))
- **angular:** install jsonc-eslint-parser only when [@​nx/dependency-checks](https://togithub.com/nx/dependency-checks ) is used ([#​22231](https://togithub.com/nrwl/nx/pull/22231 ))
- **core:** nx cloud prompt during migrate doesn't skip connection ([#​21588](https://togithub.com/nrwl/nx/pull/21588 ))
- **core:** pass the full resolved path of ts-node/esm when reloading the CLI ([#​21607](https://togithub.com/nrwl/nx/pull/21607 ))
- **core:** remove logic to reload process with esm loader for Node 18 ([#​21623](https://togithub.com/nrwl/nx/pull/21623 ))
- **core:** prevent target defaults from being discarded during merge process ([#​21624](https://togithub.com/nrwl/nx/pull/21624 ))
- **core:** add missing parts to ci workflws and update docs ([ab76d6291a](https://togithub.com/nrwl/nx/commit/ab76d6291a ))
- **core:** temporary use forked portable_pty to inherit cursor position for windows ([#​21683](https://togithub.com/nrwl/nx/pull/21683 ))
- **core:** handle blocking stdin ([#​21672](https://togithub.com/nrwl/nx/pull/21672 ))
- **core:** remove implementation detail from warning ([18efd62003](https://togithub.com/nrwl/nx/commit/18efd62003 ))
- **core:** static run one lifecycle should always print dependent task status, and output when verbose ([#​21720](https://togithub.com/nrwl/nx/pull/21720 ))
- **core:** run migrations ordered by their target version ([#​21799](https://togithub.com/nrwl/nx/pull/21799 ))
- **core:** Update NxWelcome connect to cloud ([#​21830](https://togithub.com/nrwl/nx/pull/21830 ))
- **core:** propagate `verbose` flag when running `init` generator dur… ([#​21868](https://togithub.com/nrwl/nx/pull/21868 ))
- **core:** ensure migrate works with yarn PnP ([#​21824](https://togithub.com/nrwl/nx/pull/21824 ))
- **core:** align terminal output padding and remove leading arrow ([#​21809](https://togithub.com/nrwl/nx/pull/21809 ))
- **core:** read all targets from package json when defining target defaults ([#​21719](https://togithub.com/nrwl/nx/pull/21719 ))
- **core:** include nx/nuxt in migrations ([#​21885](https://togithub.com/nrwl/nx/pull/21885 ))
- **core:** do not use the new pty function for older versions of windows ([#​21854](https://togithub.com/nrwl/nx/pull/21854 ))
- **core:** normalize migration target versions when sorting migrations ([#​21967](https://togithub.com/nrwl/nx/pull/21967 ))
- **core:** target defaults application shouldn't include extra scripts ([#​21970](https://togithub.com/nrwl/nx/pull/21970 ))
- **core:** update generated README pages with more useful instructions ([#​21976](https://togithub.com/nrwl/nx/pull/21976 ))
- **core:** plugin pool should not clobber promises when called multiple times ([#​21977](https://togithub.com/nrwl/nx/pull/21977 ))
- **core:** plugins should not be registered twice and should respect shutdown queue ([#​22057](https://togithub.com/nrwl/nx/pull/22057 ))
- **core:** nextjs-standalone generates package scripts consistent with create-next-app ([#​21996](https://togithub.com/nrwl/nx/pull/21996 ))
- **core:** target defaults should represent nx.json in source info ([#​22080](https://togithub.com/nrwl/nx/pull/22080 ))
- **core:** setting up .nx inside gradle shouldn't throw ([#​21957](https://togithub.com/nrwl/nx/pull/21957 ))
- **core:** add outputs to nx.json for nx init in monorepo ([#​22061](https://togithub.com/nrwl/nx/pull/22061 ))
- **core:** fix no such file or directory, open 'package-lock.json' ([#​21835](https://togithub.com/nrwl/nx/pull/21835 ))
- **core:** reject all promises in pool during shutdown ([#​22188](https://togithub.com/nrwl/nx/pull/22188 ))
- **core:** fix terminal message alignment on errors ([#​22189](https://togithub.com/nrwl/nx/pull/22189 ))
- **core:** only start plugin workers once ([#​22222](https://togithub.com/nrwl/nx/pull/22222 ))
- **core:** properly cleanup when the project-graph creation fails ([#​22243](https://togithub.com/nrwl/nx/pull/22243 ))
- **core:** make windows runtime input hashing windowless ([#​22197](https://togithub.com/nrwl/nx/pull/22197 ))
- **core:** fix gh group success icon ([#​22281](https://togithub.com/nrwl/nx/pull/22281 ))
- **core:** fix pty for multiple commands in 1 process ([#​22294](https://togithub.com/nrwl/nx/pull/22294 ))
- **devkit:** respect expectComments when parsing json ([#​21584](https://togithub.com/nrwl/nx/pull/21584 ))
- **graph:** fix open project with / in name ([#​21722](https://togithub.com/nrwl/nx/pull/21722 ))
- **graph:** show command property as monospace ([#​21997](https://togithub.com/nrwl/nx/pull/21997 ))
- **js:** babel preset should also check for JEST_WORKER_ID to transpile to CJS ([#​21754](https://togithub.com/nrwl/nx/pull/21754 ))
- **js:** nx release-version resolve-version-spec should normalize fetchSpec ([#​21710](https://togithub.com/nrwl/nx/pull/21710 ))
- **js:** swc executor should support inlining on windows ([#​21801](https://togithub.com/nrwl/nx/pull/21801 ))
- **js:** set moduleResolution to Node10 so it is compatible with CommonJS module ([#​21979](https://togithub.com/nrwl/nx/pull/21979 ))
- **js:** use NodeJs moduleResolution with ts-node to support CommonJS module and TS 4.x ([#​22258](https://togithub.com/nrwl/nx/pull/22258 ))
- **linter:** adjust terminal run check for crystal ([#​21638](https://togithub.com/nrwl/nx/pull/21638 ))
- **linter:** fix eslint-plugin migration target version ([#​21966](https://togithub.com/nrwl/nx/pull/21966 ))
- **linter:** add v7 of typescript-eslint to peerDeps ([#​21853](https://togithub.com/nrwl/nx/pull/21853 ))
- **linter:** refactor pcv3 plugin, expose configFiles on context ([#​21677](https://togithub.com/nrwl/nx/pull/21677 ))
- **misc:** handle workspaces if no plugin selected in nx init and only generate files after prompts ([#​21606](https://togithub.com/nrwl/nx/pull/21606 ))
- **misc:** ensure swc transpiler process required files ([#​21674](https://togithub.com/nrwl/nx/pull/21674 ))
- **misc:** pin generated vite version to ~5.0.0 to avoid issues with storybook ([#​21740](https://togithub.com/nrwl/nx/pull/21740 ))
- **misc:** logs from rm-default-collection should render properly ([#​21953](https://togithub.com/nrwl/nx/pull/21953 ))
- **misc:** set nx property in root package.json when no replacing script in nx init ([#​21974](https://togithub.com/nrwl/nx/pull/21974 ))
- **misc:** migration should shutdown plugin workers if it starts them ([#​22048](https://togithub.com/nrwl/nx/pull/22048 ))
- **misc:** make sure to add e2e crystal plugin ([#​22041](https://togithub.com/nrwl/nx/pull/22041 ))
- **misc:** fix buildable libs utils calculating dependent projects from task graph ([#​22015](https://togithub.com/nrwl/nx/pull/22015 ))
- **misc:** add missing format files call ([#​22137](https://togithub.com/nrwl/nx/pull/22137 ))
- **misc:** improve package.json scripts handling when running "nx init" and "nx add" ([#​22168](https://togithub.com/nrwl/nx/pull/22168 ))
- **misc:** do not add includedScripts unless really needed when running nx add ([#​22180](https://togithub.com/nrwl/nx/pull/22180 ))
- **module-federation:** map static remote locations correctly ([#​21709](https://togithub.com/nrwl/nx/pull/21709 ))
- **module-federation:** ensure targetDefaults for module federation executors are setup correctly ([#​22282](https://togithub.com/nrwl/nx/pull/22282 ))
- **nextjs:** move `next/constants` from top-level import to when it is needed ([#​21612](https://togithub.com/nrwl/nx/pull/21612 ))
- **nextjs:** Enable next e2e test ([#​21625](https://togithub.com/nrwl/nx/pull/21625 ))
- **nextjs:** src package.json should not be copied to output folder ([aa622bab5a](https://togithub.com/nrwl/nx/commit/aa622bab5a ))
- **nextjs:** Custom server should work with Crystal ([#​21736](https://togithub.com/nrwl/nx/pull/21736 ))
- **nextjs:** Svg should work when svgr is true in next config ([#​21761](https://togithub.com/nrwl/nx/pull/21761 ))
- **nextjs:** Add missing e2e-ci target for cypress ([#​21805](https://togithub.com/nrwl/nx/pull/21805 ))
- **nextjs:** Add spec files when creating a next app ([#​22079](https://togithub.com/nrwl/nx/pull/22079 ))
- **nextjs:** avoid path error on dev server creation ([#​21998](https://togithub.com/nrwl/nx/pull/21998 ))
- **nextjs:** Adding styles to nextjs cypress should not fail. ([#​22170](https://togithub.com/nrwl/nx/pull/22170 ))
- **nextjs:** Surface error codes when build is interrupted by signals SIGINT, SIGTERM etc... ([#​22190](https://togithub.com/nrwl/nx/pull/22190 ))
- **nextjs:** runCLI stdio ([#​22267](https://togithub.com/nrwl/nx/pull/22267 ))
- **node:** Broken E2E tests ([#​21569](https://togithub.com/nrwl/nx/pull/21569 ))
- **node:** Increase timeout for CI ([#​22003](https://togithub.com/nrwl/nx/pull/22003 ))
- **nuxt:** init generator should add [@​nx/vite](https://togithub.com/nx/vite ) to dependencies ([#​21911](https://togithub.com/nrwl/nx/pull/21911 ))
- **nuxt:** turn on autoimport ([#​21894](https://togithub.com/nrwl/nx/pull/21894 ))
- **nuxt:** tsconfig types and output dir ([#​21934](https://togithub.com/nrwl/nx/pull/21934 ))
- **nuxt:** fix storybook preview config path ([#​22020](https://togithub.com/nrwl/nx/pull/22020 ))
- **nuxt:** Add e2e-ci and serve-static targets ([#​22056](https://togithub.com/nrwl/nx/pull/22056 ))
- **nx-dev:** redirect core-features page ([#​21616](https://togithub.com/nrwl/nx/pull/21616 ))
- **nx-dev:** launch page mobile experience ([de676e207f](https://togithub.com/nrwl/nx/commit/de676e207f ))
- **nx-dev:** redirect on remote caching page ([#​21669](https://togithub.com/nrwl/nx/pull/21669 ))
- **nx-dev:** remove fence from new packages and "nx add" commands ([#​21705](https://togithub.com/nrwl/nx/pull/21705 ))
- **nx-dev:** add colors to ms logo ([#​21790](https://togithub.com/nrwl/nx/pull/21790 ))
- **nx-plugin:** do not print duplicated warning about derived format when generating plugin ([#​22230](https://togithub.com/nrwl/nx/pull/22230 ))
- **nx-plugin:** support root tsconfig.json in nx-plugin-checks eslint rule ([4850bdb6aa](https://togithub.com/nrwl/nx/commit/4850bdb6aa ))
- **playwright:** fix include in tsconfig.json ([#​21730](https://togithub.com/nrwl/nx/pull/21730 ))
- **react:** generate correctly when --js is used for module federation host/remote ([#​20119](https://togithub.com/nrwl/nx/pull/20119 ))
- **react:** full support custom secure host for module federation ([#​21777](https://togithub.com/nrwl/nx/pull/21777 ))
- **react:** ensure playwright configuration is using correct port in app gen ([#​21941](https://togithub.com/nrwl/nx/pull/21941 ))
- **react:** pass correct argument to rspack configuration generator ([#​22241](https://togithub.com/nrwl/nx/pull/22241 ))
- **react-native:** change gradlew to absolute path ([#​21725](https://togithub.com/nrwl/nx/pull/21725 ))
- **react-native:** add all flag to sync-deps ([#​21821](https://togithub.com/nrwl/nx/pull/21821 ))
- **react-native:** pin ajv version to 8.12.0 ([#​22002](https://togithub.com/nrwl/nx/pull/22002 ))
- **release:** logging improvements ([#​21692](https://togithub.com/nrwl/nx/pull/21692 ))
- **release:** ensure `nx release publish --graph` only includes projects with target ([#​21726](https://togithub.com/nrwl/nx/pull/21726 ))
- **release:** do not stop daemon in dry-run ([#​21743](https://togithub.com/nrwl/nx/pull/21743 ))
- **release:** skip prompt for publish when no version created ([#​21769](https://togithub.com/nrwl/nx/pull/21769 ))
- **release:** use --first-parent to support merged repos ([#​21686](https://togithub.com/nrwl/nx/pull/21686 ))
- **release:** move github release creation to git tasks ([#​21510](https://togithub.com/nrwl/nx/pull/21510 ))
- **release:** currentVersionResolver git-tag should prefer merged tags ([#​22082](https://togithub.com/nrwl/nx/pull/22082 ))
- **release:** skip lock file update if workspaces are not enabled ([#​22055](https://togithub.com/nrwl/nx/pull/22055 ))
- **release:** store rawVersionSpec on versionData ([#​22071](https://togithub.com/nrwl/nx/pull/22071 ))
- **release:** fix default renderer resolution to be relative within t… ([#​22331](https://togithub.com/nrwl/nx/pull/22331 ))
- **remix:** do not rename root jest.preset.js ([#​21703](https://togithub.com/nrwl/nx/pull/21703 ))
- **remix:** should add remix plugin to nx.json on init correctly ([#​21827](https://togithub.com/nrwl/nx/pull/21827 ))
- **remix:** the output path should respect the remix.config.js in crystal ([#​21842](https://togithub.com/nrwl/nx/pull/21842 ))
- **remix:** adjust remix start script when building ([#​21883](https://togithub.com/nrwl/nx/pull/21883 ))
- **remix:** typo in tsconfig.spec.json update led to invalid tsconfig ([#​21886](https://togithub.com/nrwl/nx/pull/21886 ))
- **remix:** ensure component-testing is exported correctly [#​22091](https://togithub.com/nrwl/nx/issues/22091 ) ([#​22095](https://togithub.com/nrwl/nx/pull/22095 ), [#​22091](https://togithub.com/nrwl/nx/issues/22091 ))
- **repo:** update browser tools to fix ci ([#​21955](https://togithub.com/nrwl/nx/pull/21955 ))
- **storybook:** handle main.js file correctly in storybook plugin ([#​22081](https://togithub.com/nrwl/nx/pull/22081 ))
- **testing:** cleanup e2e atomization plugins ([#​21688](https://togithub.com/nrwl/nx/pull/21688 ))
- **testing:** increase the default timeout to 15s for the dev server to start ([#​21716](https://togithub.com/nrwl/nx/pull/21716 ))
- **testing:** ensure cypress closes the web dev server ([#​21759](https://togithub.com/nrwl/nx/pull/21759 ))
- **testing:** jest should handle root jest.preset.cjs ([#​21746](https://togithub.com/nrwl/nx/pull/21746 ))
- **testing:** fix cypress project targets does not exist ([#​21785](https://togithub.com/nrwl/nx/pull/21785 ))
- **testing:** pin cypress version to avoid issue with verifying cypress ([#​21917](https://togithub.com/nrwl/nx/pull/21917 ))
- **testing:** ensure baseUrl is not passed to playwright cli ([#​21943](https://togithub.com/nrwl/nx/pull/21943 ))
- **testing:** playwright plugin enoent error ([#​21951](https://togithub.com/nrwl/nx/pull/21951 ))
- **testing:** add null checks when reading targets ([#​21952](https://togithub.com/nrwl/nx/pull/21952 ))
- **testing:** calculate correct support file path in cypress e2e preset ([#​22096](https://togithub.com/nrwl/nx/pull/22096 ))
- **testing:** increase the default timeout to 60s for the cypress web dev server to start ([#​22132](https://togithub.com/nrwl/nx/pull/22132 ))
- **testing:** close cypress web server correctly on windows ([#​22125](https://togithub.com/nrwl/nx/pull/22125 ))
- **testing:** resolve cypress config glob pattern correctly to handle root projects ([#​22165](https://togithub.com/nrwl/nx/pull/22165 ))
- **testing:** minor adjustment to the config generation template ([#​22175](https://togithub.com/nrwl/nx/pull/22175 ))
- **testing:** fix project config might not be defined ([#​22174](https://togithub.com/nrwl/nx/pull/22174 ))
- **vite:** import esbuild before loading config to keep it in cache ([#​21685](https://togithub.com/nrwl/nx/pull/21685 ))
- **vite:** normalize vitest cli args in executor ([#​21870](https://togithub.com/nrwl/nx/pull/21870 ))
- **vite:** project conversion generator ([#​21646](https://togithub.com/nrwl/nx/pull/21646 ))
- **vite:** update vitest and use parseCLI ([#​21890](https://togithub.com/nrwl/nx/pull/21890 ))
- **vite:** Storing nxjson details too early ([#​22285](https://togithub.com/nrwl/nx/pull/22285 ))
- **vue:** fixing vue and nuxt welcome templates ([#​21792](https://togithub.com/nrwl/nx/pull/21792 ))
- **vue:** tailwind generator ignoring styleSheet option ([#​21840](https://togithub.com/nrwl/nx/pull/21840 ))
- **vue:** small typo in CNW description ([#​21888](https://togithub.com/nrwl/nx/pull/21888 ))
- **webpack:** require ForkTsCheckerWebpackPlugin only as required ([#​21629](https://togithub.com/nrwl/nx/pull/21629 ))
- **webpack:** resolve relative path for assets inputs ([#​21822](https://togithub.com/nrwl/nx/pull/21822 ))
- **webpack:** correctly handle paranthesis in PostCSS in url ([#​21884](https://togithub.com/nrwl/nx/pull/21884 ))
- **webpack:** surface original error when remotes fail to start ([#​21919](https://togithub.com/nrwl/nx/pull/21919 ))
##### ❤️ Thank You
- Alex Swindler
- Alon Valadji [@​alonronin](https://togithub.com/alonronin )
- Austin Fahsl [@​fahslaj](https://togithub.com/fahslaj )
- Benjamin Cabanes [@​bcabanes](https://togithub.com/bcabanes )
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Dan Roujinsky
- Edouard Bozon [@​edbzn](https://togithub.com/edbzn )
- Emily Xiong [@​xiongemi](https://togithub.com/xiongemi )
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
- James Henry [@​JamesHenry](https://togithub.com/JamesHenry )
- Jason Jean [@​FrozenPandaz](https://togithub.com/FrozenPandaz )
- Javier Abia [@​weberjavi](https://togithub.com/weberjavi )
- Jonathan Cammisuli
- Julian Martin
- Juri [@​juristr](https://togithub.com/juristr )
- Juri Strumpflohner [@​juristr](https://togithub.com/juristr )
- Katerina Skroumpelou [@​mandarini](https://togithub.com/mandarini )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- MaxKless [@​MaxKless](https://togithub.com/MaxKless )
- Miroslav Jonas [@​meeroslav](https://togithub.com/meeroslav )
- Miroslav Jonaš [@​meeroslav](https://togithub.com/meeroslav )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
- Nikita Barsukov [@​nsbarsukov](https://togithub.com/nsbarsukov )
- Philip Fulcher
- Remco Krams
- Steven Nance [@​llwt](https://togithub.com/llwt )
- Tine Kondo [@​tinesoft](https://togithub.com/tinesoft )
- Vadim Goy
- Victor Login [@​batazor](https://togithub.com/batazor )
- Viktor Pöntinen
- Yu Zheng
- Zachary DeRose [@​ZackDeRose](https://togithub.com/ZackDeRose )
### [`v18.1.0`](https://togithub.com/nrwl/nx/compare/18.0.8...5e64e7dcb011fd164e22f87a9f2a6358a7c2cd32 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.8...5e64e7dcb011fd164e22f87a9f2a6358a7c2cd32 )
</details>
<details>
<summary>vitest-dev/vitest (@​vitest/coverage-istanbul)</summary>
### [`v1.4.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.4.0 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.3.1...v1.4.0 )
##### 🚀 Features
- Throw error when using snapshot assertion with `not` - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5294 ](https://togithub.com/vitest-dev/vitest/issues/5294 ) [<samp>(b9d37)</samp>](https://togithub.com/vitest-dev/vitest/commit/b9d378f5 )
- Add a flag to include test location in tasks - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5342 ](https://togithub.com/vitest-dev/vitest/issues/5342 ) [<samp>(d627e)</samp>](https://togithub.com/vitest-dev/vitest/commit/d627e209 )
- **cli**:
- Support wildcards in `--project` option - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5295 ](https://togithub.com/vitest-dev/vitest/issues/5295 ) [<samp>(201bd)</samp>](https://togithub.com/vitest-dev/vitest/commit/201bd067 )
- **config**:
- Add `shuffle.files` and `shuffle.tests` options - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5281 ](https://togithub.com/vitest-dev/vitest/issues/5281 ) [<samp>(356db)</samp>](https://togithub.com/vitest-dev/vitest/commit/356db87b )
- Deprecate `cache.dir` option - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5229 ](https://togithub.com/vitest-dev/vitest/issues/5229 ) [<samp>(d7e8b)</samp>](https://togithub.com/vitest-dev/vitest/commit/d7e8b53e )
- **coverage**:
- Support `--changed` option - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5314 ](https://togithub.com/vitest-dev/vitest/issues/5314 ) [<samp>(600b4)</samp>](https://togithub.com/vitest-dev/vitest/commit/600b44d6 )
- **vitest**:
- Support `clearScreen` cli flag - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5241 ](https://togithub.com/vitest-dev/vitest/issues/5241 ) [<samp>(e1735)</samp>](https://togithub.com/vitest-dev/vitest/commit/e1735fb6 )
##### 🐞 Bug Fixes
- Repeatable `--project` option - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5265 ](https://togithub.com/vitest-dev/vitest/issues/5265 ) [<samp>(d1a06)</samp>](https://togithub.com/vitest-dev/vitest/commit/d1a06730 )
- `--inspect-brk` to pause before execution - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5355 ](https://togithub.com/vitest-dev/vitest/issues/5355 ) [<samp>(e77c5)</samp>](https://togithub.com/vitest-dev/vitest/commit/e77c553f )
- Correct locations in test.each tasks - by [@​sheremet-va](https://togithub.com/sheremet-va ) [<samp>(4f6e3)</samp>](https://togithub.com/vitest-dev/vitest/commit/4f6e39c1 )
- **api**:
- Use resolvedUrls from devserver - by [@​saitonakamura](https://togithub.com/saitonakamura ) and [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5289 ](https://togithub.com/vitest-dev/vitest/issues/5289 ) [<samp>(2fef5)</samp>](https://togithub.com/vitest-dev/vitest/commit/2fef5a7e )
- **browser**:
- Add `magic-string` to `optimizeDeps.include` - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5278 ](https://togithub.com/vitest-dev/vitest/issues/5278 ) [<samp>(8f04e)</samp>](https://togithub.com/vitest-dev/vitest/commit/8f04e798 )
- **coverage**:
- Expensive regexp hangs v8 report generation - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5259 ](https://togithub.com/vitest-dev/vitest/issues/5259 ) [<samp>(d68a7)</samp>](https://togithub.com/vitest-dev/vitest/commit/d68a7390 )
- V8 to ignore type-only files - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5328 ](https://togithub.com/vitest-dev/vitest/issues/5328 ) [<samp>(c3eb8)</samp>](https://togithub.com/vitest-dev/vitest/commit/c3eb8deb )
- Respect source maps of pre-transpiled sources - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5367 ](https://togithub.com/vitest-dev/vitest/issues/5367 ) [<samp>(6eda4)</samp>](https://togithub.com/vitest-dev/vitest/commit/6eda473f )
- Prevent `reportsDirectory` from removing user's project - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5376 ](https://togithub.com/vitest-dev/vitest/issues/5376 ) [<samp>(07ec3)</samp>](https://togithub.com/vitest-dev/vitest/commit/07ec3779 )
- **expect**:
- Show diff on `toContain/toMatch` assertion error - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5267 ](https://togithub.com/vitest-dev/vitest/issues/5267 ) [<samp>(8ee59)</samp>](https://togithub.com/vitest-dev/vitest/commit/8ee59f0d )
- **forks**:
- Wrap `defines` to support `undefined` values - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5284 ](https://togithub.com/vitest-dev/vitest/issues/5284 ) [<samp>(5b58b)</samp>](https://togithub.com/vitest-dev/vitest/commit/5b58b399 )
- **typecheck**:
- Update get-tsconfig 4.7.3 to fix false circularity error - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5384 ](https://togithub.com/vitest-dev/vitest/issues/5384 ) [<samp>(bdc37)</samp>](https://togithub.com/vitest-dev/vitest/commit/bdc371ee )
- **ui**:
- Escape html in error diff - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5325 ](https://togithub.com/vitest-dev/vitest/issues/5325 ) [<samp>(ab60b)</samp>](https://togithub.com/vitest-dev/vitest/commit/ab60bf8d )
- **vitest**:
- Loosen `onConsoleLog` return type - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5337 ](https://togithub.com/vitest-dev/vitest/issues/5337 ) [<samp>(6d1b1)</samp>](https://togithub.com/vitest-dev/vitest/commit/6d1b1451 )
- Ensure restoring terminal cursor on close - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5292 ](https://togithub.com/vitest-dev/vitest/issues/5292 ) [<samp>(0bea2)</samp>](https://togithub.com/vitest-dev/vitest/commit/0bea2247 )
- Ignore timeout on websocket reporter rpc - by [@​sheremet-va](https://togithub.com/sheremet-va ) [<samp>(38119)</samp>](https://togithub.com/vitest-dev/vitest/commit/38119b75 )
- Correctly override api with --no-api flag - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5386 ](https://togithub.com/vitest-dev/vitest/issues/5386 ) [<samp>(51d1d)</samp>](https://togithub.com/vitest-dev/vitest/commit/51d1d472 )
- Logs in `beforeAll` and `afterAll` - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5288 ](https://togithub.com/vitest-dev/vitest/issues/5288 ) [<samp>(ce5ca)</samp>](https://togithub.com/vitest-dev/vitest/commit/ce5ca6bf )
- **workspace**:
- Throw error when browser mode and `@vitest/coverage-v8` are used - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5250 ](https://togithub.com/vitest-dev/vitest/issues/5250 ) [<samp>(29f98)</samp>](https://togithub.com/vitest-dev/vitest/commit/29f98cd3 )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.3.1...v1.4.0 )
</details>
---
### 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](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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzguMSIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-19 03:01:03 +00:00
LongYinan
0b0b3e0ae9
build(deps): bump follow-redirects from 1.15.5 to 1.15.6 ( #6164 )
...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects ) from 1.15.5 to 1.15.6.
<details>
<summary>Commits</summary>
<ul>
<li><a href="35a517c586
"><code>35a517c</code></a> Release version 1.15.6 of the npm package.</li>
<li><a href="c4f847f851
"><code>c4f847f</code></a> Drop Proxy-Authorization across hosts.</li>
<li><a href="8526b4a1b2
"><code>8526b4a</code></a> Use GitHub for disclosure.</li>
<li>See full diff in <a href="https://github.com/follow-redirects/follow-redirects/compare/v1.15.5...v1.15.6 ">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=follow-redirects&package-manager=npm_and_yarn&previous-version=1.15.5&new-version=1.15.6 )](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/toeverything/AFFiNE/network/alerts ).
</details>
2024-03-18 03:53:11 +00:00
LongYinan
58c81dd1ac
chore: bump up get-stream version to v9 ( #6139 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [get-stream](https://togithub.com/sindresorhus/get-stream ) | [`^8.0.1` -> `^9.0.0`](https://renovatebot.com/diffs/npm/get-stream/8.0.1/9.0.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/get-stream/9.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/get-stream/9.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/get-stream/8.0.1/9.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/get-stream/8.0.1/9.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>sindresorhus/get-stream (get-stream)</summary>
### [`v9.0.0`](https://togithub.com/sindresorhus/get-stream/releases/tag/v9.0.0 )
[Compare Source](https://togithub.com/sindresorhus/get-stream/compare/v8.0.1...v9.0.0 )
##### Breaking
- Require Node.js 18 ([#​111](https://togithub.com/sindresorhus/get-stream/issues/111 )) [`7ccab70`](https://togithub.com/sindresorhus/get-stream/commit/7ccab70 )
##### Improvements
- Fix browser support ([#​122](https://togithub.com/sindresorhus/get-stream/issues/122 )) [`4d233d3`](https://togithub.com/sindresorhus/get-stream/commit/4d233d3 )
- Allow multiple readers at once ([#​121](https://togithub.com/sindresorhus/get-stream/issues/121 )) [`a51d085`](https://togithub.com/sindresorhus/get-stream/commit/a51d085 )
</details>
---
### 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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-18 03:08:03 +00:00
Chen
a24320da68
feat: bump blocksuite ( #6123 )
2024-03-15 16:54:24 +08:00
Lye Hongtao
05583dbe98
feat: bump blocksuite ( #6112 )
2024-03-14 13:05:52 +08:00
regischen
c1f5e848b4
feat: blocksuite bump ( #6104 )
2024-03-13 23:50:10 +08:00
regischen
fddbb426a6
feat: bump blocksuite ( #6078 )
2024-03-13 17:04:21 +08:00
LongYinan
9e1adfed81
chore: bump up all non-major dependencies ( #6069 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@storybook/test-runner](https://togithub.com/storybookjs/test-runner ) | [`^0.16.0` -> `^0.17.0`](https://renovatebot.com/diffs/npm/@storybook%2ftest-runner/0.16.0/0.17.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2ftest-runner/0.17.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2ftest-runner/0.17.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2ftest-runner/0.16.0/0.17.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2ftest-runner/0.16.0/0.17.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [next-themes](https://togithub.com/pacocoursey/next-themes ) | [`^0.2.1` -> `^0.3.0`](https://renovatebot.com/diffs/npm/next-themes/0.2.1/0.3.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/next-themes/0.3.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/next-themes/0.3.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/next-themes/0.2.1/0.3.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/next-themes/0.2.1/0.3.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>storybookjs/test-runner (@​storybook/test-runner)</summary>
### [`v0.17.0`](https://togithub.com/storybookjs/test-runner/releases/tag/v0.17.0 )
[Compare Source](https://togithub.com/storybookjs/test-runner/compare/v0.16.0...v0.17.0 )
##### 🚀 Enhancement
- Release 0.17.0 [#​438](https://togithub.com/storybookjs/test-runner/pull/438 ) ([@​JReinhold](https://togithub.com/JReinhold ) [@​shilman](https://togithub.com/shilman ) [@​valentinpalkovic](https://togithub.com/valentinpalkovic ) [@​yannbf](https://togithub.com/yannbf ) [@​ndelangen](https://togithub.com/ndelangen ))
- Support Storybook 8 [#​429](https://togithub.com/storybookjs/test-runner/pull/429 ) ([@​yannbf](https://togithub.com/yannbf ))
- Support unhandled rendering errors [#​421](https://togithub.com/storybookjs/test-runner/pull/421 ) ([@​yannbf](https://togithub.com/yannbf ))
##### 🐛 Bug Fix
- Prebundle dependencies [#​431](https://togithub.com/storybookjs/test-runner/pull/431 ) ([@​yannbf](https://togithub.com/yannbf ))
- Update internal example to Storybook 8 [#​430](https://togithub.com/storybookjs/test-runner/pull/430 ) ([@​yannbf](https://togithub.com/yannbf ))
- swap storybook/jest to storybook/test [#​427](https://togithub.com/storybookjs/test-runner/pull/427 ) ([@​ndelangen](https://togithub.com/ndelangen ))
- Add PR template [#​428](https://togithub.com/storybookjs/test-runner/pull/428 ) ([@​yannbf](https://togithub.com/yannbf ))
- Fix build step [#​425](https://togithub.com/storybookjs/test-runner/pull/425 ) ([@​valentinpalkovic](https://togithub.com/valentinpalkovic ))
- Remove --prerelease from sb upgrade CI [#​423](https://togithub.com/storybookjs/test-runner/pull/423 ) ([@​JReinhold](https://togithub.com/JReinhold ))
- Support stories with meta id for permalinking [#​419](https://togithub.com/storybookjs/test-runner/pull/419 ) ([@​yannbf](https://togithub.com/yannbf ))
##### 📝 Documentation
- Docs: Add remark regarding pnp support [#​432](https://togithub.com/storybookjs/test-runner/pull/432 ) ([@​yannbf](https://togithub.com/yannbf ))
- docs: replace postRender(deprecated) with postVisit [#​418](https://togithub.com/storybookjs/test-runner/pull/418 ) ([@​junkisai](https://togithub.com/junkisai ))
##### Authors: 6
- Jeppe Reinhold ([@​JReinhold](https://togithub.com/JReinhold ))
- Junki Saito ([@​junkisai](https://togithub.com/junkisai ))
- Michael Shilman ([@​shilman](https://togithub.com/shilman ))
- Norbert de Langen ([@​ndelangen](https://togithub.com/ndelangen ))
- Valentin Palkovic ([@​valentinpalkovic](https://togithub.com/valentinpalkovic ))
- Yann Braga ([@​yannbf](https://togithub.com/yannbf ))
</details>
<details>
<summary>pacocoursey/next-themes (next-themes)</summary>
### [`v0.3.0`](https://togithub.com/pacocoursey/next-themes/releases/tag/v0.3.0 )
#### What's
- `"use client"` was added to the library output so that you can use it as a React Client component without creating a wrapper.
#### New Contributors
- [@​MaxLeiter](https://togithub.com/MaxLeiter ) made their first contribution in [https://github.com/pacocoursey/next-themes/pull/120 ](https://togithub.com/pacocoursey/next-themes/pull/120 )
- [@​gnoff](https://togithub.com/gnoff ) made their first contribution in [https://github.com/pacocoursey/next-themes/pull/135 ](https://togithub.com/pacocoursey/next-themes/pull/135 )
- [@​WITS](https://togithub.com/WITS ) made their first contribution in [https://github.com/pacocoursey/next-themes/pull/168 ](https://togithub.com/pacocoursey/next-themes/pull/168 )
- [@​dimaMachina](https://togithub.com/dimaMachina ) made their first contribution in [https://github.com/pacocoursey/next-themes/pull/186 ](https://togithub.com/pacocoursey/next-themes/pull/186 )
- [@​amrhassab](https://togithub.com/amrhassab ) made their first contribution in [https://github.com/pacocoursey/next-themes/pull/192 ](https://togithub.com/pacocoursey/next-themes/pull/192 )
- [@​BekzodIsakov](https://togithub.com/BekzodIsakov ) made their first contribution in [https://github.com/pacocoursey/next-themes/pull/241 ](https://togithub.com/pacocoursey/next-themes/pull/241 )
- [@​BlankParticle](https://togithub.com/BlankParticle ) made their first contribution in [https://github.com/pacocoursey/next-themes/pull/253 ](https://togithub.com/pacocoursey/next-themes/pull/253 )
**Full Changelog**: https://github.com/pacocoursey/next-themes/compare/v0.2.0...v0.3.0
</details>
---
### 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](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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzOC4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-13 04:22:43 +00:00
liuyi
fb3a0e7b8f
refactor(server): auth ( #5895 )
...
Remove `next-auth` and implement our own Authorization/Authentication system from scratch.
## Server
- [x] tokens
- [x] function
- [x] encryption
- [x] AuthController
- [x] /api/auth/sign-in
- [x] /api/auth/sign-out
- [x] /api/auth/session
- [x] /api/auth/session (WE SUPPORT MULTI-ACCOUNT!)
- [x] OAuthPlugin
- [x] OAuthController
- [x] /oauth/login
- [x] /oauth/callback
- [x] Providers
- [x] Google
- [x] GitHub
## Client
- [x] useSession
- [x] cloudSignIn
- [x] cloudSignOut
## NOTE:
Tests will be adding in the future
2024-03-12 10:00:09 +00:00
LongYinan
cb96d7de43
chore: bump up @blocksuite/icons version to v2.1.45 ( #6061 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.44` -> `2.1.45`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.44/2.1.45 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@blocksuite%2ficons/2.1.45?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@blocksuite%2ficons/2.1.45?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@blocksuite%2ficons/2.1.44/2.1.45?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@blocksuite%2ficons/2.1.44/2.1.45?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>toeverything/icons (@​blocksuite/icons)</summary>
### [`v2.1.45`](bc31d70961...cc4113532a
)
[Compare Source](bc31d70961...cc4113532a
)
</details>
---
### 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.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-11 07:35:56 +00:00
LongYinan
d81c017224
chore: bump up all non-major dependencies ( #6037 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3 ) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3 )) | [`3.525.0` -> `3.529.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.525.0/3.529.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.529.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.529.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.525.0/3.529.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.525.0/3.529.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@nx/vite](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/vite )) | [`18.0.7` -> `18.0.8`](https://renovatebot.com/diffs/npm/@nx%2fvite/18.0.7/18.0.8 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@nx%2fvite/18.0.8?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@nx%2fvite/18.0.8?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@nx%2fvite/18.0.7/18.0.8?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@nx%2fvite/18.0.7/18.0.8?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/instrumentation-graphql](https://togithub.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-graphql#readme ) ([source](https://togithub.com/open-telemetry/opentelemetry-js-contrib )) | [`^0.37.0` -> `^0.38.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-graphql/0.37.0/0.38.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@opentelemetry%2finstrumentation-graphql/0.38.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@opentelemetry%2finstrumentation-graphql/0.38.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@opentelemetry%2finstrumentation-graphql/0.37.0/0.38.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@opentelemetry%2finstrumentation-graphql/0.37.0/0.38.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/instrumentation-ioredis](https://togithub.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-ioredis#readme ) ([source](https://togithub.com/open-telemetry/opentelemetry-js-contrib )) | [`^0.37.0` -> `^0.38.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-ioredis/0.37.0/0.38.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@opentelemetry%2finstrumentation-ioredis/0.38.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@opentelemetry%2finstrumentation-ioredis/0.38.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@opentelemetry%2finstrumentation-ioredis/0.37.0/0.38.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@opentelemetry%2finstrumentation-ioredis/0.37.0/0.38.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/instrumentation-nestjs-core](https://togithub.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-nestjs-core#readme ) ([source](https://togithub.com/open-telemetry/opentelemetry-js-contrib )) | [`^0.34.0` -> `^0.35.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-nestjs-core/0.34.0/0.35.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@opentelemetry%2finstrumentation-nestjs-core/0.35.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@opentelemetry%2finstrumentation-nestjs-core/0.35.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@opentelemetry%2finstrumentation-nestjs-core/0.34.0/0.35.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@opentelemetry%2finstrumentation-nestjs-core/0.34.0/0.35.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/instrumentation-socket.io](https://togithub.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-socket.io#readme ) ([source](https://togithub.com/open-telemetry/opentelemetry-js-contrib )) | [`^0.36.0` -> `^0.37.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-socket.io/0.36.0/0.37.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@opentelemetry%2finstrumentation-socket.io/0.37.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@opentelemetry%2finstrumentation-socket.io/0.37.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@opentelemetry%2finstrumentation-socket.io/0.36.0/0.37.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@opentelemetry%2finstrumentation-socket.io/0.36.0/0.37.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.529.1`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35291-2024-03-08 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.529.0...v3.529.1 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.529.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35290-2024-03-07 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.525.0...v3.529.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
</details>
<details>
<summary>nrwl/nx (@​nx/vite)</summary>
### [`v18.0.8`](https://togithub.com/nrwl/nx/releases/tag/18.0.8 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.7...18.0.8 )
##### 18.0.8 (2024-03-08)
##### 🩹 Fixes
- **angular:** log message about unsupported ng cache command ([#​22154](https://togithub.com/nrwl/nx/pull/22154 ))
- **angular:** fix message logged for unsupported ng cache ([#​22211](https://togithub.com/nrwl/nx/pull/22211 ))
- **angular:** Module federation with Crystal enabled. ([#​22224](https://togithub.com/nrwl/nx/pull/22224 ))
- **angular:** install jsonc-eslint-parser only when [@​nx/dependency-checks](https://togithub.com/nx/dependency-checks ) is used ([#​22231](https://togithub.com/nrwl/nx/pull/22231 ))
- **core:** setting up .nx inside gradle shouldn't throw ([#​21957](https://togithub.com/nrwl/nx/pull/21957 ))
- **core:** add outputs to nx.json for nx init in monorepo ([#​22061](https://togithub.com/nrwl/nx/pull/22061 ))
- **core:** fix no such file or directory, open 'package-lock.json' ([#​21835](https://togithub.com/nrwl/nx/pull/21835 ))
- **core:** fix terminal message alignment on errors ([#​22189](https://togithub.com/nrwl/nx/pull/22189 ))
- **graph:** show command property as monospace ([#​21997](https://togithub.com/nrwl/nx/pull/21997 ))
- **linter:** add v7 of typescript-eslint to peerDeps ([#​21853](https://togithub.com/nrwl/nx/pull/21853 ))
- **misc:** improve package.json scripts handling when running "nx init" and "nx add" ([#​22168](https://togithub.com/nrwl/nx/pull/22168 ))
- **misc:** do not add includedScripts unless really needed when running nx add ([#​22180](https://togithub.com/nrwl/nx/pull/22180 ))
- **nextjs:** avoid path error on dev server creation ([#​21998](https://togithub.com/nrwl/nx/pull/21998 ))
- **nextjs:** Surface error codes when build is interrupted by signals SIGINT, SIGTERM etc... ([#​22190](https://togithub.com/nrwl/nx/pull/22190 ))
- **nx-plugin:** do not print duplicated warning about derived format when generating plugin ([#​22230](https://togithub.com/nrwl/nx/pull/22230 ))
- **react:** pass correct argument to rspack configuration generator ([#​22241](https://togithub.com/nrwl/nx/pull/22241 ))
- **release:** store rawVersionSpec on versionData ([#​22071](https://togithub.com/nrwl/nx/pull/22071 ))
- **testing:** close cypress web server correctly on windows ([#​22125](https://togithub.com/nrwl/nx/pull/22125 ))
- **testing:** resolve cypress config glob pattern correctly to handle root projects ([#​22165](https://togithub.com/nrwl/nx/pull/22165 ))
- **testing:** fix project config might not be defined ([#​22174](https://togithub.com/nrwl/nx/pull/22174 ))
- **vue:** small typo in CNW description ([#​21888](https://togithub.com/nrwl/nx/pull/21888 ))
##### ❤️ Thank You
- Alon Valadji [@​alonronin](https://togithub.com/alonronin )
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Emily Xiong [@​xiongemi](https://togithub.com/xiongemi )
- James Henry [@​JamesHenry](https://togithub.com/JamesHenry )
- Javier Abia [@​weberjavi](https://togithub.com/weberjavi )
- Juri Strumpflohner [@​juristr](https://togithub.com/juristr )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- MaxKless [@​MaxKless](https://togithub.com/MaxKless )
- Miroslav Jonaš [@​meeroslav](https://togithub.com/meeroslav )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
- Victor Login [@​batazor](https://togithub.com/batazor )
</details>
<details>
<summary>open-telemetry/opentelemetry-js-contrib (@​opentelemetry/instrumentation-graphql)</summary>
### [`v0.38.0`](efdfc727a4...f81f8a76a8
)
[Compare Source](32204a362d...fcea8ca0c8
)
</details>
---
### 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](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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjcuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-11 03:53:00 +00:00
LongYinan
08fa157ce4
chore: bump up vite-plugin-istanbul version to v6 ( #6054 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite-plugin-istanbul](https://togithub.com/ifaxity/vite-plugin-istanbul ) | [`^5.0.0` -> `^6.0.0`](https://renovatebot.com/diffs/npm/vite-plugin-istanbul/5.0.0/6.0.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite-plugin-istanbul/6.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-plugin-istanbul/6.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-plugin-istanbul/5.0.0/6.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-plugin-istanbul/5.0.0/6.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>ifaxity/vite-plugin-istanbul (vite-plugin-istanbul)</summary>
### [`v6.0.0`](https://togithub.com/iFaxity/vite-plugin-istanbul/releases/tag/v6.0.0 )
[Compare Source](https://togithub.com/ifaxity/vite-plugin-istanbul/compare/v5.0.0...v6.0.0 )
##### Bug Fixes
- add regex for vue SFC to prevent instrumenting style and templates ([#​180](https://togithub.com/ifaxity/vite-plugin-istanbul/issues/180 )) ([c8a7ca7](c8a7ca771e
)), closes [#​96](https://togithub.com/ifaxity/vite-plugin-istanbul/issues/96 ) [#​178](https://togithub.com/ifaxity/vite-plugin-istanbul/issues/178 ) [#​89](https://togithub.com/ifaxity/vite-plugin-istanbul/issues/89 )
- feat!: update to support vite v5 ([#​183](https://togithub.com/ifaxity/vite-plugin-istanbul/issues/183 )) ([614f8bd](614f8bd365
)), closes [#​183](https://togithub.com/ifaxity/vite-plugin-istanbul/issues/183 )
##### BREAKING CHANGES
- updating from espree v9 to v10 deprecates older node versions
- feat!: update to support vite v5
- least supported version changed from v2.9.1 to v4
</details>
---
### 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.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- 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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-11 02:15:20 +00:00
Lye Hongtao
5bebcec2eb
feat: bump blocksuite ( #6015 )
...
## Features
- https://github.com/toeverything/BlockSuite/pull/6379 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6375 @doodlewind
- https://github.com/toeverything/BlockSuite/pull/6370 @donteatfriedrice
## Bugfix
- https://github.com/toeverything/BlockSuite/pull/6380 @donteatfriedrice
- https://github.com/toeverything/BlockSuite/pull/6377 @doouding
- https://github.com/toeverything/BlockSuite/pull/6376 @fourdim
- https://github.com/toeverything/BlockSuite/pull/6374 @regischen
## Misc
- docs: update examples desc
- ci: start publishing 0.13 canary
2024-03-05 07:35:05 +00:00
Chen
ebf7a74387
feat: bump blocksuite ( #6010 )
2024-03-05 14:19:11 +08:00
LongYinan
9a3ae9302e
chore: bump up all non-major dependencies ( #5964 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3 ) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3 )) | [`3.523.0` -> `3.525.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.523.0/3.525.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.525.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.525.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.523.0/3.525.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.523.0/3.525.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@node-rs/jsonwebtoken](https://togithub.com/napi-rs/node-rs ) | [`^0.4.0` -> `^0.5.0`](https://renovatebot.com/diffs/npm/@node-rs%2fjsonwebtoken/0.4.0/0.5.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@node-rs%2fjsonwebtoken/0.5.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@node-rs%2fjsonwebtoken/0.5.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@node-rs%2fjsonwebtoken/0.4.0/0.5.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@node-rs%2fjsonwebtoken/0.4.0/0.5.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@nx/vite](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/vite )) | [`18.0.5` -> `18.0.7`](https://renovatebot.com/diffs/npm/@nx%2fvite/18.0.5/18.0.7 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@nx%2fvite/18.0.7?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@nx%2fvite/18.0.7?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@nx%2fvite/18.0.5/18.0.7?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@nx%2fvite/18.0.5/18.0.7?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/exporter-prometheus](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-exporter-prometheus ) ([source](https://togithub.com/open-telemetry/opentelemetry-js )) | [`^0.48.0` -> `^0.49.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fexporter-prometheus/0.48.0/0.49.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@opentelemetry%2fexporter-prometheus/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@opentelemetry%2fexporter-prometheus/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@opentelemetry%2fexporter-prometheus/0.48.0/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@opentelemetry%2fexporter-prometheus/0.48.0/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/instrumentation](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation ) ([source](https://togithub.com/open-telemetry/opentelemetry-js )) | [`^0.48.0` -> `^0.49.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation/0.48.0/0.49.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@opentelemetry%2finstrumentation/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@opentelemetry%2finstrumentation/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@opentelemetry%2finstrumentation/0.48.0/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@opentelemetry%2finstrumentation/0.48.0/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/instrumentation-http](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-http ) ([source](https://togithub.com/open-telemetry/opentelemetry-js )) | [`^0.48.0` -> `^0.49.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-http/0.48.0/0.49.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@opentelemetry%2finstrumentation-http/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@opentelemetry%2finstrumentation-http/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@opentelemetry%2finstrumentation-http/0.48.0/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@opentelemetry%2finstrumentation-http/0.48.0/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/sdk-node](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-sdk-node ) ([source](https://togithub.com/open-telemetry/opentelemetry-js )) | [`^0.48.0` -> `^0.49.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fsdk-node/0.48.0/0.49.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@opentelemetry%2fsdk-node/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@opentelemetry%2fsdk-node/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@opentelemetry%2fsdk-node/0.48.0/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@opentelemetry%2fsdk-node/0.48.0/0.49.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [jotai-effect](https://togithub.com/jotaijs/jotai-effect ) | [`^0.5.0` -> `^0.6.0`](https://renovatebot.com/diffs/npm/jotai-effect/0.5.0/0.6.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/jotai-effect/0.6.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jotai-effect/0.6.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jotai-effect/0.5.0/0.6.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jotai-effect/0.5.0/0.6.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [yarn](https://togithub.com/yarnpkg/berry ) ([source](https://togithub.com/yarnpkg/berry/tree/HEAD/packages/yarnpkg-cli )) | [`4.1.0` -> `4.1.1`](https://renovatebot.com/diffs/npm/yarn/4.1.0/4.1.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/yarn/4.1.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/yarn/4.1.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/yarn/4.1.0/4.1.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/yarn/4.1.0/4.1.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.525.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35250-2024-02-29 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.523.0...v3.525.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
</details>
<details>
<summary>napi-rs/node-rs (@​node-rs/jsonwebtoken)</summary>
### [`v0.5.1`](https://togithub.com/napi-rs/node-rs/releases/tag/%40node-rs/jsonwebtoken%400.5.1 )
[Compare Source](https://togithub.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@0.5.0...@node-rs/jsonwebtoken@0.5.1 )
#### What's Changed
- chore(deps): lock file maintenance by [@​renovate](https://togithub.com/renovate ) in [https://github.com/napi-rs/node-rs/pull/800 ](https://togithub.com/napi-rs/node-rs/pull/800 )
- fix(jsonwebtoken): handle error in decodeHeader by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/node-rs/pull/801 ](https://togithub.com/napi-rs/node-rs/pull/801 )
**Full Changelog**: https://github.com/napi-rs/node-rs/compare/[@​node-rs/crc32](https://togithub.com/node-rs/crc32)[@​1](https://togithub.com/1).10.0...[@​node-rs/jsonwebtoken](https://togithub.com/node-rs/jsonwebtoken)[@​0](https://togithub.com/0).5.1
### [`v0.5.0`](https://togithub.com/napi-rs/node-rs/releases/tag/%40node-rs/jsonwebtoken%400.5.0 )
[Compare Source](https://togithub.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@0.4.0...@node-rs/jsonwebtoken@0.5.0 )
#### What's Changed
- fix(jsonwebtoken): num typings by [@​tada5hi](https://togithub.com/tada5hi ) in [https://github.com/napi-rs/node-rs/pull/777 ](https://togithub.com/napi-rs/node-rs/pull/777 )
- feat(jsonwebtoken): flatten claims to align with rfc by [@​tada5hi](https://togithub.com/tada5hi ) in [https://github.com/napi-rs/node-rs/pull/780 ](https://togithub.com/napi-rs/node-rs/pull/780 )
- feat(jsonwebtoken): expose decode header utility by [@​tada5hi](https://togithub.com/tada5hi ) in [https://github.com/napi-rs/node-rs/pull/795 ](https://togithub.com/napi-rs/node-rs/pull/795 )
- chore(\*): upgrade NAPI-RS cli and bindings by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/node-rs/pull/797 ](https://togithub.com/napi-rs/node-rs/pull/797 )
- feat(jsonwebtoken): support wasm32-wasi target by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/node-rs/pull/798 ](https://togithub.com/napi-rs/node-rs/pull/798 )
#### New Contributors
- [@​tada5hi](https://togithub.com/tada5hi ) made their first contribution in [https://github.com/napi-rs/node-rs/pull/777 ](https://togithub.com/napi-rs/node-rs/pull/777 )
**Full Changelog**: https://github.com/napi-rs/node-rs/compare/[@​node-rs/argon2](https://togithub.com/node-rs/argon2)[@​1](https://togithub.com/1).7.0...[@​node-rs/jsonwebtoken](https://togithub.com/node-rs/jsonwebtoken)[@​0](https://togithub.com/0).5.0
</details>
<details>
<summary>nrwl/nx (@​nx/vite)</summary>
### [`v18.0.7`](https://togithub.com/nrwl/nx/releases/tag/18.0.7 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.6...18.0.7 )
#### 18.0.7 (2024-03-04)
##### 🩹 Fixes
- **core:** target defaults should represent nx.json in source info ([#​22080](https://togithub.com/nrwl/nx/pull/22080 ))
- **nextjs:** Add spec files when creating a next app ([#​22079](https://togithub.com/nrwl/nx/pull/22079 ))
- **release:** skip lock file update if workspaces are not enabled ([#​22055](https://togithub.com/nrwl/nx/pull/22055 ))
- **remix:** ensure component-testing is exported correctly [#​22091](https://togithub.com/nrwl/nx/issues/22091 ) ([#​22095](https://togithub.com/nrwl/nx/pull/22095 ), [#​22091](https://togithub.com/nrwl/nx/issues/22091 ))
- **storybook:** handle main.js file correctly in storybook plugin ([#​22081](https://togithub.com/nrwl/nx/pull/22081 ))
- **testing:** calculate correct support file path in cypress e2e preset ([#​22096](https://togithub.com/nrwl/nx/pull/22096 ))
##### ❤️ Thank You
- Austin Fahsl [@​fahslaj](https://togithub.com/fahslaj )
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
### [`v18.0.6`](https://togithub.com/nrwl/nx/releases/tag/18.0.6 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.5...18.0.6 )
##### 18.0.6 (2024-02-29)
##### 🩹 Fixes
- **core:** nextjs-standalone generates package scripts consistent with create-next-app ([#​21996](https://togithub.com/nrwl/nx/pull/21996 ))
- **misc:** make sure to add e2e crystal plugin ([#​22041](https://togithub.com/nrwl/nx/pull/22041 ))
- **misc:** fix buildable libs utils calculating dependent projects from task graph ([#​22015](https://togithub.com/nrwl/nx/pull/22015 ))
- **node:** Increase timeout for CI ([#​22003](https://togithub.com/nrwl/nx/pull/22003 ))
- **nuxt:** fix storybook preview config path ([#​22020](https://togithub.com/nrwl/nx/pull/22020 ))
- **nuxt:** Add e2e-ci and serve-static targets ([#​22056](https://togithub.com/nrwl/nx/pull/22056 ))
- **release:** currentVersionResolver git-tag should prefer merged tags ([#​22082](https://togithub.com/nrwl/nx/pull/22082 ))
##### ❤️ Thank You
- Austin Fahsl [@​fahslaj](https://togithub.com/fahslaj )
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
- Katerina Skroumpelou [@​mandarini](https://togithub.com/mandarini )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
</details>
<details>
<summary>open-telemetry/opentelemetry-js (@​opentelemetry/exporter-prometheus)</summary>
### [`v0.49.1`](7be35c7845...3920b158d0
)
[Compare Source](7be35c7845...3920b158d0
)
### [`v0.49.0`](828f2ed730...7be35c7845
)
[Compare Source](828f2ed730...7be35c7845
)
</details>
<details>
<summary>jotaijs/jotai-effect (jotai-effect)</summary>
### [`v0.6.0`](https://togithub.com/jotaijs/jotai-effect/releases/tag/v0.6.0 )
[Compare Source](https://togithub.com/jotaijs/jotai-effect/compare/v0.5.0...v0.6.0 )
#### What's Changed
- rethrow errors thrown during effectFn and cleanup by [@​dmaskasky](https://togithub.com/dmaskasky ) in [https://github.com/jotaijs/jotai-effect/pull/33 ](https://togithub.com/jotaijs/jotai-effect/pull/33 )
**Full Changelog**: https://github.com/jotaijs/jotai-effect/compare/v0.5.0...v0.6.0
</details>
<details>
<summary>yarnpkg/berry (yarn)</summary>
### [`v4.1.1`](52909a5e0d...6b7621f073
)
[Compare Source](52909a5e0d...6b7621f073
)
</details>
---
### 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](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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-03-05 03:46:56 +00:00
Peng Xiao
752c8580ae
fix: remove vite-tsconfig-paths ( #5960 )
...
It will cause storybook from running.
related to https://github.com/aleclarson/vite-tsconfig-paths/issues/132
We are not actually using `vite-tsconfig-paths` now because we rely on package.json's export field to do path mapping.
2024-02-29 07:58:41 +00:00
LongYinan
6f8a4d7bd5
chore: bump up all non-major dependencies ( #5897 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3 ) ([source](https://togithub.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3 )) | [`3.515.0` -> `3.523.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.515.0/3.523.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.523.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.523.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.515.0/3.523.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.515.0/3.523.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.41` -> `3.0.0-alpha.43`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.41/3.0.0-alpha.43 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@napi-rs%2fcli/3.0.0-alpha.43?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@napi-rs%2fcli/3.0.0-alpha.43?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@napi-rs%2fcli/3.0.0-alpha.41/3.0.0-alpha.43?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@napi-rs%2fcli/3.0.0-alpha.41/3.0.0-alpha.43?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
| [@nx/vite](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/vite )) | [`18.0.4` -> `18.0.5`](https://renovatebot.com/diffs/npm/@nx%2fvite/18.0.4/18.0.5 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@nx%2fvite/18.0.5?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@nx%2fvite/18.0.5?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@nx%2fvite/18.0.4/18.0.5?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@nx%2fvite/18.0.4/18.0.5?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.523.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35230-2024-02-27 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.521.0...v3.523.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.521.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35210-2024-02-23 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.515.0...v3.521.0 )
##### Features
- requestHandler ctor param pass-through ([#​5820](https://togithub.com/aws/aws-sdk-js-v3/issues/5820 )) ([9fec71d](9fec71d193
))
</details>
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.43`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.43 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.42...@napi-rs/cli@3.0.0-alpha.43 )
##### What's Changed
- fix(cli): cleanup js binding template by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1984 ](https://togithub.com/napi-rs/napi-rs/pull/1984 )
**Full Changelog**: https://github.com/napi-rs/napi-rs/compare/[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.42...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.43
### [`v3.0.0-alpha.42`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.42 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.41...@napi-rs/cli@3.0.0-alpha.42 )
**Full Changelog**: https://github.com/napi-rs/napi-rs/compare/napi-derive@2.16.0...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.42
##### What's Changed
- chore: fix renovate path and dedupe electron versions by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1974 ](https://togithub.com/napi-rs/napi-rs/pull/1974 )
- refactor(cli): refactor js-binding to support easier bundling. by [@​everett1992](https://togithub.com/everett1992 ) in [https://github.com/napi-rs/napi-rs/pull/1957 ](https://togithub.com/napi-rs/napi-rs/pull/1957 )
##### New Contributors
- [@​everett1992](https://togithub.com/everett1992 ) made their first contribution in [https://github.com/napi-rs/napi-rs/pull/1957 ](https://togithub.com/napi-rs/napi-rs/pull/1957 )
**Full Changelog**: https://github.com/napi-rs/napi-rs/compare/napi@2.15.4...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.42
</details>
<details>
<summary>nrwl/nx (@​nx/vite)</summary>
### [`v18.0.5`](https://togithub.com/nrwl/nx/releases/tag/18.0.5 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.4...18.0.5 )
#### 18.0.5 (2024-02-24)
##### 🩹 Fixes
- **angular:** do not add target defaults for the ng-packagr-lite executor when generating non-buildable library ([#​21935](https://togithub.com/nrwl/nx/pull/21935 ))
- **angular:** ensure generated editor tsconfig in apps only include runtime files ([#​21945](https://togithub.com/nrwl/nx/pull/21945 ))
- **core:** run migrations ordered by their target version ([#​21799](https://togithub.com/nrwl/nx/pull/21799 ))
- **core:** Update NxWelcome connect to cloud ([#​21830](https://togithub.com/nrwl/nx/pull/21830 ))
- **core:** propagate `verbose` flag when running `init` generator dur… ([#​21868](https://togithub.com/nrwl/nx/pull/21868 ))
- **core:** ensure migrate works with yarn PnP ([#​21824](https://togithub.com/nrwl/nx/pull/21824 ))
- **core:** align terminal output padding and remove leading arrow ([#​21809](https://togithub.com/nrwl/nx/pull/21809 ))
- **core:** read all targets from package json when defining target defaults ([#​21719](https://togithub.com/nrwl/nx/pull/21719 ))
- **core:** include nx/nuxt in migrations ([#​21885](https://togithub.com/nrwl/nx/pull/21885 ))
- **core:** do not use the new pty function for older versions of windows ([#​21854](https://togithub.com/nrwl/nx/pull/21854 ))
- **core:** normalize migration target versions when sorting migrations ([#​21967](https://togithub.com/nrwl/nx/pull/21967 ))
- **core:** target defaults application shouldn't include extra scripts ([#​21970](https://togithub.com/nrwl/nx/pull/21970 ))
- **core:** update generated README pages with more useful instructions ([#​21976](https://togithub.com/nrwl/nx/pull/21976 ))
- **devkit:** respect expectComments when parsing json ([#​21584](https://togithub.com/nrwl/nx/pull/21584 ))
- **graph:** fix open project with / in name ([#​21722](https://togithub.com/nrwl/nx/pull/21722 ))
- **js:** nx release-version resolve-version-spec should normalize fetchSpec ([#​21710](https://togithub.com/nrwl/nx/pull/21710 ))
- **js:** swc executor should support inlining on windows ([#​21801](https://togithub.com/nrwl/nx/pull/21801 ))
- **js:** set moduleResolution to Node10 so it is compatible with CommonJS module ([2dac233cf](https://togithub.com/nrwl/nx/commit/2dac233cf ))
- **linter:** fix eslint-plugin migration target version ([#​21966](https://togithub.com/nrwl/nx/pull/21966 ))
- **misc:** logs from rm-default-collection should render properly ([#​21953](https://togithub.com/nrwl/nx/pull/21953 ))
- **misc:** set nx property in root package.json when no replacing script in nx init ([#​21974](https://togithub.com/nrwl/nx/pull/21974 ))
- **nextjs:** Svg should work when svgr is true in next config ([#​21761](https://togithub.com/nrwl/nx/pull/21761 ))
- **nextjs:** Add missing e2e-ci target for cypress ([#​21805](https://togithub.com/nrwl/nx/pull/21805 ))
- **nuxt:** init generator should add [@​nx/vite](https://togithub.com/nx/vite ) to dependencies ([#​21911](https://togithub.com/nrwl/nx/pull/21911 ))
- **nuxt:** turn on autoimport ([#​21894](https://togithub.com/nrwl/nx/pull/21894 ))
- **nuxt:** tsconfig types and output dir ([#​21934](https://togithub.com/nrwl/nx/pull/21934 ))
- **react:** generate correctly when --js is used for module federation host/remote ([#​20119](https://togithub.com/nrwl/nx/pull/20119 ))
- **react:** full support custom secure host for module federation ([#​21777](https://togithub.com/nrwl/nx/pull/21777 ))
- **react:** ensure playwright configuration is using correct port in app gen ([#​21941](https://togithub.com/nrwl/nx/pull/21941 ))
- **react-native:** change gradlew to absolute path ([#​21725](https://togithub.com/nrwl/nx/pull/21725 ))
- **react-native:** add all flag to sync-deps ([#​21821](https://togithub.com/nrwl/nx/pull/21821 ))
- **release:** skip prompt for publish when no version created ([#​21769](https://togithub.com/nrwl/nx/pull/21769 ))
- **release:** use --first-parent to support merged repos ([#​21686](https://togithub.com/nrwl/nx/pull/21686 ))
- **release:** move github release creation to git tasks ([#​21510](https://togithub.com/nrwl/nx/pull/21510 ))
- **remix:** should add remix plugin to nx.json on init correctly ([#​21827](https://togithub.com/nrwl/nx/pull/21827 ))
- **remix:** the output path should respect the remix.config.js in crystal ([#​21842](https://togithub.com/nrwl/nx/pull/21842 ))
- **remix:** adjust remix start script when building ([#​21883](https://togithub.com/nrwl/nx/pull/21883 ))
- **remix:** typo in tsconfig.spec.json update led to invalid tsconfig ([#​21886](https://togithub.com/nrwl/nx/pull/21886 ))
- **repo:** update browser tools to fix ci ([#​21955](https://togithub.com/nrwl/nx/pull/21955 ))
- **testing:** jest should handle root jest.preset.cjs ([#​21746](https://togithub.com/nrwl/nx/pull/21746 ))
- **testing:** fix cypress project targets does not exist ([#​21785](https://togithub.com/nrwl/nx/pull/21785 ))
- **testing:** pin cypress version to avoid issue with verifying cypress ([#​21917](https://togithub.com/nrwl/nx/pull/21917 ))
- **testing:** ensure baseUrl is not passed to playwright cli ([#​21943](https://togithub.com/nrwl/nx/pull/21943 ))
- **testing:** playwright plugin enoent error ([#​21951](https://togithub.com/nrwl/nx/pull/21951 ))
- **testing:** add null checks when reading targets ([#​21952](https://togithub.com/nrwl/nx/pull/21952 ))
- **vite:** normalize vitest cli args in executor ([#​21870](https://togithub.com/nrwl/nx/pull/21870 ))
- **vite:** project conversion generator ([#​21646](https://togithub.com/nrwl/nx/pull/21646 ))
- **vite:** update vitest and use parseCLI ([#​21890](https://togithub.com/nrwl/nx/pull/21890 ))
- **vue:** fixing vue and nuxt welcome templates ([#​21792](https://togithub.com/nrwl/nx/pull/21792 ))
- **vue:** tailwind generator ignoring styleSheet option ([#​21840](https://togithub.com/nrwl/nx/pull/21840 ))
- **webpack:** resolve relative path for assets inputs ([#​21822](https://togithub.com/nrwl/nx/pull/21822 ))
- **webpack:** correctly handle paranthesis in PostCSS in url ([#​21884](https://togithub.com/nrwl/nx/pull/21884 ))
- **webpack:** surface original error when remotes fail to start ([#​21919](https://togithub.com/nrwl/nx/pull/21919 ))
##### ❤️ Thank You
- Austin Fahsl [@​fahslaj](https://togithub.com/fahslaj )
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Dan Roujinsky
- Edouard Bozon [@​edbzn](https://togithub.com/edbzn )
- Emily Xiong [@​xiongemi](https://togithub.com/xiongemi )
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
- Jonathan Cammisuli
- Julian Martin
- Katerina Skroumpelou [@​mandarini](https://togithub.com/mandarini )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- Miroslav Jonaš [@​meeroslav](https://togithub.com/meeroslav )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
- Remco Krams
- Steven Nance [@​llwt](https://togithub.com/llwt )
- Tine Kondo [@​tinesoft](https://togithub.com/tinesoft )
- Vadim Goy
- Viktor Pöntinen
- Zachary DeRose [@​ZackDeRose](https://togithub.com/ZackDeRose )
</details>
---
### 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](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/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-29 06:51:59 +00:00
regischen
d1e6b23e1a
feat: bump blocksuite ( #5953 )
2024-02-29 14:33:50 +08:00