LongYinan
f2dda8cd95
Merge branch 'beta' into stable
2024-03-29 14:37:25 +08:00
JimmFly
c517a71361
fix(core): unexpected response style of shared page ( #6383 )
2024-03-29 14:35:32 +08:00
LongYinan
848ca3a0c4
Merge branch 'canary' into beta
2024-03-29 13:15:39 +08:00
LongYinan
296362ced1
ci: fix build frontend image step
2024-03-29 12:02:23 +08:00
CatsJuice
f1c70d5df0
fix(core): reload user session after signing out ( #6381 )
2024-03-29 03:47:18 +00:00
Brooooooklyn
c078f32a83
chore: bump Rust to 1.77 ( #6316 )
2024-03-29 03:45:59 +00:00
CatsJuice
605a5abee8
fix(core): user info should be updated when session reloaded ( #6382 )
2024-03-29 03:25:13 +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
CatsJuice
35715ab1d8
feat(core): sidebar local workspace enable cloud directly ( #6366 )
...
- Add a new hook `useEnableClould`, remove `<EnableAffineClouldModal />`
- Sidebar local workspace list item support enable AFFiNE Cloud
2024-03-29 02:08:09 +00:00
JimmFly
1a873ecf3c
feat(core): add shortcut for multi select docs ( #6318 )
...
close TOV-701
In All Doc, `Shift + Click` has been added to activate the multiple selection state.
2024-03-29 01:40:23 +00:00
darkskygit
0ce6401a6f
feat: update crawler rules ( #6369 )
2024-03-29 01:33:12 +00:00
CatsJuice
d14552b5af
fix(core): sidebar workspace list can't scroll on mobile ( #6370 )
2024-03-29 01:25:13 +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
JimmFly
88d04e23e9
feat(core): update i18n resources ( #6362 )
...
close TOV-769
<img width="712" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/902a0771-e8df-46e2-8d7c-1f453a7099e6 ">
2024-03-28 10:11:25 +00:00
Jo Kroese
7526dea705
docs: correct typos and improve grammar in README ( #6358 )
2024-03-28 17:14:44 +08:00
fundon
ef354f1643
fix(core): prevent frequent sign-in ( #6339 )
2024-03-28 07:35:32 +00:00
CatsJuice
8ed38d7c0d
fix(component): uppercase avatar letter fallback ( #6354 )
2024-03-28 07:24:11 +00:00
CatsJuice
fbe7a346c6
fix(core): adjust sidebar workspace card syncing tooltip style ( #6356 )
2024-03-28 07:13:27 +00:00
forehalo
f69649c922
ci: separate image build to a standalone workflow ( #6167 )
2024-03-28 04:02:13 +00:00
pengx17
e53744b740
fix: should use fullscreen to control where to place macos window controls ( #6351 )
2024-03-28 03:40:46 +00:00
EYHN
4e7652f108
fix(infra): fix white screen issue ( #6350 )
2024-03-28 02:12:25 +00:00
darkskygit
e24b6e4ddc
docs: update supported version ( #6344 )
2024-03-27 15:35:21 +00:00
EYHN
ba9dad95b4
fix(core): improve performance ( #6345 )
2024-03-27 14:01:54 +00:00
CatsJuice
710edd28db
feat(core): open restore history confirm modal with hook ( #6343 )
2024-03-27 13:30:36 +00:00
CatsJuice
d412635f6b
feat(component): new hook to open confirm modal ( #6342 )
...
new exports from `@affine/component`:
```ts
import { ConfirmModalProvider, useConfirmModal } from "@affine/component"
```
Open confirm modal with hook:
```ts
const Component = () => {
const { openConfirmModal } = useConformModal();
const open = () => {
openConfirmModal({
// props of ConfirmModal
/**
* will show loading state when confirm clicked, and close after onConfirm finished
*/
onConfirm: async () => {
await new Promise((r) => setTimeout(r, 2000));
},
});
}
return <Button onClick={open}>Open</Button>
}
```
2024-03-27 13:30:30 +00:00
LongYinan
bf88a36fac
Merge remote-tracking branch 'origin/beta' into stable
2024-03-27 17:09:47 +08:00
LongYinan
44c6ee6274
Merge remote-tracking branch 'origin/canary' into beta
2024-03-27 17:08:47 +08:00
Brooooooklyn
39facba92e
fix(core): opt out telemetry condition ( #6341 )
2024-03-27 08:37:15 +00:00
LongYinan
913a8fb36d
Merge remote-tracking branch 'origin/canary' into beta
2024-03-27 15:32:45 +08:00
pengx17
d4c7d58b00
fix: use overflow: clip instead of js to prevent scrolling with pgup/pgdown ( #6338 )
2024-03-27 07:07:22 +00:00
LongYinan
8315908490
Merge remote-tracking branch 'origin/canary' into beta
2024-03-27 14:46:56 +08:00
pengx17
5ca17c155a
fix(core): editor pgup/pgdn issues ( #6331 )
...
fix https://github.com/toeverything/AFFiNE/issues/6232
2024-03-27 04:47:32 +00:00
Brooooooklyn
5dcb3d69e5
fix(core): opt out telemetry if it was set to false ( #6335 )
2024-03-27 04:36:09 +00:00
EYHN
30b8b12703
fix(infra): fix sqlite not save data ( #6336 )
...
SQLiteDB will not save subdoc data that does not exist on rootdoc, so we must save rootdoc first, and then save subdoc
2024-03-27 04:25:23 +00:00
CatsJuice
a3cc06f3bb
fix(core): optimize sidebar workspace card and avatar ( #6324 )
...
- adjust avatar size
- unlogged avatar dark-mode
- fix Tooltip console error
- optimize syncing status animation
2024-03-27 03:29:01 +00:00
EYHN
cccf864ed9
fix(core): duplicate window controls in trash ( #6329 )
...
fix https://github.com/toeverything/AFFiNE/issues/6310
2024-03-27 02:37:53 +00:00
forehalo
54c06777a6
fix(server): always set new session cookie ( #6323 )
2024-03-26 09:56:39 +00:00
forehalo
5637676222
fix(server): wrong import path ( #6317 )
2024-03-26 09:26:56 +00:00
EYHN
16063340d0
fix(core): fix meta.xxx is undefined ( #6321 )
2024-03-26 08:53:14 +00:00
EYHN
b6bba523ff
fix(infra): large page list performance ( #6319 )
2024-03-26 07:53:53 +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
LongYinan
126bfe9c6e
Merge remote-tracking branch 'origin/canary' into beta
2024-03-26 14:53:01 +08:00
liuyi
b8e6d7d6cb
chore(server): cache blob list result ( #6297 )
2024-03-26 14:23:47 +08:00
CatsJuice
0731872347
feat(core): refactor sidebar header ( #6251 )
...
- Add user avatar
- Move sign-out/user settings link from workspace-modal to user avatar modal
- Modify the style of workspace list items
- Modify gap of navigation buttons
- Animate Syncing/Offline/...

2024-03-26 06:10:38 +00:00
Brooooooklyn
d8a3cd5ce2
chore: bump oxlint and rules ( #6314 )
2024-03-26 05:58:22 +00:00
liuyi
af2d895e78
chore(server): cache blob list result ( #6297 )
2024-03-26 13:49:24 +08:00
JimmFly
669ca325a1
fix(core): tag color should use palette-line-color ( #6315 )
2024-03-26 04:57:41 +00:00
pengx17
095f8c2359
fix: button should have its font-family inherited ( #6311 )
2024-03-26 03:57:59 +00:00
Brooooooklyn
ffbfdb65a2
fix(core): add env info to tracks ( #6313 )
2024-03-26 03:41:41 +00:00
pengx17
e9bc24bf37
fix(electron): possible issue on openning two main windows ( #6307 )
...
fix https://github.com/toeverything/AFFiNE/issues/6303
fetching `getWindowAdditionalArguments` requires forking a new process & handshake, which could be time consuming
2024-03-26 03:29:37 +00:00
renovate
2662ba763c
chore: bump up express version to v4.19.2 [SECURITY] ( #6308 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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
forehalo
1a1af83375
test(server): auth tests ( #6135 )
2024-03-26 02:24:17 +00:00
pengx17
1c9d899831
fix: runtime issue for electron app ( #6306 )
...
Looks like we need to be careful to share common libraries between electron (nodejs) & web

2024-03-26 02:04:13 +00:00
pengx17
00092c9955
fix(electron): fix electron build ( #6305 )
2024-03-25 15:57:22 +00:00
EYHN
3e547ce4cc
fix(core): hidden modals when workspace fallback ( #6301 )
2024-03-25 13:52:08 +00:00
EYHN
da12a0e48e
fix(core): fix error when switch to local workspace ( #6144 )
2024-03-25 21:35:10 +08:00
CatsJuice
b2f34d17a2
feat(core): adjust app sidebar's style ( #6162 )
2024-03-25 10:25:48 +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
JimmFly
09a27b6c25
feat(core): add remove from collection to collection page list ( #6265 )
...
close AFF-246
2024-03-25 08:31:38 +00:00
JimmFly
03c01a9693
fix(core): edit tag input autofocus ( #6296 )
...
close TOV-724
2024-03-25 08:05:25 +00:00
JimmFly
1ff6af85f5
feat(core): add page group and display properties ( #6228 )
...
close TOV-23
https://github.com/toeverything/AFFiNE/assets/102217452/c05474de-b73c-40ab-9f18-cc43bb9fd828
2024-03-25 07:53:33 +00:00
Brooooooklyn
6467e10690
ci: fix lint oom ( #6295 )
2024-03-25 07:11:49 +00:00
EYHN
a8cd1579f5
feat(infra): livedata effect ( #6281 )
2024-03-25 06:09:45 +00:00
EYHN
f2adbdaba4
style: enable import-x/no-duplicates ( #6279 )
2024-03-25 03:55:33 +00:00
EYHN
7ce2bfbf0b
style: no import infra submodule ( #6278 )
2024-03-25 03:55:29 +00:00
EYHN
b93871f045
feat(electron): define runtimeConfig in esbuild ( #6287 )
2024-03-25 03:55:26 +00:00
EYHN
d59e1389ec
chore(electron): config vitest swc ( #6282 )
2024-03-25 03:55:23 +00:00
EYHN
82cacd09d6
fix(core): fix flaky e2e ( #6293 )
2024-03-25 02:58:52 +00:00
pengx17
578d4c9775
fix(core): image preview flaky ( #6292 )
2024-03-25 02:46:31 +00:00
pengx17
64c011c72f
fix(electron): set referer and origin headers for electron ( #6289 )
2024-03-25 01:23:18 +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 />
[](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
BABA
6a02d0bc96
feat: open about page in setting modal when click about menu ( #6245 )
...
Co-authored-by: EYHN <cneyhn@gmail.com >
2024-03-23 13:27:05 +00:00
Fangdun Tsai
6c9db367e2
chore(core): add oauth connecting state ( #6225 )
2024-03-23 21:18:48 +08:00
BABA
a1532d4df2
chore: fix renderer entry path not found in desktop development ( #6270 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2024-03-23 21:12:23 +08:00
fundon
7e161682f0
fix(core): creating multiple workspaces with consecutive clicks ( #6259 )
...
Closes #6213
2024-03-23 12:29:46 +00:00
pengx17
62a6075675
fix(core): do not ensure properties on read ( #6263 )
2024-03-23 12:15:06 +00:00
JimmFly
532d655ffb
feat(core): add confirm modal for delete tag action ( #6268 )
2024-03-23 12:03:14 +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
622e90f176
chore(core): add telemetry switch ( #6267 )
2024-03-22 10:28:55 +00:00
EYHN
a0b97f948c
fix(core): fix stuttering when change doc title ( #6269 )
2024-03-22 10:06:37 +00:00
Fangdun Tsai
69cb8b0f60
chore(core): disable onborading on the web ( #6222 )
2024-03-22 18:05:36 +08:00
Brooooooklyn
150c22936d
chore(core): add mixpanel track ( #6202 )
2024-03-22 09:24:41 +00:00
Brooooooklyn
10af0ab48d
feat(server): support ai plan ( #6216 )
2024-03-22 08:39:18 +00:00
Brooooooklyn
aecc523663
fix(server): avoid error when other prices added but logic is not released ( #6191 )
2024-03-22 08:39:12 +00:00
EYHN
75355867c7
feat(core): save user habits in right sidebar ( #6262 )
...
Closes #6237
2024-03-22 07:32:59 +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`

2024-03-21 14:29:02 +00:00
forehalo
540e456704
ci: set private key from env ( #6239 )
2024-03-21 10:09:26 +00:00
EYHN
d03c72a0a8
fix(electron): linux crash on exiting presentation mode ( #6253 )
2024-03-21 09:54:48 +00:00
Brooooooklyn
6a0ab54e25
ci: fix isSelfHosted does not take effect ( #6249 )
2024-03-21 08:52:14 +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
pengx17
f4ede22b93
fix(core): change cursor when hovering the area blow editor ( #6226 )
2024-03-21 02:00:37 +00:00
pengx17
8b2b2646bc
fix: move traffic lights based on zoom level ( #6201 )
...
<div class='graphite__hidden'>
<div>🎥 Video uploaded on Graphite:</div>
<a href="https://app.graphite.dev/media/video/T2klNLEk0wxLh4NRDzhk/f75d1f6f-18f4-4dff-8174-67223f5f9807.mp4 ">
<img src="https://app.graphite.dev/api/v1/graphite/video/thumbnail/T2klNLEk0wxLh4NRDzhk/f75d1f6f-18f4-4dff-8174-67223f5f9807.mp4 ">
</a>
</div>
<video src="https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/T2klNLEk0wxLh4NRDzhk/f75d1f6f-18f4-4dff-8174-67223f5f9807.mp4 ">Kapture 2024-03-19 at 18.05.20.mp4</video>
2024-03-21 02:00:35 +00:00
EYHN
e1cfa1071e
chore(core): align sidebar icons ( #6219 )
2024-03-20 17:15:13 +00:00
EYHN
e4e4a54d90
fix(core): resize-handle remains interactive when dragging split-view ( #6217 )
2024-03-20 16:56:17 +00:00
EYHN
08b610bbad
fix(electron): menu item position on Mac when fullscreen ( #6200 )
...
fix https://github.com/toeverything/AFFiNE/issues/6155
2024-03-20 16:45:14 +00:00
EYHN
3edf32b1df
build: add sourceMaps and inlineSourcesContent option to swc ( #6234 )
2024-03-20 16:33:15 +00:00
EYHN
39cde560d1
fix(templates): fix typo in onboarding template ( #6221 )
2024-03-20 16:19:28 +00:00
Brooooooklyn
483f957583
chore: bump up @aws-sdk/client-s3 version to v3.537.0 ( #6210 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
pengx17
a8a1074a8a
feat(electron): add isMaximized flag to html ( #6199 )
...
to make some special ui rules for desktop
2024-03-20 13:20:19 +00:00
pengx17
65ab6c89bf
fix(electron): optimize electron open/close on mac ( #6224 )
...
1. never close main window on mac to allow it to be quickly open
1. make the browser show a bit faster
2. brought up app window when clicking some menu items
2024-03-20 11:02:22 +00:00
liuyi
4f5907766f
fix(server): decode uri component before verify token ( #6231 )
2024-03-20 18:17:11 +08:00
liuyi
06a5b2e5a5
fix(server): wrong google oauth param ( #6227 )
2024-03-20 17:45:22 +08:00
pengx17
7adb89f134
feat(core): open new page on meta-clicking a page link ( #6220 )
2024-03-20 05:38:39 +00:00
EYHN
5623c0967c
feat(electron): enable css text autospace ( #6218 )
...
before

after

2024-03-20 02:47:49 +00:00
Peng Xiao
fce4484a85
fix(core): tag size in docs view ( #6197 )
2024-03-19 08:53:08 +00:00
Peng Xiao
0695544073
fix(core): page info should use sans font (inter) ( #6196 )
2024-03-19 08:53:00 +00:00
JimmFly
9030ca511e
refactor(core): refactor tag to use di ( #6079 )
...
use case
```
const tagService = useService(TagService);
const tags = useLiveData(tagService.tags);
const currentTagLiveData = tagService.tagByTagId(tagId);
const currentTag = useLiveData(currentTagLiveData);
```
2024-03-19 08:39:15 +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 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
liuyi
797e3c5b35
fix(server): do not force sign in password length ( #6188 )
...
hotfix
2024-03-19 10:58:34 +08:00
liuyi
bba1a95f9c
chore: bump base version to 0.14.0 ( #6170 )
2024-03-19 02:34:18 +00:00
DarkSky
da32682afb
fix(server): handle expired lock re-release & external locker injection ( #6145 )
2024-03-19 02:16:47 +00:00
liuyi
4702c1a9ca
fix(server): inject correct locker to request scope mutex ( #6140 )
2024-03-19 02:16:35 +00:00
DarkSky
f18133af82
fix(server): wrap read-modify-write apis with distributed lock ( #6142 )
2024-03-19 02:16:24 +00:00
liuyi
a4cd8d6ca3
chore(server): organize server configs ( #6169 )
2024-03-19 02:05:56 +00:00
liuyi
a721b3887b
fix(server): hotfix auth & doc push ( #6168 )
2024-03-18 16:32:35 +08:00
Peng Xiao
5693d90451
e2e(core): add test for split view ( #6133 )
2024-03-18 07:04:06 +00:00
Peng Xiao
dc8f351051
refactor(component): render react element into lit ( #6124 )
...
See docs in https://insider.affine.pro/share/af3478a2-9c9c-4d16-864d-bffa1eb10eb6/oL1ifjA4rKv7HRn5nYzIF
This PR also enables opening split view by ctrl-click a page link in a doc.
2024-03-18 07:04:02 +00:00
Peng Xiao
e896f19f1a
fix(electron): disable mica for windows for now ( #6165 )
...
Upstream https://github.com/electron/electron/issues/41073
2024-03-18 06:52:40 +00:00
Peng Xiao
386bd033af
fix(electron): add dedicated api for opening external links in the default browser ( #6166 )
2024-03-18 06:41:48 +00:00
Fangdun Tsai
8301d82548
fix(core): sync list titles in sidebar ( #6157 )
2024-03-18 14:39:28 +08: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 />
[](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
liuyi
268ca03f62
fix(server): ensure selfhost admin created after all data migrated ( #6163 )
...
fix #6154
cp to canary
2024-03-18 11:43:12 +08:00
LongYinan
58c81dd1ac
chore: bump up get-stream version to v9 ( #6139 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
liuyi
e94be8968b
fix(server): hotfix ( #6161 )
2024-03-18 10:41:11 +08:00
Fangdun Tsai
636fa503b8
feat: support esc shortcut on input-edit ( #6143 )
2024-03-16 13:13:37 +00:00
Fangdun Tsai
eec24db1a1
fix: use the esc shortcut to exit in create collection dialog ( #6138 )
2024-03-16 19:18:06 +08:00
LongYinan
7ed86a66e8
build(core): add source-map-loader for blocksuite codes ( #6137 )
2024-03-15 09:37:48 +00:00
LongYinan
bc465f9704
Revert "fix(server): wrap read-modify-write apis with distributed lock ( #5979 )"
...
This reverts commit 34f892b05b .
2024-03-15 16:55:48 +08:00
Chen
a24320da68
feat: bump blocksuite ( #6123 )
2024-03-15 16:54:24 +08:00
EYHN
78f7e3a45e
fix(core): catch page load error ( #6134 )
2024-03-15 08:44:36 +00:00
DarkSky
34f892b05b
fix(server): wrap read-modify-write apis with distributed lock ( #5979 )
2024-03-15 13:31:11 +08:00
Chen
fd4e4123f5
fix: note added with template should be edgeless only ( #6122 )
2024-03-15 12:51:03 +08:00
EYHN
9ba47f43bb
fix(core): fix active view undefined ( #6131 )
...
close https://github.com/toeverything/AFFiNE/issues/6127 , #6132
2024-03-15 03:45:41 +00:00
EYHN
12c04a8575
feat(core): allow switch workspace in loading fallback ( #6129 )
2024-03-15 03:45:32 +00:00
EYHN
96c67afc11
fix(core): catch auth error ( #6128 )
2024-03-15 03:45:23 +00:00
Cats Juice
ee75b468e6
fix(core): shared page's present button not working ( #6117 )
2024-03-15 03:32:37 +00:00
Peng Xiao
e35f6dca0e
fix: update docs ( #6094 )
2024-03-15 02:33:55 +00:00
LongYinan
5a0e207a8c
ci: fix canary backend auto release job ( #6121 )
2024-03-15 02:21:57 +00:00
liuyi
533c181640
feat(server): cleanup gateway code ( #6118 )
2024-03-15 02:00:40 +00:00
liuyi
79ffca314d
feat(server): allow prefetch doc stats before sync ( #6115 )
2024-03-14 17:34:33 +00:00
Cats Juice
7fdb1f2d97
feat(core): adjust split view ui ( #6076 )
2024-03-14 06:41:29 +00:00
EYHN
b9fc848824
fix(infra): avoid data loss ( #6111 )
2024-03-14 06:27:49 +00:00
Peng Xiao
d2bad68b74
feat(core): move blocksuite flags to experimental features ( #6113 )
2024-03-14 05:24:47 +00:00
Peng Xiao
dd9a253772
feat(core): add split view to experimental features settings ( #6093 )
2024-03-14 05:13:04 +00:00
Lye Hongtao
05583dbe98
feat: bump blocksuite ( #6112 )
2024-03-14 13:05:52 +08:00
liuyi
c5d8c6cc8c
fix(server): blob api should be public ( #6109 )
2024-03-14 02:36:13 +00:00
regischen
c1f5e848b4
feat: blocksuite bump ( #6104 )
2024-03-13 23:50:10 +08:00
Peng Xiao
e116a82c24
fix(component): an input display issue in confirm dialog ( #6102 )
...
fix the following issue of `input`

2024-03-13 11:40:34 +00:00
DarkSky
282b788258
fix: allow empty mailer password ( #6066 )
...
fix #6046
smtp relay may allow empty password, although this is usually not safe
2024-03-13 10:07:18 +00:00
liuyi
f2ec81b2d0
feat(server): user connected accounts migration ( #6103 )
2024-03-13 09:28:52 +00:00
regischen
fddbb426a6
feat: bump blocksuite ( #6078 )
2024-03-13 17:04:21 +08:00
liuyi
573528be41
fix(server): user can not signup through oauth if ever invited ( #6101 )
2024-03-13 07:50:11 +00:00
EYHN
fd9084ea6a
feat(infra): computed livedata ( #6091 )
2024-03-13 06:26:05 +00:00
EYHN
cacc2d311e
feat(infra): livedata flatten ( #6083 )
2024-03-13 06:06:18 +00:00
Peng Xiao
e8f83a237d
fix(core): vitest on windows ( #6100 )
2024-03-13 04:32:39 +00:00
LongYinan
9e1adfed81
chore: bump up all non-major dependencies ( #6069 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
73801ce864
fix(server): gql schema is outdated ( #6097 )
2024-03-13 04:11:44 +00:00
liuyi
495855cc07
fix(server): server info api should be public ( #6098 )
2024-03-13 03:59:26 +00:00
EYHN
05b79aae89
fix(core): fix tags includes missing error ( #6096 )
...
fix https://toeverything.sentry.io/issues/5059796018/events/0899e77a3f6842088568b4cc42b814d7/
2024-03-13 02:43:28 +00:00
liuyi
d8f9e357d0
ci: proxy /oauth to server ( #6095 )
2024-03-13 02:33:58 +00:00
Peng Xiao
20bce48132
fix: experimental settings sometimes not show ( #6090 )
2024-03-13 02:07:51 +00:00
Peng Xiao
3f27b7e5f7
fix(core): adjust suspense loading for some components ( #6088 )
...
Adjust setting & user info popover suspense to make them a little bit more responsive
2024-03-12 15:18:43 +00:00
Peng Xiao
9f74cb32ea
fix(component): input focus implementation ( #6086 )
2024-03-12 15:07:48 +00:00
Peng Xiao
e333b4d348
fix(core): make sidebar switch transition smooth ( #6085 )
2024-03-12 14:56:45 +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
liuyi
af49e8cc41
ci: only enable jwst codec in canary ( #6081 )
2024-03-12 09:44:39 +00:00
Peng Xiao
4e79d720df
docs(server): update docs for running server locally ( #6080 )
2024-03-12 09:33:52 +00:00
Peng Xiao
1c5279747b
fix(server): migration script running on windows ( #6077 )
2024-03-12 16:19:48 +08:00
regischen
5c1e904335
fix: linked doc jump ( #6074 )
2024-03-12 16:02:56 +08:00
Lye Hongtao
d5386bee41
fix: std might not be ready when onLoad invoked ( #6075 )
2024-03-12 16:02:42 +08:00
Peng Xiao
83e1217f61
fix(server): server startup on windows ( #6071 )
2024-03-12 06:41:42 +00:00
JimmFly
f832ada98c
fix(core): cannot scroll when dragging ( #6070 )
...
close TOV-671
2024-03-12 05:43:47 +00:00
EYHN
eca35ded2f
fix(core): fix page priority load ( #6072 )
...
When refactoring, I planned to put the logic of loading current pages priority in `PageManager.open`, but I forgot, so the current page will not be loaded priority.
But currently `PageManager.open` has been used in many places, but only one priority page can be set, so the logic of setting the priority page is still placed in the detail page.
2024-03-12 05:09:14 +00:00
EYHN
3672366fea
fix(core): fix missing windows controls ( #6067 )
...
fix #6064
2024-03-12 02:43:45 +00:00
JimmFly
33501d5fdc
fix(electron): invalid isLinux function ( #6065 )
2024-03-12 10:17:53 +08:00
Peng Xiao
716f679914
feat(electron): mica styles for windows ( #5802 )
...

2024-03-11 09:41:09 +00:00
JimmFly
b26efa4940
feat(core): add tag operation to tag list ( #5998 )
...
https://github.com/toeverything/AFFiNE/assets/102217452/11745733-0d7b-494b-97fd-33e40a240a02
2024-03-11 08:36:07 +00:00
LongYinan
cb96d7de43
chore: bump up @blocksuite/icons version to v2.1.45 ( #6061 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
EYHN
ba4637a6bd
fix(core): add view error boundary ( #6036 )
2024-03-11 07:09:47 +00:00
Peng Xiao
c93077f643
fix: divider styles issue ( #6058 )
...
Using height: 1 as divider may have some display issues on Chrome. No idea why yet.

2024-03-11 06:04:55 +00:00
Jason
fc9bf9cd8a
chore(component): simplify code ( #6056 )
2024-03-11 14:04:16 +08:00
LongYinan
d81c017224
chore: bump up all non-major dependencies ( #6037 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
c37f15cf97
chore: bump up softprops/action-gh-release action to v2 ( #6051 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [softprops/action-gh-release](https://togithub.com/softprops/action-gh-release ) | action | major | `v1` -> `v2` |
---
### Release Notes
<details>
<summary>softprops/action-gh-release (softprops/action-gh-release)</summary>
### [`v2`](https://togithub.com/softprops/action-gh-release/compare/v1...v2 )
[Compare Source](https://togithub.com/softprops/action-gh-release/compare/v1...v2 )
</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:25:33 +00:00
LongYinan
08fa157ce4
chore: bump up vite-plugin-istanbul version to v6 ( #6054 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
EYHN
5091174da2
fix(core): remove unexpected loading ( #6035 )
2024-03-09 15:01:18 +00:00
EYHN
ae22d6469d
fix(core): fix unit test ( #6040 )
2024-03-09 15:01:16 +00:00
Fangdun Tsai
c99f0249d9
fix(native): needless borrows for generic args ( #6039 )
2024-03-06 14:52:16 +00:00
LongYinan
3aba2d220b
fix: backlinks jump ( #6034 )
...
Fix [AFF-656](https://linear.app/affine-design/issue/AFF-656/back-links-看起来都坏了 )
2024-03-06 11:06:02 +00:00
LongYinan
e1ec90dcc5
ci: add write packages permission to release workflow
2024-03-06 18:25:37 +08:00
LongYinan
665fc69f67
ci: add write permission to release workflow
2024-03-06 18:25:26 +08:00
JimmFly
c7dd6778ac
fix(core): disable doc info and backlinks in readonly mode ( #6033 )
...
close AFF-671
<img width="1422" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/ef80b195-3d67-4751-82d9-12973f331798 ">
2024-03-06 10:07:20 +00:00
LongYinan
e96b86ec71
ci: add write permission to release workflow
2024-03-06 15:01:21 +08:00
EYHN
633a5bab53
fix(core): fix cmdk not show current page ( #6031 )
2024-03-06 06:31:38 +00:00
Fangdun Tsai
5d63ca0bab
fix(core): canvas font loading in desktop ( #6025 )
2024-03-06 13:42:56 +08:00
fourdim
0ff1e8d2f7
fix: breaking function signature on showImportModal onSuceessHandler ( #6011 )
...
This will fix the breaking change introduced in
da781df473
This should be merged after the next BlockSuite bump.
2024-03-05 18:51:39 +00:00
EYHN
dce3b59c52
fix(core): fix falsy e2e ( #6027 )
2024-03-05 15:25:19 +00:00
EYHN
5d8dea084c
fix(core): fix journal missing after refresh ( #6022 )
2024-03-05 11:42:09 +00:00
JimmFly
c1afdb9bd6
fix(core): unexpected line breaks ( #6019 )
2024-03-05 10:02:22 +00:00
EYHN
ceec54b423
fix(docs): fix bug-report template ( #6020 )
2024-03-05 09:52:57 +00:00
EYHN
e9d51f6c96
fix(component): journal header button no responce ( #6021 )
2024-03-05 09:40:19 +00:00
Peng Xiao
65b32156a8
build: do not fail build for a non-fatal error ( #6017 )
2024-03-05 08:27:47 +00:00
EYHN
7c55472b78
docs: update bug-report.yml ( #6018 )
2024-03-05 16:27:14 +08:00
Peng Xiao
55ecd92722
fix(electron): windows distribution name ( #6014 )
2024-03-05 07:53:30 +00:00
Peng Xiao
63e82cca78
build: remove incorrect project dep ( #6016 )
2024-03-05 07:44:13 +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
EYHN
7c76c25a9c
refactor(core): new back&forward button base on workbench ( #6012 )
...
# feature:
## In Browser:
- hidden back&forward button in sidebar.
- back and forward is equal with `window.history.back()` `window.history.forward()`
## In Desktop:
- Back and forward can be controlled through the sidebar, cmdk, and shortcut keys.
- back and forward act on the currently **active** view.
- buttons change disable&enable style based on current active view history
# Refactor:
Move app-sidebar and app-container from @affine/component to @affine/core
2024-03-05 07:01:24 +00:00
Lye Hongtao
b06aeb22dd
fix: view in edgeless button of surface block ( #6013 )
...
Co-authored-by: donteatfriedrice <huisheng.chen7788@outlook.com >
Co-authored-by: Chen <99816898+donteatfriedrice@users.noreply.github.com >
2024-03-05 14:35:53 +08:00
Chen
ebf7a74387
feat: bump blocksuite ( #6010 )
2024-03-05 14:19:11 +08:00
LongYinan
43813d7f86
build(deps): bump mio from 0.8.9 to 0.8.11 ( #6009 )
...
Bumps [mio](https://github.com/tokio-rs/mio ) from 0.8.9 to 0.8.11.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md ">mio's changelog</a>.</em></p>
<blockquote>
<h1>0.8.11</h1>
<ul>
<li>Fix receiving IOCP events after deregistering a Windows named pipe
(<a href="https://redirect.github.com/tokio-rs/mio/pull/1760 ">tokio-rs/mio#1760</a>, backport pr:
<a href="https://redirect.github.com/tokio-rs/mio/pull/1761 ">tokio-rs/mio#1761</a>).</li>
</ul>
<h1>0.8.10</h1>
<h2>Added</h2>
<ul>
<li>Solaris support
(<a href="https://redirect.github.com/tokio-rs/mio/pull/1724 ">tokio-rs/mio#1724</a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="0328bdef90 "><code>0328bde</code></a> Release v0.8.11</li>
<li><a href="7084498512 "><code>7084498</code></a> Fix warnings</li>
<li><a href="90d4fe00df "><code>90d4fe0</code></a> named-pipes: fix receiving IOCP events after deregister</li>
<li><a href="c710a307f8 "><code>c710a30</code></a> Add v0.8.x to the CI</li>
<li><a href="c29e21c244 "><code>c29e21c</code></a> Release v0.8.10</li>
<li><a href="f6a20da1c8 "><code>f6a20da</code></a> Add Solaris operating system support (<a href="https://redirect.github.com/tokio-rs/mio/issues/1724 ">#1724</a>)</li>
<li>See full diff in <a href="https://github.com/tokio-rs/mio/compare/v0.8.9...v0.8.11 ">compare view</a></li>
</ul>
</details>
<br />
[](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-05 04:02:36 +00:00
LongYinan
9a3ae9302e
chore: bump up all non-major dependencies ( #5964 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
Cats Juice
358e1e99c5
feat(core): set journal's really created time ( #5968 )
...
closes #5958 ;
This makes the creation date of the journal correspond to the date, and the creation time is the real creation time.
2024-03-05 03:37:23 +00:00
Peng Xiao
3fcbfe4d30
fix(electron): electron updater issues ( #6005 )
...
- generate-yml.js does not filter files correctly
- add version to generated bundles
- change `.AppImage` to `.appimage`. See https://github.com/electron-userland/electron-builder/blob/master/packages/electron-updater/src/providers/Provider.ts#L88
2024-03-05 03:27:52 +00:00
EYHN
a9be19ce6c
fix(core): fix style break when scroll to block ( #6001 )
2024-03-04 11:43:10 +00:00
EYHN
d935cf9d4d
fix(core): dont break workspace when page load failed ( #5988 )
2024-03-04 11:32:56 +00:00
tzyoo
ee54e00a03
fix(core): upgrade dialog close button layout level ( #6004 )
2024-03-04 11:30:25 +00:00
Cats Juice
2275eee5b2
feat(core): resize and reorder split-view ( #5994 )
2024-03-04 11:19:39 +00:00
Peng Xiao
7b31363c51
fix(electron): do not open external links in the browser for internal links in electron ( #5997 )
2024-03-04 09:39:03 +00:00
EYHN
c599715963
feat(core): split right sidebar ( #5971 )
...
https://github.com/toeverything/AFFiNE/assets/13579374/c846c069-aa32-445d-b59b-b773a9b05ced
Now each view has a general container, the yellow area is the general container part, and the green part is the routing specific part.

2024-03-04 06:42:12 +00:00
Peng Xiao
e2a31ea1fc
fix(core): some ui style issues ( #5995 )
...
Increase page info toggle click area:

fix history modal page height
2024-03-04 03:57:45 +00:00
JimmFly
ffda9a0567
feat(core): separate runtimeConfig for e2e tests and deployment ( #5976 )
...
Prior to modification, it will function for both `deploy` and `e2e-test`. Consequently, `allowLocalWorkspace` is also set to `true` in the production environment.
https://github.com/toeverything/AFFiNE/actions/runs/8093473180/job/22116199541#step:5:120
2024-03-03 12:00:11 +00:00
Peng Xiao
a1ea19fcb7
fix: optimize history animation ( #5973 )
...
- adjust timing
- make sure card do not show the bottom border on transitioning
<div class='graphite__hidden'>
<div>🎥 Video uploaded on Graphite:</div>
<a href="https://app.graphite.dev/media/video/T2klNLEk0wxLh4NRDzhk/7a225ec1-eb33-45ab-bf27-646bb2519a83.mp4 ">
<img src="https://app.graphite.dev/api/v1/graphite/video/thumbnail/T2klNLEk0wxLh4NRDzhk/7a225ec1-eb33-45ab-bf27-646bb2519a83.mp4 ">
</a>
</div>
<video src="https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/T2klNLEk0wxLh4NRDzhk/7a225ec1-eb33-45ab-bf27-646bb2519a83.mp4 ">Kapture 2024-03-01 at 10.56.09.mp4</video>
2024-03-01 06:08:08 +00:00
EYHN
de939bb6f6
fix(core): fix page mode scroll bar ( #5955 )
2024-03-01 04:46:15 +00:00
JimmFly
ff7e7f237f
fix(core): update src in video tag to correct URL ( #5974 )
...
In app.affine.pro the video is not displayed correctly.
<img width="1026" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/8e9d9bb2-f973-433e-88c9-bedfe0f55935 ">
2024-03-01 04:36:37 +00:00
EYHN
a231884d9e
fix(storybook): fix storybook test ( #5970 )
2024-03-01 02:30:04 +00:00
Peng Xiao
d4e78dd3d0
feat: add animation for history preview ( #5966 )
...
<div class='graphite__hidden'>
<div>🎥 Video uploaded on Graphite:</div>
<a href="https://app.graphite.dev/media/video/T2klNLEk0wxLh4NRDzhk/5ce45d13-1117-4853-a066-e8ab1446eb4f.mp4 ">
<img src="https://app.graphite.dev/api/v1/graphite/video/thumbnail/T2klNLEk0wxLh4NRDzhk/5ce45d13-1117-4853-a066-e8ab1446eb4f.mp4 ">
</a>
</div>
<video src="https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/T2klNLEk0wxLh4NRDzhk/5ce45d13-1117-4853-a066-e8ab1446eb4f.mp4 ">Kapture 2024-02-29 at 18.54.15.mp4</video>
2024-02-29 14:08:21 +00:00
EYHN
78ce30db69
fix(core): fix editor sidebar ( #5965 )
2024-02-29 13:59:20 +00:00
Cats Juice
aaf048fcb8
chore(core): update journal's daily count label ( #5967 )
...
[tov-568](https://linear.app/affine-design/issue/TOV-568/journal-聚合的部分的名称需要修改一下 )
2024-02-29 13:50:09 +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 )
...
[](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>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
EYHN
fa534869e1
feat(core): new onboarding template ( #5951 )
2024-02-29 06:02:32 +00:00
LongYinan
931c29fd31
chore: bump up commitlint monorepo to v19 (major) ( #5928 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@commitlint/config-conventional](https://commitlint.js.org/ ) ([source](https://togithub.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional )) | [`^18.6.2` -> `^19.0.0`](https://renovatebot.com/diffs/npm/@commitlint%2fconfig-conventional/18.6.2/19.0.3 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [commitlint](https://commitlint.js.org/ ) ([source](https://togithub.com/conventional-changelog/commitlint/tree/HEAD/@alias/commitlint )) | [`^18.6.1` -> `^19.0.0`](https://renovatebot.com/diffs/npm/commitlint/18.6.1/19.0.3 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>conventional-changelog/commitlint (@​commitlint/config-conventional)</summary>
### [`v19.0.3`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/config-conventional/CHANGELOG.md#1903-2024-02-28 )
[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.0.0...v19.0.3 )
**Note:** Version bump only for package [@​commitlint/config-conventional](https://togithub.com/commitlint/config-conventional )
### [`v19.0.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/config-conventional/CHANGELOG.md#1900-2024-02-27 )
[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.6.2...v19.0.0 )
- feat!: migrate to pure ESM ([#​3850](https://togithub.com/conventional-changelog/commitlint/issues/3850 )) ([3423735](342373559b )), closes [#​3850](https://togithub.com/conventional-changelog/commitlint/issues/3850 )
##### Reverts
- Revert "chore!: minimum node version v20" ([2816783](2816783d00 ))
##### BREAKING CHANGES
- migrate to pure ESM
- feat: migrate to pure ESM
- chore: update snapshot
- fix: load `parserPreset` with another `await`
- test: migrate to vitest
- test: remove no replacement `--runInBand` test-ci script
- chore: fix code reviews
- refactor(load): rewrite resolve logic
- fix(config-nx-scopes): fix syntax error
- feat(resolve-extends): add resolveFrom and loadParserPreset
- feat(load): use resolveFrom and loadParserPreset from resolve-extends
- test: include only @​commitlint/\* packages src in coverage
- test: explicit import vitest utilities
- test: remove [@​jest/globals](https://togithub.com/jest/globals ) from dependencies
- fix(resolve-extends): `resolveFrom` output should be platform aware
- test: restore NO_COLOR to test script
- chore: fix linting issues
- fix: should use fileURLToPath instead of pathname for Windows compatibility
- Apply suggestions from code review
- fix: should reuse `cli` instead call `yargs()`
- feat(cli): set terminalWidth as wrap to avoid work break on help
- Update .eslintrc.cjs
- feat: migrate [@​commitlint/config-conventional](https://togithub.com/commitlint/config-conventional ) to pure ESM
#### [18.6.2](https://togithub.com/conventional-changelog/commitlint/compare/v18.6.1...v18.6.2 ) (2024-02-14)
##### Bug Fixes
- **config-conventional:** use default export ([#​3911](https://togithub.com/conventional-changelog/commitlint/issues/3911 )) ([bc48408](bc4840832f ))
#### [18.6.1](https://togithub.com/conventional-changelog/commitlint/compare/v18.6.0...v18.6.1 ) (2024-02-13)
**Note:** Version bump only for package [@​commitlint/config-conventional](https://togithub.com/commitlint/config-conventional )
</details>
<details>
<summary>conventional-changelog/commitlint (commitlint)</summary>
### [`v19.0.3`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​alias/commitlint/CHANGELOG.md#1903-2024-02-28 )
[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.0.2...v19.0.3 )
**Note:** Version bump only for package commitlint
### [`v19.0.2`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​alias/commitlint/CHANGELOG.md#1902-2024-02-28 )
[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.0.1...v19.0.2 )
**Note:** Version bump only for package commitlint
### [`v19.0.1`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​alias/commitlint/CHANGELOG.md#1901-2024-02-27 )
[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.0.0...v19.0.1 )
**Note:** Version bump only for package commitlint
### [`v19.0.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​alias/commitlint/CHANGELOG.md#1900-2024-02-27 )
[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.6.1...v19.0.0 )
- feat!: migrate to pure ESM ([#​3850](https://togithub.com/conventional-changelog/commitlint/issues/3850 )) ([3423735](342373559b )), closes [#​3850](https://togithub.com/conventional-changelog/commitlint/issues/3850 )
##### Reverts
- Revert "chore!: minimum node version v20" ([2816783](2816783d00 ))
##### BREAKING CHANGES
- migrate to pure ESM
- feat: migrate to pure ESM
- chore: update snapshot
- fix: load `parserPreset` with another `await`
- test: migrate to vitest
- test: remove no replacement `--runInBand` test-ci script
- chore: fix code reviews
- refactor(load): rewrite resolve logic
- fix(config-nx-scopes): fix syntax error
- feat(resolve-extends): add resolveFrom and loadParserPreset
- feat(load): use resolveFrom and loadParserPreset from resolve-extends
- test: include only @​commitlint/\* packages src in coverage
- test: explicit import vitest utilities
- test: remove [@​jest/globals](https://togithub.com/jest/globals ) from dependencies
- fix(resolve-extends): `resolveFrom` output should be platform aware
- test: restore NO_COLOR to test script
- chore: fix linting issues
- fix: should use fileURLToPath instead of pathname for Windows compatibility
- Apply suggestions from code review
- fix: should reuse `cli` instead call `yargs()`
- feat(cli): set terminalWidth as wrap to avoid work break on help
- Update .eslintrc.cjs
- feat: migrate [@​commitlint/config-conventional](https://togithub.com/commitlint/config-conventional ) to pure ESM
#### [18.6.1](https://togithub.com/conventional-changelog/commitlint/compare/v18.6.0...v18.6.1 ) (2024-02-13)
**Note:** Version bump only for package commitlint
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-29 03:44:13 +00:00
LongYinan
29fc4d141f
chore: bump up azure/setup-helm action to v4 ( #5950 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [azure/setup-helm](https://togithub.com/azure/setup-helm ) | action | major | `v3` -> `v4` |
---
### Release Notes
<details>
<summary>azure/setup-helm (azure/setup-helm)</summary>
### [`v4`](https://togithub.com/Azure/setup-helm/releases/tag/v4 )
[Compare Source](https://togithub.com/azure/setup-helm/compare/v3...v4 )
Latest v4 release
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-29 03:34:02 +00:00
DarkSky
3432f355b0
feat: backend module awareness & optional request ( #5909 )
2024-02-28 08:29:37 +00:00
Peng Xiao
35454c3bfc
fix(core): polyfill resize-observer for development to avoid error overlay ( #5943 )
...
Brought a temporary solution from https://github.com/petyosi/react-virtuoso/issues/875#issuecomment-1962897033
2024-02-28 08:18:33 +00:00
DarkSky
82f21ac60b
feat: udpate security policy docs ( #5927 )
2024-02-28 08:07:49 +00:00
wumo
d7ff7a3d95
docs: update contributed tutorial documentation ( #5939 )
2024-02-28 06:31:28 +00:00
liuyi
a38f7ee252
fix(server): sender passed to nextauth is never used ( #5938 )
2024-02-28 05:44:25 +00:00
Peng Xiao
27f2209e87
fix(core): date formatter timezone issue ( #5936 )
...
date seems not hornoring the locale browser's locale when parsing date string like "2024-02-28".
fixed by using dayjs instead.
Fix incorrect journal title issue
2024-02-28 04:27:32 +00:00
LongYinan
9e09166452
build: fix selfhost config ( #5930 )
2024-02-28 04:17:29 +00:00
Peng Xiao
a0364dd4ea
fix(core): minor page info style issues ( #5935 )
2024-02-28 03:45:51 +00:00
Peng Xiao
148807879b
refactor(component): use react-transition-state to simplify exit animation ( #5923 )
...
## **User description**
use react-transition-state to simplify exit animation
___
## **Type**
enhancement
___
## **Description**
- Integrated `react-transition-state` for managing animations in `ResizePanel` and `CMDKModal` components, simplifying the code and improving maintainability.
- Introduced a shared animation timeout variable to standardize animation durations across components.
- Added `react-transition-state` to dependencies to enable the new animation handling.
___
## **Changes walkthrough**
<table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Enhancement</strong></td><td><table>
<tr>
<td>
<details>
<summary><strong>resize-panel.tsx</strong><dd><code>Integrate `react-transition-state` for Resize Panel Animations</code></dd></summary>
<hr>
packages/frontend/component/src/components/resize-panel/resize-panel.tsx
<li>Introduced <code>useTransition</code> hook from <code>react-transition-state</code> for managing <br>animations.<br> <li> Added a constant for animation timeout and applied it to the <br>transition.<br> <li> Utilized the transition state to toggle the open state of the resize <br>panel.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5923/files#diff-a4d6e633862f63f97c167ff41ba62aff8aebf3e3b2f6e7ce13d5a0e22e8ff287">+12/-0</a> </td>
</tr>
<tr>
<td>
<details>
<summary><strong>modal.css.ts</strong><dd><code>Use Variable for Animation Timeout in Modal CSS</code> </dd></summary>
<hr>
packages/frontend/core/src/components/pure/cmdk/modal.css.ts
<li>Created a variable for animation timeout.<br> <li> Updated animation durations to use the new timeout variable.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5923/files#diff-ba8935611b9c1695153d92d08ecb0f7dac73a6197f54ccda5a6e791902cd651d">+6/-3</a> </td>
</tr>
<tr>
<td>
<details>
<summary><strong>modal.tsx</strong><dd><code>Simplify CMDK Modal Animation with `react-transition-state`</code></dd></summary>
<hr>
packages/frontend/core/src/components/pure/cmdk/modal.tsx
<li>Replaced custom animation state management with <code>useTransition</code> hook.<br> <li> Removed old animation state logic and simplified the component.<br> <li> Added animation timeout variable and applied it to the transition.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5923/files#diff-ab3fe66c9b1d3a691fafd1aebc9988e840fedfcd09b5b89570838a5a2a9469c9">+13/-33</a> </td>
</tr>
</table></td></tr><tr><td><strong>Dependencies</strong></td><td><table>
<tr>
<td>
<details>
<summary><strong>package.json</strong><dd><code>Add `react-transition-state` Dependency</code> </dd></summary>
<hr>
packages/frontend/core/package.json
- Added `react-transition-state` as a dependency.
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5923/files#diff-23e0e5dc0ceb004a0a5d3d13e7d00545de7487535ca0e5eab4c5047f1e24eff0">+1/-0</a> </td>
</tr>
</table></td></tr></tr></tbody></table>
___
> ✨ **PR-Agent usage**:
>Comment `/help` on the PR to get a list of all available PR-Agent tools and their descriptions
2024-02-27 14:55:33 +00:00
LongYinan
c724b3fece
build(electron): fix dmg maker ( #5922 )
...
## **Type**
enhancement
___
## **Description**
- Introduced a custom DMG packaging solution `@affine/appdmg-patch` for Electron applications.
- Implemented a new TypeScript class `MakerDmg` to handle the custom packaging logic, including support for custom backgrounds, icons, and app positioning within the DMG.
- Updated Electron Forge configuration to use the new `@affine/appdmg-patch` package instead of `@electron-forge/maker-dmg`.
- Adjusted package dependencies in `packages/frontend/electron/package.json`, adding `@affine/appdmg-patch` and removing `@electron-forge/maker-dmg`.
___
## **Changes walkthrough**
<table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Enhancement
</strong></td><td><table>
<tr>
<td>
<details>
<summary><strong>index.ts</strong><dd><code>Implement Custom DMG Packaging Logic</code> </dd></summary>
<hr>
tools/appdmg-patch/index.ts
<li>Introduced a new class <code>MakerDmg</code> extending <code>MakerBase</code> with support for <br>custom DMG packaging.<br> <li> Implemented custom DMG packaging logic including background, icon, and <br>app positioning.<br> <li> Added support for custom <code>contents</code> configuration to define the DMG <br>layout.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5922/files#diff-96a537c04a2a740dca542688b3e6a65c67e6cf339b146bf0a9c49008ad58ea77">+80/-0</a> </td>
</tr>
</table></td></tr><tr><td><strong>Configuration changes
</strong></td><td><table>
<tr>
<td>
<details>
<summary><strong>forge.config.mjs</strong><dd><code>Update Electron Forge Configuration for Custom DMG Packaging</code></dd></summary>
<hr>
packages/frontend/electron/forge.config.mjs
<li>Replaced <code>@electron-forge/maker-dmg</code> with <code>@affine/appdmg-patch</code> in the <br>makers configuration.<br> <li> Adjusted DMG icon size and background configuration.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5922/files#diff-bd3343a702deabb8f5f6f77e34fbc215615538875f59b68d82612c0f5ed532a3">+2/-3</a> </td>
</tr>
<tr>
<td>
<details>
<summary><strong>package.json</strong><dd><code>Introduce Package Configuration for Custom DMG Packaging</code> </dd></summary>
<hr>
tools/appdmg-patch/package.json
<li>Created a new package <code>@affine/appdmg-patch</code> with necessary dependencies <br>for custom DMG packaging.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5922/files#diff-395b189951512e67d55b0abc55a167f014f239f608ec5b180f9c7d48e1ea9e8b">+16/-0</a> </td>
</tr>
</table></td></tr><tr><td><strong>Dependencies
</strong></td><td><table>
<tr>
<td>
<details>
<summary><strong>package.json</strong><dd><code>Update Package Dependencies for Electron Frontend</code> </dd></summary>
<hr>
packages/frontend/electron/package.json
<li>Added <code>@affine/appdmg-patch</code> to <code>devDependencies</code>.<br> <li> Removed <code>@electron-forge/maker-dmg</code> from <code>devDependencies</code>.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5922/files#diff-37323e9da5e4b1606abb6eb8e5ff1516ae5fce925bceaafeeade61bd80c0b62d">+1/-1</a> </td>
</tr>
</table></td></tr></tr></tbody></table>
___
> ✨ **PR-Agent usage**:
>Comment `/help` on the PR to get a list of all available PR-Agent tools and their descriptions
2024-02-27 14:41:39 +00:00
LongYinan
571b20d082
chore: bump up @commitlint/cli version to v19 ( #5926 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@commitlint/cli](https://commitlint.js.org/ ) ([source](https://togithub.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli )) | [`^18.6.1` -> `^19.0.0`](https://renovatebot.com/diffs/npm/@commitlint%2fcli/18.6.1/19.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>conventional-changelog/commitlint (@​commitlint/cli)</summary>
### [`v19.0.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/cli/CHANGELOG.md#1900-2024-02-27 )
[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.6.1...f1ff12159d627ee63bf8982ab02e6cca8f10b09f )
- feat!: migrate to pure ESM ([#​3850](https://togithub.com/conventional-changelog/commitlint/issues/3850 )) ([3423735](342373559b )), closes [#​3850](https://togithub.com/conventional-changelog/commitlint/issues/3850 )
##### Reverts
- Revert "chore!: minimum node version v20" ([2816783](2816783d00 ))
##### BREAKING CHANGES
- migrate to pure ESM
- feat: migrate to pure ESM
- chore: update snapshot
- fix: load `parserPreset` with another `await`
- test: migrate to vitest
- test: remove no replacement `--runInBand` test-ci script
- chore: fix code reviews
- refactor(load): rewrite resolve logic
- fix(config-nx-scopes): fix syntax error
- feat(resolve-extends): add resolveFrom and loadParserPreset
- feat(load): use resolveFrom and loadParserPreset from resolve-extends
- test: include only @​commitlint/\* packages src in coverage
- test: explicit import vitest utilities
- test: remove [@​jest/globals](https://togithub.com/jest/globals ) from dependencies
- fix(resolve-extends): `resolveFrom` output should be platform aware
- test: restore NO_COLOR to test script
- chore: fix linting issues
- fix: should use fileURLToPath instead of pathname for Windows compatibility
- Apply suggestions from code review
- fix: should reuse `cli` instead call `yargs()`
- feat(cli): set terminalWidth as wrap to avoid work break on help
- Update .eslintrc.cjs
- feat: migrate [@​commitlint/config-conventional](https://togithub.com/commitlint/config-conventional ) to pure ESM
#### [18.6.1](https://togithub.com/conventional-changelog/commitlint/compare/v18.6.0...v18.6.1 ) (2024-02-13)
**Note:** Version bump only for package [@​commitlint/cli](https://togithub.com/commitlint/cli )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxMi4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-27 13:09:18 +00:00
liuyi
540d079308
ci: fix selfhost ( #5920 )
...
## **Type**
enhancement
___
## **Description**
- Introduced a new ESM module resolution setup using `ts-node` to enhance the development and deployment process.
- Implemented a dynamic loader script registration mechanism to facilitate ESM module loading.
- Simplified the predeploy script execution by refining environment variable handling and stdout configuration.
- Updated `package.json` to reflect changes in script commands for better ESM support and added necessary dependencies for `ts-node` and `typescript`.
___
## **Changes walkthrough**
<table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Enhancement</strong></td><td><table>
<tr>
<td>
<details>
<summary><strong>loader.js</strong><dd><code>Introduce ESM Module Resolution via ts-node</code> </dd></summary>
<hr>
packages/backend/server/scripts/loader.js
<li>Introduced <code>ts-node</code> configuration for ESM module resolution.<br> <li> Exported a <code>resolve</code> function for module resolution.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5920/files#diff-9ed793897a493633028d510db0742ff38d2d86471c54b17513d4354c51597ef8">+11/-0</a> </td>
</tr>
<tr>
<td>
<details>
<summary><strong>register.js</strong><dd><code>Implement Dynamic Loader Script Registration</code> </dd></summary>
<hr>
packages/backend/server/scripts/register.js
<li>Implemented dynamic registration of the loader script.<br> <li> Utilized <code>node:module</code> and <code>node:url</code> for script registration.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5920/files#diff-64831012a09f2bc4bc5a611ddb8e0871b0e83588de6c5d4f2f5cb1dae8fff244">+4/-0</a> </td>
</tr>
<tr>
<td>
<details>
<summary><strong>self-host-predeploy.js</strong><dd><code>Simplify Predeploy Script Execution</code> </dd></summary>
<hr>
packages/backend/server/scripts/self-host-predeploy.js
<li>Simplified environment variable passing to <code>execSync</code>.<br> <li> Changed stdout handling to inherit from the parent process.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5920/files#diff-bd7b0be14c198018c21dadda6945a779c57d13e4c8584ee62da4baa99d370664">+3/-5</a> </td>
</tr>
<tr>
<td>
<details>
<summary><strong>package.json</strong><dd><code>Update Scripts and Dependencies for ESM Support</code> </dd></summary>
<hr>
packages/backend/server/package.json
<li>Updated script commands for ESM compatibility.<br> <li> Added <code>ts-node</code> and <code>typescript</code> dependencies.<br> <li> Removed redundant <code>--es-module-specifier-resolution=node</code> flags.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5920/files#diff-a6530c6fe539aaa49ff0a7a80bc4362c1d95c419fdd19125415dcc869b31a443">+6/-6</a> </td>
</tr>
</table></td></tr></tr></tbody></table>
___
> ✨ **PR-Agent usage**:
>Comment `/help` on the PR to get a list of all available PR-Agent tools and their descriptions
2024-02-27 07:22:21 +00:00
Peng Xiao
39d177c507
build: codesigning dmg ( #5921 )
...
fix https://github.com/toeverything/AFFiNE/issues/5898
2024-02-27 06:35:46 +00:00
EYHN
606397e319
feat(core): workbench system ( #5837 )
2024-02-27 04:14:07 +00:00
EYHN
5cd488fe1d
refactor(core): remove collection atom ( #5832 )
2024-02-27 03:50:56 +00:00
EYHN
ad9b0303c4
refactor(core): refactor atom to use di ( #5831 )
...
To support multiple instances, this PR removes some atoms and implements them using the new DI system.
removed atom
- `pageSettingsAtom`
- `currentPageIdAtom`
- `currentModeAtom`
2024-02-27 03:50:53 +00:00
EYHN
0dabb08217
chore: create default user for devcontainer ( #5917 )
...
## **Type**
enhancement
___
## **Description**
- Added a command to `.devcontainer/build.sh` to create a default user (`affine`) in the database for development purposes.
- Introduced error handling in `.devcontainer/setup-user.sh` to ensure the script stops on the first error.
- Modified the git fetch command in `.devcontainer/setup-user.sh` to fetch the `canary` branch from `origin` with a depth of 1, optimizing the setup process.
___
## **Changes walkthrough**
<table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Enhancement
</strong></td><td><table>
<tr>
<td>
<details>
<summary><strong>build.sh</strong><dd><code>Add Default User Creation to Dev Container Build Script</code> </dd></summary>
<hr>
.devcontainer/build.sh
<li>Added command to create a default user with username and password <br>'affine'.<br> <li> Ensured database push command is followed by a newline.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5917/files#diff-165b66803397b501866b23a0532418e9ad3eb2ab642274f9679383c76d18136f">+4/-1</a> </td>
</tr>
<tr>
<td>
<details>
<summary><strong>setup-user.sh</strong><dd><code>Enhance User Setup Script with Error Handling and Specific Git Fetch</code></dd></summary>
<hr>
.devcontainer/setup-user.sh
<li>Introduced error handling with 'set -e' to stop on first error.<br> <li> Modified 'git fetch' to specifically fetch 'canary' branch from <br>'origin' with depth of 1.<br>
</details>
</td>
<td><a href="https:/toeverything/AFFiNE/pull/5917/files#diff-8c5e76719e2ff0a3bf2b59d108dc9cf88bdae00c317728454cfa5108f2fc76af">+3/-1</a> </td>
</tr>
</table></td></tr></tr></tbody></table>
___
> ✨ **PR-Agent usage**:
>Comment `/help` on the PR to get a list of all available PR-Agent tools and their descriptions
2024-02-27 03:32:03 +00:00
Peng Xiao
2295685590
fix: page info styles ( #5910 )
...
fix inconsistent styles compared to the one defined in figma
fix https://github.com/toeverything/AFFiNE/issues/5904
fix https://github.com/toeverything/AFFiNE/issues/5903
2024-02-26 14:11:24 +00:00
EYHN
6ccc4f1501
chore: start dev server on devcontainer ( #5914 )
2024-02-26 13:47:06 +00:00
EYHN
ee4918b3b8
chore: update devcontainer build.sh ( #5912 )
2024-02-26 13:47:00 +00:00
Hwang
8e5ab2bfbf
docs(docs): update readmd.md ( #5911 )
...
Co-authored-by: EYHN <cneyhn@gmail.com >
2024-02-26 10:57:11 +00:00
HeJiachen-PM
d602cbb53c
ci: update compose.yaml ( #5905 )
2024-02-26 18:47:37 +08:00
Peng Xiao
298afc7d74
feat(core): enable right sidepanel animation ( #5902 )
2024-02-26 09:04:04 +00:00
JimmFly
0be62d892d
refactor(core): use custom scrollbar for editor and adjust shared page style ( #5752 )
...
Close TOV-481
- Use a custom scrollbar component for editor
- Modified the header of the share page and added a new footer
2024-02-26 08:54:52 +00:00
JimmFly
e9f9eea80c
fix(core): handling error message when sending verify change email ( #5894 )
2024-02-26 08:32:48 +00:00
JimmFly
d3360f655e
chore: update i18n resources ( #5906 )
2024-02-26 07:53:45 +00:00
Peng Xiao
cc2d97e3b8
fix: right sidepanel open on focus ( #5901 )
...
fix TOV-614
Should not show sidepanel on focusing inner elemenets
2024-02-26 03:43:37 +00:00
Peng Xiao
7d73145a69
fix: page info -> info ( #5892 )
...
fix AFF-607
2024-02-23 14:14:43 +00:00
Peng Xiao
c16e4d4464
fix: page properties flaky tests ( #5893 )
2024-02-23 14:14:41 +00:00
Peng Xiao
9e7406e0a1
chore: downgrade react-virtuoso to 4.6.3 ( #5896 )
...
temp workaround for https://github.com/petyosi/react-virtuoso/issues/1039

2024-02-23 13:55:11 +00:00
LongYinan
ae41c6c544
chore: bump all dependencies ( #5891 )
2024-02-23 09:37:14 +00:00
Peng Xiao
db1d0dcf52
fix(electron): autohide menu bar on linux ( #5890 )
2024-02-23 09:27:29 +00:00
LongYinan
ccd3190cec
ci: run CI on beta/stable push ( #5889 )
2024-02-23 09:17:13 +00:00
LongYinan
062526d452
chore: bump up node version to v20 ( #5201 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [node](https://nodejs.org ) ([source](https://togithub.com/nodejs/node )) | | major | `18` -> `20` |
| [node](https://nodejs.org ) ([source](https://togithub.com/nodejs/node )) | engines | major | [`>=18.16.1 <19.0.0` -> `<21.0.0`](https://renovatebot.com/diffs/npm/node/v18.19.1/v20.11.1 ) |
| [node](https://togithub.com/nodejs/node ) | final | major | `18-bookworm-slim` -> `20-bookworm-slim` |
---
### Release Notes
<details>
<summary>nodejs/node (node)</summary>
### [`v20.11.1`](https://togithub.com/nodejs/node/compare/v20.11.0...v20.11.1 )
[Compare Source](https://togithub.com/nodejs/node/compare/v20.11.0...v20.11.1 )
### [`v20.11.0`](https://togithub.com/nodejs/node/compare/v20.10.0...v20.11.0 )
[Compare Source](https://togithub.com/nodejs/node/compare/v20.10.0...v20.11.0 )
### [`v20.10.0`](https://togithub.com/nodejs/node/compare/v20.9.0...v20.10.0 )
[Compare Source](https://togithub.com/nodejs/node/compare/v20.9.0...v20.10.0 )
### [`v20.9.0`](https://togithub.com/nodejs/node/compare/v20.8.1...v20.9.0 )
[Compare Source](https://togithub.com/nodejs/node/compare/v20.8.1...v20.9.0 )
### [`v20.8.1`](https://togithub.com/nodejs/node/releases/tag/v20.8.1 ): 2023-10-13, Version 20.8.1 (Current), @​RafaelGSS
[Compare Source](https://togithub.com/nodejs/node/compare/v20.8.0...v20.8.1 )
This is a security release.
##### Notable Changes
The following CVEs are fixed in this release:
- [CVE-2023-44487](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487 ): `nghttp2` Security Release (High)
- [CVE-2023-45143](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-45143 ): `undici` Security Release (High)
- [CVE-2023-39332](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39332 ): Path traversal through path stored in Uint8Array (High)
- [CVE-2023-39331](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39331 ): Permission model improperly protects against path traversal (High)
- [CVE-2023-38552](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38552 ): Integrity checks according to policies can be circumvented (Medium)
- [CVE-2023-39333](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39333 ): Code injection via WebAssembly export names (Low)
More detailed information on each of the vulnerabilities can be found in [October 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/october-2023-security-releases/ ) blog post.
##### Commits
- \[[`c86883e844`](https://togithub.com/nodejs/node/commit/c86883e844 )] - **deps**: update nghttp2 to 1.57.0 (James M Snell) [#​50121](https://togithub.com/nodejs/node/pull/50121 )
- \[[`2860631359`](https://togithub.com/nodejs/node/commit/2860631359 )] - **deps**: update undici to v5.26.3 (Matteo Collina) [#​50153](https://togithub.com/nodejs/node/pull/50153 )
- \[[`cd37838bf8`](https://togithub.com/nodejs/node/commit/cd37838bf8 )] - **lib**: let deps require `node` prefixed modules (Matthew Aitken) [#​50047](https://togithub.com/nodejs/node/pull/50047 )
- \[[`f5c90b2951`](https://togithub.com/nodejs/node/commit/f5c90b2951 )] - **module**: fix code injection through export names (Tobias Nießen) [nodejs-private/node-private#461 ](https://togithub.com/nodejs-private/node-private/pull/461 )
- \[[`fa5dae1944`](https://togithub.com/nodejs/node/commit/fa5dae1944 )] - **permission**: fix Uint8Array path traversal (Tobias Nießen) [nodejs-private/node-private#456 ](https://togithub.com/nodejs-private/node-private/pull/456 )
- \[[`cd35275111`](https://togithub.com/nodejs/node/commit/cd35275111 )] - **permission**: improve path traversal protection (Tobias Nießen) [nodejs-private/node-private#456 ](https://togithub.com/nodejs-private/node-private/pull/456 )
- \[[`a4cb7fc7c0`](https://togithub.com/nodejs/node/commit/a4cb7fc7c0 )] - **policy**: use tamper-proof integrity check function (Tobias Nießen) [nodejs-private/node-private#462 ](https://togithub.com/nodejs-private/node-private/pull/462 )
### [`v20.8.0`](https://togithub.com/nodejs/node/releases/tag/v20.8.0 ): 2023-09-28, Version 20.8.0 (Current), @​ruyadorno
[Compare Source](https://togithub.com/nodejs/node/compare/v20.7.0...v20.8.0 )
##### Notable Changes
##### Stream performance improvements
Performance improvements to writable and readable streams, improving the creation and destruction by ±15% and reducing the memory overhead each stream takes in Node.js
Contributed by Benjamin Gruenbaum in [#​49745](https://togithub.com/nodejs/node/pull/49745 ) and Raz Luvaton in [#​49834](https://togithub.com/nodejs/node/pull/49834 ).
Performance improvements for readable webstream, improving readable stream async iterator consumption by ±140% and improving readable stream `pipeTo` consumption by ±60%
Contributed by Raz Luvaton in [#​49662](https://togithub.com/nodejs/node/pull/49662 ) and [#​49690](https://togithub.com/nodejs/node/pull/49690 ).
##### Rework of memory management in `vm` APIs with the `importModuleDynamically` option
This rework addressed a series of long-standing memory leaks and use-after-free issues in the following APIs that support `importModuleDynamically`:
- `vm.Script`
- `vm.compileFunction`
- `vm.SyntheticModule`
- `vm.SourceTextModule`
This should enable affected users (in particular Jest users) to upgrade from older versions of Node.js.
Contributed by Joyee Cheung in [#​48510](https://togithub.com/nodejs/node/pull/48510 ).
##### Other notable changes
- \[[`32d4d29d02`](https://togithub.com/nodejs/node/commit/32d4d29d02 )] - **deps**: add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) [#​49874](https://togithub.com/nodejs/node/pull/49874 )
- \[[`0e686d096b`](https://togithub.com/nodejs/node/commit/0e686d096b )] - **doc**: deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) [#​49683](https://togithub.com/nodejs/node/pull/49683 )
- \[[`a5dd057540`](https://togithub.com/nodejs/node/commit/a5dd057540 )] - **doc**: deprecate `util.toUSVString` (Yagiz Nizipli) [#​49725](https://togithub.com/nodejs/node/pull/49725 )
- \[[`7b6a73172f`](https://togithub.com/nodejs/node/commit/7b6a73172f )] - **doc**: deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) [#​49647](https://togithub.com/nodejs/node/pull/49647 )
- \[[`1beefd5f16`](https://togithub.com/nodejs/node/commit/1beefd5f16 )] - **esm**: set all hooks as release candidate (Geoffrey Booth) [#​49597](https://togithub.com/nodejs/node/pull/49597 )
- \[[`b0ce78a75b`](https://togithub.com/nodejs/node/commit/b0ce78a75b )] - **module**: fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) [#​48510](https://togithub.com/nodejs/node/pull/48510 )
- \[[`4e578f8ab1`](https://togithub.com/nodejs/node/commit/4e578f8ab1 )] - **module**: fix leak of vm.SyntheticModule (Joyee Cheung) [#​48510](https://togithub.com/nodejs/node/pull/48510 )
- \[[`69e4218772`](https://togithub.com/nodejs/node/commit/69e4218772 )] - **module**: use symbol in WeakMap to manage host defined options (Joyee Cheung) [#​48510](https://togithub.com/nodejs/node/pull/48510 )
- \[[`14ece0aa76`](https://togithub.com/nodejs/node/commit/14ece0aa76 )] - **(SEMVER-MINOR)** **src**: allow embedders to override NODE_MODULE_VERSION (Cheng Zhao) [#​49279](https://togithub.com/nodejs/node/pull/49279 )
- \[[`9fd67fbff0`](https://togithub.com/nodejs/node/commit/9fd67fbff0 )] - **stream**: use bitmap in writable state (Raz Luvaton) [#​49834](https://togithub.com/nodejs/node/pull/49834 )
- \[[`0ccd4638ac`](https://togithub.com/nodejs/node/commit/0ccd4638ac )] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#​49745](https://togithub.com/nodejs/node/pull/49745 )
- \[[`7c5e322346`](https://togithub.com/nodejs/node/commit/7c5e322346 )] - **stream**: improve webstream readable async iterator performance (Raz Luvaton) [#​49662](https://togithub.com/nodejs/node/pull/49662 )
- \[[`80b342cc38`](https://togithub.com/nodejs/node/commit/80b342cc38 )] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#​49753](https://togithub.com/nodejs/node/pull/49753 )
- \[[`17a05b141d`](https://togithub.com/nodejs/node/commit/17a05b141d )] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#​49614](https://togithub.com/nodejs/node/pull/49614 )
##### Commits
- \[[`4879e3fbbe`](https://togithub.com/nodejs/node/commit/4879e3fbbe )] - **benchmark**: add a benchmark for read() of ReadableStreams (Debadree Chatterjee) [#​49622](https://togithub.com/nodejs/node/pull/49622 )
- \[[`78a6c73157`](https://togithub.com/nodejs/node/commit/78a6c73157 )] - **benchmark**: shorten pipe-to by reducing number of chunks (Raz Luvaton) [#​49577](https://togithub.com/nodejs/node/pull/49577 )
- \[[`4126a6e4c9`](https://togithub.com/nodejs/node/commit/4126a6e4c9 )] - **benchmark**: fix webstream pipe-to (Raz Luvaton) [#​49552](https://togithub.com/nodejs/node/pull/49552 )
- \[[`6010a91825`](https://togithub.com/nodejs/node/commit/6010a91825 )] - **bootstrap**: do not expand argv1 for snapshots (Joyee Cheung) [#​49506](https://togithub.com/nodejs/node/pull/49506 )
- \[[`8480280c4b`](https://togithub.com/nodejs/node/commit/8480280c4b )] - **bootstrap**: only use the isolate snapshot when compiling code cache (Joyee Cheung) [#​49288](https://togithub.com/nodejs/node/pull/49288 )
- \[[`b30754aa87`](https://togithub.com/nodejs/node/commit/b30754aa87 )] - **build**: run embedtest using node executable (Joyee Cheung) [#​49506](https://togithub.com/nodejs/node/pull/49506 )
- \[[`31db0b8e2b`](https://togithub.com/nodejs/node/commit/31db0b8e2b )] - **build**: add --write-snapshot-as-array-literals to configure.py (Joyee Cheung) [#​49312](https://togithub.com/nodejs/node/pull/49312 )
- \[[`6fcb51d3ba`](https://togithub.com/nodejs/node/commit/6fcb51d3ba )] - **debugger**: use `internal/url.URL` instead of `url.parse` (LiviaMedeiros) [#​49590](https://togithub.com/nodejs/node/pull/49590 )
- \[[`32d4d29d02`](https://togithub.com/nodejs/node/commit/32d4d29d02 )] - **deps**: add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) [#​49874](https://togithub.com/nodejs/node/pull/49874 )
- \[[`ad37cadc3f`](https://togithub.com/nodejs/node/commit/ad37cadc3f )] - **deps**: V8: backport [`de9a5de`](https://togithub.com/nodejs/node/commit/de9a5de2274f ) (Joyee Cheung) [#​49703](https://togithub.com/nodejs/node/pull/49703 )
- \[[`cdd1c66222`](https://togithub.com/nodejs/node/commit/cdd1c66222 )] - **deps**: V8: cherry-pick [`b33bf2d`](https://togithub.com/nodejs/node/commit/b33bf2dfd261 ) (Joyee Cheung) [#​49703](https://togithub.com/nodejs/node/pull/49703 )
- \[[`61d18d6473`](https://togithub.com/nodejs/node/commit/61d18d6473 )] - **deps**: update undici to 5.24.0 (Node.js GitHub Bot) [#​49559](https://togithub.com/nodejs/node/pull/49559 )
- \[[`b8a4fef393`](https://togithub.com/nodejs/node/commit/b8a4fef393 )] - **deps**: remove pthread-fixes.c from uv.gyp (Ben Noordhuis) [#​49744](https://togithub.com/nodejs/node/pull/49744 )
- \[[`6c86c0683c`](https://togithub.com/nodejs/node/commit/6c86c0683c )] - **deps**: update googletest to [`d1467f5`](https://togithub.com/nodejs/node/commit/d1467f5 ) (Node.js GitHub Bot) [#​49676](https://togithub.com/nodejs/node/pull/49676 )
- \[[`1424404742`](https://togithub.com/nodejs/node/commit/1424404742 )] - **deps**: update nghttp2 to 1.56.0 (Node.js GitHub Bot) [#​49582](https://togithub.com/nodejs/node/pull/49582 )
- \[[`15b54ff95d`](https://togithub.com/nodejs/node/commit/15b54ff95d )] - **deps**: update googletest to [`8a6feab`](https://togithub.com/nodejs/node/commit/8a6feab ) (Node.js GitHub Bot) [#​49463](https://togithub.com/nodejs/node/pull/49463 )
- \[[`2ceab877c2`](https://togithub.com/nodejs/node/commit/2ceab877c2 )] - **deps**: update corepack to 0.20.0 (Node.js GitHub Bot) [#​49464](https://togithub.com/nodejs/node/pull/49464 )
- \[[`4814872ddc`](https://togithub.com/nodejs/node/commit/4814872ddc )] - **doc**: fix `DEP0176` number (LiviaMedeiros) [#​49858](https://togithub.com/nodejs/node/pull/49858 )
- \[[`0e686d096b`](https://togithub.com/nodejs/node/commit/0e686d096b )] - **doc**: deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) [#​49683](https://togithub.com/nodejs/node/pull/49683 )
- \[[`5877c403a2`](https://togithub.com/nodejs/node/commit/5877c403a2 )] - **doc**: add mertcanaltin as a triager (mert.altin) [#​49826](https://togithub.com/nodejs/node/pull/49826 )
- \[[`864fe56432`](https://togithub.com/nodejs/node/commit/864fe56432 )] - **doc**: add `git node backport` way to the backporting guide (Raz Luvaton) [#​49760](https://togithub.com/nodejs/node/pull/49760 )
- \[[`e0f93492d5`](https://togithub.com/nodejs/node/commit/e0f93492d5 )] - **doc**: improve documentation about ICU data fallback (Joyee Cheung) [#​49666](https://togithub.com/nodejs/node/pull/49666 )
- \[[`a5dd057540`](https://togithub.com/nodejs/node/commit/a5dd057540 )] - **doc**: deprecate `util.toUSVString` (Yagiz Nizipli) [#​49725](https://togithub.com/nodejs/node/pull/49725 )
- \[[`774c1cfd52`](https://togithub.com/nodejs/node/commit/774c1cfd52 )] - **doc**: add missing function call to example for `util.promisify` (Jungku Lee) [#​49719](https://togithub.com/nodejs/node/pull/49719 )
- \[[`fe78a34845`](https://togithub.com/nodejs/node/commit/fe78a34845 )] - **doc**: update output of example in `mimeParams.set()` (Deokjin Kim) [#​49718](https://togithub.com/nodejs/node/pull/49718 )
- \[[`4175ea33bd`](https://togithub.com/nodejs/node/commit/4175ea33bd )] - **doc**: add missed `inspect` with numericSeparator to example (Deokjin Kim) [#​49717](https://togithub.com/nodejs/node/pull/49717 )
- \[[`3a88571972`](https://togithub.com/nodejs/node/commit/3a88571972 )] - **doc**: fix history comments (Antoine du Hamel) [#​49701](https://togithub.com/nodejs/node/pull/49701 )
- \[[`db4ab1ccbb`](https://togithub.com/nodejs/node/commit/db4ab1ccbb )] - **doc**: add missing history info for `import.meta.resolve` (Antoine du Hamel) [#​49700](https://togithub.com/nodejs/node/pull/49700 )
- \[[`a304d1ee19`](https://togithub.com/nodejs/node/commit/a304d1ee19 )] - **doc**: link maintaining deps to pull-request.md (Marco Ippolito) [#​49716](https://togithub.com/nodejs/node/pull/49716 )
- \[[`35294486ad`](https://togithub.com/nodejs/node/commit/35294486ad )] - **doc**: fix print results in `events` (Jungku Lee) [#​49548](https://togithub.com/nodejs/node/pull/49548 )
- \[[`9f0b0e15c9`](https://togithub.com/nodejs/node/commit/9f0b0e15c9 )] - **doc**: alphabetize cli.md sections (Geoffrey Booth) [#​49668](https://togithub.com/nodejs/node/pull/49668 )
- \[[`7b6a73172f`](https://togithub.com/nodejs/node/commit/7b6a73172f )] - **doc**: deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) [#​49647](https://togithub.com/nodejs/node/pull/49647 )
- \[[`d316b32fff`](https://togithub.com/nodejs/node/commit/d316b32fff )] - **doc**: update `corepack.md` to account for 0.20.0 changes (Antoine du Hamel) [#​49486](https://togithub.com/nodejs/node/pull/49486 )
- \[[`c2eac7dc7c`](https://togithub.com/nodejs/node/commit/c2eac7dc7c )] - **doc**: remove `@anonrig` from performance initiative (Yagiz Nizipli) [#​49641](https://togithub.com/nodejs/node/pull/49641 )
- \[[`3d839fbf87`](https://togithub.com/nodejs/node/commit/3d839fbf87 )] - **doc**: mark Node.js 16 as End-of-Life (Richard Lau) [#​49651](https://togithub.com/nodejs/node/pull/49651 )
- \[[`53fb5aead8`](https://togithub.com/nodejs/node/commit/53fb5aead8 )] - **doc**: save user preference for JS flavor (Vidar Eldøy) [#​49526](https://togithub.com/nodejs/node/pull/49526 )
- \[[`e3594d5658`](https://togithub.com/nodejs/node/commit/e3594d5658 )] - **doc**: update documentation for node:process warning (Shubham Pandey) [#​49517](https://togithub.com/nodejs/node/pull/49517 )
- \[[`8e033c3963`](https://togithub.com/nodejs/node/commit/8e033c3963 )] - **doc**: rename possibly confusing variable and CSS class (Antoine du Hamel) [#​49536](https://togithub.com/nodejs/node/pull/49536 )
- \[[`d0e0eb4bb3`](https://togithub.com/nodejs/node/commit/d0e0eb4bb3 )] - **doc**: update outdated history info (Antoine du Hamel) [#​49530](https://togithub.com/nodejs/node/pull/49530 )
- \[[`b4724e2e3a`](https://togithub.com/nodejs/node/commit/b4724e2e3a )] - **doc**: close a parenthesis (Sébastien Règne) [#​49525](https://togithub.com/nodejs/node/pull/49525 )
- \[[`0471c5798e`](https://togithub.com/nodejs/node/commit/0471c5798e )] - **doc**: cast GetInternalField() return type to v8::Value in addons.md (Joyee Cheung) [#​49439](https://togithub.com/nodejs/node/pull/49439 )
- \[[`9f8bea3dda`](https://togithub.com/nodejs/node/commit/9f8bea3dda )] - **doc**: fix documentation for input option in child_process (Ariel Weiss) [#​49481](https://togithub.com/nodejs/node/pull/49481 )
- \[[`f3fea92f8a`](https://togithub.com/nodejs/node/commit/f3fea92f8a )] - **doc**: fix missing imports in `test.run` code examples (Oshri Asulin) [#​49489](https://togithub.com/nodejs/node/pull/49489 )
- \[[`e426b77b67`](https://togithub.com/nodejs/node/commit/e426b77b67 )] - **doc**: fix documentation for fs.createWriteStream highWaterMark option (Mert Can Altın) [#​49456](https://togithub.com/nodejs/node/pull/49456 )
- \[[`2b119108ff`](https://togithub.com/nodejs/node/commit/2b119108ff )] - **doc**: updated releasers instructions for node.js website (Claudio W) [#​49427](https://togithub.com/nodejs/node/pull/49427 )
- \[[`b9d4a80183`](https://togithub.com/nodejs/node/commit/b9d4a80183 )] - **doc**: edit `import.meta.resolve` documentation (Antoine du Hamel) [#​49247](https://togithub.com/nodejs/node/pull/49247 )
- \[[`f67433f666`](https://togithub.com/nodejs/node/commit/f67433f666 )] - **doc,tools**: switch to `@node-core/utils` (Michaël Zasso) [#​49851](https://togithub.com/nodejs/node/pull/49851 )
- \[[`142e256fc5`](https://togithub.com/nodejs/node/commit/142e256fc5 )] - **errors**: improve classRegExp in errors.js (Uzlopak) [#​49643](https://togithub.com/nodejs/node/pull/49643 )
- \[[`6377f1bce2`](https://togithub.com/nodejs/node/commit/6377f1bce2 )] - **errors**: use `determineSpecificType` in more error messages (Antoine du Hamel) [#​49580](https://togithub.com/nodejs/node/pull/49580 )
- \[[`05f0fcb4c4`](https://togithub.com/nodejs/node/commit/05f0fcb4c4 )] - **esm**: identify parent importing a url with invalid host (Jacob Smith) [#​49736](https://togithub.com/nodejs/node/pull/49736 )
- \[[`8a6f5fb8f3`](https://togithub.com/nodejs/node/commit/8a6f5fb8f3 )] - **esm**: fix return type of `import.meta.resolve` (Antoine du Hamel) [#​49698](https://togithub.com/nodejs/node/pull/49698 )
- \[[`a6140f1b8c`](https://togithub.com/nodejs/node/commit/a6140f1b8c )] - **esm**: update loaders warning (Geoffrey Booth) [#​49633](https://togithub.com/nodejs/node/pull/49633 )
- \[[`521a9327e0`](https://togithub.com/nodejs/node/commit/521a9327e0 )] - **esm**: fix support for `URL` instances in `register` (Antoine du Hamel) [#​49655](https://togithub.com/nodejs/node/pull/49655 )
- \[[`3a9ea0925a`](https://togithub.com/nodejs/node/commit/3a9ea0925a )] - **esm**: clarify ERR_REQUIRE_ESM errors (Daniel Compton) [#​49521](https://togithub.com/nodejs/node/pull/49521 )
- \[[`1beefd5f16`](https://togithub.com/nodejs/node/commit/1beefd5f16 )] - **esm**: set all hooks as release candidate (Geoffrey Booth) [#​49597](https://togithub.com/nodejs/node/pull/49597 )
- \[[`be48267888`](https://togithub.com/nodejs/node/commit/be48267888 )] - **esm**: remove return value for `Module.register` (Antoine du Hamel) [#​49529](https://togithub.com/nodejs/node/pull/49529 )
- \[[`e74a075124`](https://togithub.com/nodejs/node/commit/e74a075124 )] - **esm**: refactor test-esm-loader-resolve-type (Geoffrey Booth) [#​49493](https://togithub.com/nodejs/node/pull/49493 )
- \[[`17823b3533`](https://togithub.com/nodejs/node/commit/17823b3533 )] - **esm**: refactor test-esm-named-exports (Geoffrey Booth) [#​49493](https://togithub.com/nodejs/node/pull/49493 )
- \[[`f34bd15ac1`](https://togithub.com/nodejs/node/commit/f34bd15ac1 )] - **esm**: refactor mocking test (Geoffrey Booth) [#​49465](https://togithub.com/nodejs/node/pull/49465 )
- \[[`ec323bbd99`](https://togithub.com/nodejs/node/commit/ec323bbd99 )] - **fs**: replace `SetMethodNoSideEffect` in node_file (CanadaHonk) [#​49857](https://togithub.com/nodejs/node/pull/49857 )
- \[[`6acf800123`](https://togithub.com/nodejs/node/commit/6acf800123 )] - **fs**: improve error performance for `unlinkSync` (CanadaHonk) [#​49856](https://togithub.com/nodejs/node/pull/49856 )
- \[[`31702c9403`](https://togithub.com/nodejs/node/commit/31702c9403 )] - **fs**: improve `readFileSync` with file descriptors (Yagiz Nizipli) [#​49691](https://togithub.com/nodejs/node/pull/49691 )
- \[[`835f9fe7b9`](https://togithub.com/nodejs/node/commit/835f9fe7b9 )] - **fs**: fix file descriptor validator (Yagiz Nizipli) [#​49752](https://togithub.com/nodejs/node/pull/49752 )
- \[[`b618fe262f`](https://togithub.com/nodejs/node/commit/b618fe262f )] - **fs**: improve error performance of `opendirSync` (Yagiz Nizipli) [#​49705](https://togithub.com/nodejs/node/pull/49705 )
- \[[`938471ef55`](https://togithub.com/nodejs/node/commit/938471ef55 )] - **fs**: improve error performance of sync methods (Yagiz Nizipli) [#​49593](https://togithub.com/nodejs/node/pull/49593 )
- \[[`db3fc6d087`](https://togithub.com/nodejs/node/commit/db3fc6d087 )] - **fs**: fix readdir and opendir recursive with unknown file types (William Marlow) [#​49603](https://togithub.com/nodejs/node/pull/49603 )
- \[[`0f020ed22d`](https://togithub.com/nodejs/node/commit/0f020ed22d )] - **gyp**: put cctest filenames in variables (Cheng Zhao) [#​49178](https://togithub.com/nodejs/node/pull/49178 )
- \[[`0ce1e94d12`](https://togithub.com/nodejs/node/commit/0ce1e94d12 )] - **lib**: update encoding sets in `WHATWG API` (Jungku Lee) [#​49610](https://togithub.com/nodejs/node/pull/49610 )
- \[[`efd6815a7a`](https://togithub.com/nodejs/node/commit/efd6815a7a )] - **lib**: fix `internalBinding` typings (Yagiz Nizipli) [#​49742](https://togithub.com/nodejs/node/pull/49742 )
- \[[`1287d5b74e`](https://togithub.com/nodejs/node/commit/1287d5b74e )] - **lib**: allow byob reader for 'blob.stream()' (Debadree Chatterjee) [#​49713](https://togithub.com/nodejs/node/pull/49713 )
- \[[`bbc710522d`](https://togithub.com/nodejs/node/commit/bbc710522d )] - **lib**: reset the cwd cache before execution (Maël Nison) [#​49684](https://togithub.com/nodejs/node/pull/49684 )
- \[[`f62d649e4d`](https://togithub.com/nodejs/node/commit/f62d649e4d )] - **lib**: use internal `fileURLToPath` (Deokjin Kim) [#​49558](https://togithub.com/nodejs/node/pull/49558 )
- \[[`e515046941`](https://togithub.com/nodejs/node/commit/e515046941 )] - **lib**: use internal `pathToFileURL` (Livia Medeiros) [#​49553](https://togithub.com/nodejs/node/pull/49553 )
- \[[`00608e8070`](https://togithub.com/nodejs/node/commit/00608e8070 )] - **lib**: check SharedArrayBuffer availability in freeze_intrinsics.js (Milan Burda) [#​49482](https://togithub.com/nodejs/node/pull/49482 )
- \[[`8bfbe7079c`](https://togithub.com/nodejs/node/commit/8bfbe7079c )] - **meta**: fix linter error (Antoine du Hamel) [#​49755](https://togithub.com/nodejs/node/pull/49755 )
- \[[`58f7a9e096`](https://togithub.com/nodejs/node/commit/58f7a9e096 )] - **meta**: add primordials strategic initiative (Benjamin Gruenbaum) [#​49706](https://togithub.com/nodejs/node/pull/49706 )
- \[[`5366027756`](https://togithub.com/nodejs/node/commit/5366027756 )] - **meta**: bump github/codeql-action from 2.21.2 to 2.21.5 (dependabot\[bot]) [#​49438](https://togithub.com/nodejs/node/pull/49438 )
- \[[`fe26b74082`](https://togithub.com/nodejs/node/commit/fe26b74082 )] - **meta**: bump rtCamp/action-slack-notify from 2.2.0 to 2.2.1 (dependabot\[bot]) [#​49437](https://togithub.com/nodejs/node/pull/49437 )
- \[[`b0ce78a75b`](https://togithub.com/nodejs/node/commit/b0ce78a75b )] - **module**: fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) [#​48510](https://togithub.com/nodejs/node/pull/48510 )
- \[[`4e578f8ab1`](https://togithub.com/nodejs/node/commit/4e578f8ab1 )] - **module**: fix leak of vm.SyntheticModule (Joyee Cheung) [#​48510](https://togithub.com/nodejs/node/pull/48510 )
- \[[`69e4218772`](https://togithub.com/nodejs/node/commit/69e4218772 )] - **module**: use symbol in WeakMap to manage host defined options (Joyee Cheung) [#​48510](https://togithub.com/nodejs/node/pull/48510 )
- \[[`96874e8fbc`](https://togithub.com/nodejs/node/commit/96874e8fbc )] - **node-api**: enable uncaught exceptions policy by default (Chengzhong Wu) [#​49313](https://togithub.com/nodejs/node/pull/49313 )
- \[[`b931aeadfd`](https://togithub.com/nodejs/node/commit/b931aeadfd )] - **perf_hooks**: reduce overhead of new performance_entries (Vinicius Lourenço) [#​49803](https://togithub.com/nodejs/node/pull/49803 )
- \[[`ad043bac31`](https://togithub.com/nodejs/node/commit/ad043bac31 )] - **process**: add custom dir support for heapsnapshot-signal (Jithil P Ponnan) [#​47854](https://togithub.com/nodejs/node/pull/47854 )
- \[[`8a7c10194c`](https://togithub.com/nodejs/node/commit/8a7c10194c )] - **repl**: don't accumulate excess indentation in .load (Daniel X Moore) [#​49461](https://togithub.com/nodejs/node/pull/49461 )
- \[[`10a2adeed5`](https://togithub.com/nodejs/node/commit/10a2adeed5 )] - **src**: improve error message when ICU data cannot be initialized (Joyee Cheung) [#​49666](https://togithub.com/nodejs/node/pull/49666 )
- \[[`ce37688bac`](https://togithub.com/nodejs/node/commit/ce37688bac )] - **src**: remove unnecessary todo (Rafael Gonzaga) [#​49227](https://togithub.com/nodejs/node/pull/49227 )
- \[[`f611583b71`](https://togithub.com/nodejs/node/commit/f611583b71 )] - **src**: use SNAPSHOT_SERDES to log snapshot ser/deserialization (Joyee Cheung) [#​49637](https://togithub.com/nodejs/node/pull/49637 )
- \[[`a597cb8457`](https://togithub.com/nodejs/node/commit/a597cb8457 )] - **src**: port Pipe to uv_pipe_bind2, uv_pipe_connect2 (Geoff Goodman) [#​49667](https://togithub.com/nodejs/node/pull/49667 )
- \[[`fb21062338`](https://togithub.com/nodejs/node/commit/fb21062338 )] - **src**: set --rehash-snapshot explicitly (Joyee Cheung) [#​49556](https://togithub.com/nodejs/node/pull/49556 )
- \[[`14ece0aa76`](https://togithub.com/nodejs/node/commit/14ece0aa76 )] - **(SEMVER-MINOR)** **src**: allow embedders to override NODE_MODULE_VERSION (Cheng Zhao) [#​49279](https://togithub.com/nodejs/node/pull/49279 )
- \[[`4b5e23c71b`](https://togithub.com/nodejs/node/commit/4b5e23c71b )] - **src**: set ModuleWrap internal fields only once (Joyee Cheung) [#​49391](https://togithub.com/nodejs/node/pull/49391 )
- \[[`2d3f5c7cab`](https://togithub.com/nodejs/node/commit/2d3f5c7cab )] - **src**: fix fs_type_to_name default value (Mustafa Ateş Uzun) [#​49239](https://togithub.com/nodejs/node/pull/49239 )
- \[[`cfbcb1059c`](https://togithub.com/nodejs/node/commit/cfbcb1059c )] - **src**: fix comment on StreamResource (rogertyang) [#​49193](https://togithub.com/nodejs/node/pull/49193 )
- \[[`39fb83ad16`](https://togithub.com/nodejs/node/commit/39fb83ad16 )] - **src**: do not rely on the internal field being default to undefined (Joyee Cheung) [#​49413](https://togithub.com/nodejs/node/pull/49413 )
- \[[`9fd67fbff0`](https://togithub.com/nodejs/node/commit/9fd67fbff0 )] - **stream**: use bitmap in writable state (Raz Luvaton) [#​49834](https://togithub.com/nodejs/node/pull/49834 )
- \[[`0ccd4638ac`](https://togithub.com/nodejs/node/commit/0ccd4638ac )] - **stream**: use bitmap in readable state (Benjamin Gruenbaum) [#​49745](https://togithub.com/nodejs/node/pull/49745 )
- \[[`b29d927010`](https://togithub.com/nodejs/node/commit/b29d927010 )] - **stream**: improve readable webstream `pipeTo` (Raz Luvaton) [#​49690](https://togithub.com/nodejs/node/pull/49690 )
- \[[`7c5e322346`](https://togithub.com/nodejs/node/commit/7c5e322346 )] - **stream**: improve webstream readable async iterator performance (Raz Luvaton) [#​49662](https://togithub.com/nodejs/node/pull/49662 )
- \[[`be211ef818`](https://togithub.com/nodejs/node/commit/be211ef818 )] - **test**: deflake test-vm-contextified-script-leak (Joyee Cheung) [#​49710](https://togithub.com/nodejs/node/pull/49710 )
- \[[`355f10dab2`](https://togithub.com/nodejs/node/commit/355f10dab2 )] - **test**: use checkIfCollectable in vm leak tests (Joyee Cheung) [#​49671](https://togithub.com/nodejs/node/pull/49671 )
- \[[`17cfc531aa`](https://togithub.com/nodejs/node/commit/17cfc531aa )] - **test**: add checkIfCollectable to test/common/gc.js (Joyee Cheung) [#​49671](https://togithub.com/nodejs/node/pull/49671 )
- \[[`e49a573752`](https://togithub.com/nodejs/node/commit/e49a573752 )] - **test**: add os setPriority, getPriority test coverage (Wael) [#​38771](https://togithub.com/nodejs/node/pull/38771 )
- \[[`5f02711522`](https://togithub.com/nodejs/node/commit/5f02711522 )] - **test**: deflake test-runner-output (Moshe Atlow) [#​49878](https://togithub.com/nodejs/node/pull/49878 )
- \[[`cd9754d6a7`](https://togithub.com/nodejs/node/commit/cd9754d6a7 )] - **test**: mark test-runner-output as flaky (Joyee Cheung) [#​49854](https://togithub.com/nodejs/node/pull/49854 )
- \[[`5ad00424dd`](https://togithub.com/nodejs/node/commit/5ad00424dd )] - **test**: use mustSucceed instead of mustCall (SiddharthDevulapalli) [#​49788](https://togithub.com/nodejs/node/pull/49788 )
- \[[`3db9b40081`](https://togithub.com/nodejs/node/commit/3db9b40081 )] - **test**: refactor test-readline-async-iterators into a benchmark (Shubham Pandey) [#​49237](https://togithub.com/nodejs/node/pull/49237 )
- \[[`2cc5ad7859`](https://togithub.com/nodejs/node/commit/2cc5ad7859 )] - ***Revert*** "**test**: mark test-http-regr-[gh-2928](https://togithub.com/nodejs/node/issues/2928 ) as flaky" (Luigi Pinca) [#​49708](https://togithub.com/nodejs/node/pull/49708 )
- \[[`e5185b053c`](https://togithub.com/nodejs/node/commit/e5185b053c )] - **test**: use `fs.constants` for `fs.access` constants (Livia Medeiros) [#​49685](https://togithub.com/nodejs/node/pull/49685 )
- \[[`b9e5b43462`](https://togithub.com/nodejs/node/commit/b9e5b43462 )] - **test**: deflake test-http-regr-[gh-2928](https://togithub.com/nodejs/node/issues/2928 ) (Luigi Pinca) [#​49574](https://togithub.com/nodejs/node/pull/49574 )
- \[[`1fffda504e`](https://togithub.com/nodejs/node/commit/1fffda504e )] - **test**: fix argument computation in embedtest (Joyee Cheung) [#​49506](https://togithub.com/nodejs/node/pull/49506 )
- \[[`6e56f2db52`](https://togithub.com/nodejs/node/commit/6e56f2db52 )] - **test**: skip test-child-process-stdio-reuse-readable-stdio on Windows (Joyee Cheung) [#​49621](https://togithub.com/nodejs/node/pull/49621 )
- \[[`ab3afb330d`](https://togithub.com/nodejs/node/commit/ab3afb330d )] - **test**: mark test-runner-watch-mode as flaky (Joyee Cheung) [#​49627](https://togithub.com/nodejs/node/pull/49627 )
- \[[`185d9b50db`](https://togithub.com/nodejs/node/commit/185d9b50db )] - **test**: deflake test-tls-socket-close (Luigi Pinca) [#​49575](https://togithub.com/nodejs/node/pull/49575 )
- \[[`c70c74a9e6`](https://togithub.com/nodejs/node/commit/c70c74a9e6 )] - **test**: show more info on failure in test-cli-syntax-require.js (Joyee Cheung) [#​49561](https://togithub.com/nodejs/node/pull/49561 )
- \[[`ed7c6d1114`](https://togithub.com/nodejs/node/commit/ed7c6d1114 )] - **test**: mark test-http-regr-[gh-2928](https://togithub.com/nodejs/node/issues/2928 ) as flaky (Joyee Cheung) [#​49565](https://togithub.com/nodejs/node/pull/49565 )
- \[[`3599eebab9`](https://togithub.com/nodejs/node/commit/3599eebab9 )] - **test**: use spawnSyncAndExitWithoutError in sea tests (Joyee Cheung) [#​49543](https://togithub.com/nodejs/node/pull/49543 )
- \[[`f79b153e89`](https://togithub.com/nodejs/node/commit/f79b153e89 )] - **test**: use spawnSyncAndExitWithoutError in test/common/sea.js (Joyee Cheung) [#​49543](https://togithub.com/nodejs/node/pull/49543 )
- \[[`c079c73769`](https://togithub.com/nodejs/node/commit/c079c73769 )] - **test**: use setImmediate() in test-heapdump-shadowrealm.js (Joyee Cheung) [#​49573](https://togithub.com/nodejs/node/pull/49573 )
- \[[`667a92493c`](https://togithub.com/nodejs/node/commit/667a92493c )] - **test**: skip test-child-process-pipe-dataflow.js on Windows (Joyee Cheung) [#​49563](https://togithub.com/nodejs/node/pull/49563 )
- \[[`91af0a9a3c`](https://togithub.com/nodejs/node/commit/91af0a9a3c )] - ***Revert*** "**test**: ignore the copied entry_point.c" (Chengzhong Wu) [#​49515](https://togithub.com/nodejs/node/pull/49515 )
- \[[`567afc71b8`](https://togithub.com/nodejs/node/commit/567afc71b8 )] - **test**: avoid copying test source files (Chengzhong Wu) [#​49515](https://togithub.com/nodejs/node/pull/49515 )
- \[[`ced25a976d`](https://togithub.com/nodejs/node/commit/ced25a976d )] - **test**: increase coverage of `Module.register` and `initialize` hook (Antoine du Hamel) [#​49532](https://togithub.com/nodejs/node/pull/49532 )
- \[[`be02fbdb8a`](https://togithub.com/nodejs/node/commit/be02fbdb8a )] - **test**: isolate `globalPreload` tests (Geoffrey Booth) [#​49545](https://togithub.com/nodejs/node/pull/49545 )
- \[[`f214428845`](https://togithub.com/nodejs/node/commit/f214428845 )] - **test**: split test-crypto-dh to avoid timeout on slow machines in the CI (Joyee Cheung) [#​49492](https://togithub.com/nodejs/node/pull/49492 )
- \[[`3987094569`](https://togithub.com/nodejs/node/commit/3987094569 )] - **test**: make `test-dotenv-node-options` locale-independent (Livia Medeiros) [#​49470](https://togithub.com/nodejs/node/pull/49470 )
- \[[`34c1741792`](https://togithub.com/nodejs/node/commit/34c1741792 )] - **test**: add test for urlstrings usage in `node:fs` (Livia Medeiros) [#​49471](https://togithub.com/nodejs/node/pull/49471 )
- \[[`c3c6c4f007`](https://togithub.com/nodejs/node/commit/c3c6c4f007 )] - **test**: make test-worker-prof more robust (Joyee Cheung) [#​49274](https://togithub.com/nodejs/node/pull/49274 )
- \[[`843df1a4da`](https://togithub.com/nodejs/node/commit/843df1a4da )] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#​49714](https://togithub.com/nodejs/node/pull/49714 )
- \[[`80b342cc38`](https://togithub.com/nodejs/node/commit/80b342cc38 )] - **(SEMVER-MINOR)** **test_runner**: accept `testOnly` in `run` (Moshe Atlow) [#​49753](https://togithub.com/nodejs/node/pull/49753 )
- \[[`76865515b9`](https://togithub.com/nodejs/node/commit/76865515b9 )] - **test_runner**: fix test runner watch mode when no positional arguments (Moshe Atlow) [#​49578](https://togithub.com/nodejs/node/pull/49578 )
- \[[`17a05b141d`](https://togithub.com/nodejs/node/commit/17a05b141d )] - **(SEMVER-MINOR)** **test_runner**: add junit reporter (Moshe Atlow) [#​49614](https://togithub.com/nodejs/node/pull/49614 )
- \[[`5672e38457`](https://togithub.com/nodejs/node/commit/5672e38457 )] - **test_runner**: add jsdocs to mock.js (Caio Borghi) [#​49555](https://togithub.com/nodejs/node/pull/49555 )
- \[[`b4d42a8f2b`](https://togithub.com/nodejs/node/commit/b4d42a8f2b )] - **test_runner**: fix invalid timer call (Erick Wendel) [#​49477](https://togithub.com/nodejs/node/pull/49477 )
- \[[`f755e6786b`](https://togithub.com/nodejs/node/commit/f755e6786b )] - **test_runner**: add jsdocs to MockTimers (Erick Wendel) [#​49476](https://togithub.com/nodejs/node/pull/49476 )
- \[[`e7285d4bf0`](https://togithub.com/nodejs/node/commit/e7285d4bf0 )] - **test_runner**: fix typescript coverage (Moshe Atlow) [#​49406](https://togithub.com/nodejs/node/pull/49406 )
- \[[`07a2e29bf3`](https://togithub.com/nodejs/node/commit/07a2e29bf3 )] - **tools**: support updating [@​reporters/github](https://togithub.com/reporters/github ) manually (Moshe Atlow) [#​49871](https://togithub.com/nodejs/node/pull/49871 )
- \[[`5ac6722031`](https://togithub.com/nodejs/node/commit/5ac6722031 )] - **tools**: skip ruff on tools/node_modules (Moshe Atlow) [#​49838](https://togithub.com/nodejs/node/pull/49838 )
- \[[`462228bd24`](https://togithub.com/nodejs/node/commit/462228bd24 )] - **tools**: fix uvwasi updater (Michael Dawson) [#​49682](https://togithub.com/nodejs/node/pull/49682 )
- \[[`ff81bfb958`](https://togithub.com/nodejs/node/commit/ff81bfb958 )] - **tools**: update lint-md-dependencies to rollup@3.29 .2 (Node.js GitHub Bot) [#​49679](https://togithub.com/nodejs/node/pull/49679 )
- \[[`08ffc6344c`](https://togithub.com/nodejs/node/commit/08ffc6344c )] - **tools**: restrict internal code from using public `url` module (LiviaMedeiros) [#​49590](https://togithub.com/nodejs/node/pull/49590 )
- \[[`728ebf6c97`](https://togithub.com/nodejs/node/commit/728ebf6c97 )] - **tools**: update eslint to 8.49.0 (Node.js GitHub Bot) [#​49586](https://togithub.com/nodejs/node/pull/49586 )
- \[[`20d038ffb1`](https://togithub.com/nodejs/node/commit/20d038ffb1 )] - **tools**: update lint-md-dependencies to rollup@3.29 .0 unified@11.0.3 (Node.js GitHub Bot) [#​49584](https://togithub.com/nodejs/node/pull/49584 )
- \[[`210c15bd12`](https://togithub.com/nodejs/node/commit/210c15bd12 )] - **tools**: allow passing absolute path of config.gypi in js2c (Cheng Zhao) [#​49162](https://togithub.com/nodejs/node/pull/49162 )
- \[[`e341efe173`](https://togithub.com/nodejs/node/commit/e341efe173 )] - **tools**: configure never-stale label correctly (Michaël Zasso) [#​49498](https://togithub.com/nodejs/node/pull/49498 )
- \[[`a8a8a498ce`](https://togithub.com/nodejs/node/commit/a8a8a498ce )] - **tools**: update doc dependencies (Node.js GitHub Bot) [#​49467](https://togithub.com/nodejs/node/pull/49467 )
- \[[`ac06607f9e`](https://togithub.com/nodejs/node/commit/ac06607f9e )] - **typings**: fix missing property in `ExportedHooks` (Antoine du Hamel) [#​49567](https://togithub.com/nodejs/node/pull/49567 )
- \[[`097b59807a`](https://togithub.com/nodejs/node/commit/097b59807a )] - **url**: improve invalid url performance (Yagiz Nizipli) [#​49692](https://togithub.com/nodejs/node/pull/49692 )
- \[[`7c2060cfac`](https://togithub.com/nodejs/node/commit/7c2060cfac )] - **util**: add `getCwdSafe` internal util fn (João Lenon) [#​48434](https://togithub.com/nodejs/node/pull/48434 )
- \[[`c23c60f545`](https://togithub.com/nodejs/node/commit/c23c60f545 )] - **zlib**: disable CRC32 SIMD optimization (Luigi Pinca) [#​49511](https://togithub.com/nodejs/node/pull/49511 )
### [`v20.7.0`](https://togithub.com/nodejs/node/releases/tag/v20.7.0 ): 2023-09-18, Version 20.7.0 (Current), @​UlisesGascon
[Compare Source](https://togithub.com/nodejs/node/compare/v20.6.1...v20.7.0 )
##### Notable Changes
- \[[`022f1b70c1`](https://togithub.com/nodejs/node/commit/022f1b70c1 )] - **src**: support multiple `--env-file` declarations (Yagiz Nizipli) [#​49542](https://togithub.com/nodejs/node/pull/49542 )
- \[[`4a1d1cad61`](https://togithub.com/nodejs/node/commit/4a1d1cad61 )] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#​49341](https://togithub.com/nodejs/node/pull/49341 )
- \[[`a1a65f593c`](https://togithub.com/nodejs/node/commit/a1a65f593c )] - **deps**: upgrade npm to 10.1.0 (npm team) [#​49570](https://togithub.com/nodejs/node/pull/49570 )
- \[[`6c2480cad9`](https://togithub.com/nodejs/node/commit/6c2480cad9 )] - **(SEMVER-MINOR)** **deps**: upgrade npm to 10.0.0 (npm team) [#​49423](https://togithub.com/nodejs/node/pull/49423 )
- \[[`bef900e56b`](https://togithub.com/nodejs/node/commit/bef900e56b )] - **doc**: move and rename loaders section (Geoffrey Booth) [#​49261](https://togithub.com/nodejs/node/pull/49261 )
- \[[`db4ce8a593`](https://togithub.com/nodejs/node/commit/db4ce8a593 )] - **doc**: add release key for Ulises Gascon (Ulises Gascón) [#​49196](https://togithub.com/nodejs/node/pull/49196 )
- \[[`11c85ffa98`](https://togithub.com/nodejs/node/commit/11c85ffa98 )] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#​46391](https://togithub.com/nodejs/node/pull/46391 )
- \[[`ec51e25ed7`](https://togithub.com/nodejs/node/commit/ec51e25ed7 )] - **src,permission**: add multiple allow-fs-\* flags (Carlos Espa) [#​49047](https://togithub.com/nodejs/node/pull/49047 )
- \[[`efdc95fbc0`](https://togithub.com/nodejs/node/commit/efdc95fbc0 )] - **(SEMVER-MINOR)** **test_runner**: expose location of tests (Colin Ihrig) [#​48975](https://togithub.com/nodejs/node/pull/48975 )
##### Commits
- \[[`e84515594e`](https://togithub.com/nodejs/node/commit/e84515594e )] - **benchmark**: use `tmpdir.resolve()` (Livia Medeiros) [#​49137](https://togithub.com/nodejs/node/pull/49137 )
- \[[`f37444e896`](https://togithub.com/nodejs/node/commit/f37444e896 )] - **bootstrap**: build code cache from deserialized isolate (Joyee Cheung) [#​49099](https://togithub.com/nodejs/node/pull/49099 )
- \[[`af6dc1754d`](https://togithub.com/nodejs/node/commit/af6dc1754d )] - **bootstrap**: do not generate code cache in an unfinalized isolate (Joyee Cheung) [#​49108](https://togithub.com/nodejs/node/pull/49108 )
- \[[`cade5716df`](https://togithub.com/nodejs/node/commit/cade5716df )] - **build**: add symlink to `compile_commands.json` file if needed (Juan José) [#​49260](https://togithub.com/nodejs/node/pull/49260 )
- \[[`34a2590b05`](https://togithub.com/nodejs/node/commit/34a2590b05 )] - **build**: expand when we run internet tests (Michael Dawson) [#​49218](https://togithub.com/nodejs/node/pull/49218 )
- \[[`f637fd46ab`](https://togithub.com/nodejs/node/commit/f637fd46ab )] - **build**: fix typo `libray` -> `library` (configure.py) (michalbiesek) [#​49106](https://togithub.com/nodejs/node/pull/49106 )
- \[[`ef3d8dd493`](https://togithub.com/nodejs/node/commit/ef3d8dd493 )] - **crypto**: remove webcrypto EdDSA key checks and properties (Filip Skokan) [#​49408](https://togithub.com/nodejs/node/pull/49408 )
- \[[`4a1d1cad61`](https://togithub.com/nodejs/node/commit/4a1d1cad61 )] - **crypto**: update root certificates to NSS 3.93 (Node.js GitHub Bot) [#​49341](https://togithub.com/nodejs/node/pull/49341 )
- \[[`7eb10a38ea`](https://togithub.com/nodejs/node/commit/7eb10a38ea )] - **crypto**: remove getDefaultEncoding() (Tobias Nießen) [#​49170](https://togithub.com/nodejs/node/pull/49170 )
- \[[`772496c030`](https://togithub.com/nodejs/node/commit/772496c030 )] - **crypto**: remove default encoding from DiffieHellman (Tobias Nießen) [#​49169](https://togithub.com/nodejs/node/pull/49169 )
- \[[`c795083232`](https://togithub.com/nodejs/node/commit/c795083232 )] - **crypto**: remove default encoding from Hash/Hmac (Tobias Nießen) [#​49167](https://togithub.com/nodejs/node/pull/49167 )
- \[[`08197aa010`](https://togithub.com/nodejs/node/commit/08197aa010 )] - **crypto**: remove default encoding from sign/verify (Tobias Nießen) [#​49145](https://togithub.com/nodejs/node/pull/49145 )
- \[[`a1a65f593c`](https://togithub.com/nodejs/node/commit/a1a65f593c )] - **deps**: upgrade npm to 10.1.0 (npm team) [#​49570](https://togithub.com/nodejs/node/pull/49570 )
- \[[`6c2480cad9`](https://togithub.com/nodejs/node/commit/6c2480cad9 )] - **(SEMVER-MINOR)** **deps**: upgrade npm to 10.0.0 (npm team) [#​49423](https://togithub.com/nodejs/node/pull/49423 )
- \[[`84195d9584`](https://togithub.com/nodejs/node/commit/84195d9584 )] - **deps**: add missing thread-common.c in uv.gyp (Santiago Gimeno) [#​49410](https://togithub.com/nodejs/node/pull/49410 )
- \[[`5b70b68b3d`](https://togithub.com/nodejs/node/commit/5b70b68b3d )] - **deps**: V8: cherry-pick [`eadaef5`](https://togithub.com/nodejs/node/commit/eadaef581c29 ) (Adam Majer) [#​49401](https://togithub.com/nodejs/node/pull/49401 )
- \[[`fe34d632e8`](https://togithub.com/nodejs/node/commit/fe34d632e8 )] - **deps**: update zlib to 1.2.13.1-motley-f5fd0ad (Node.js GitHub Bot) [#​49252](https://togithub.com/nodejs/node/pull/49252 )
- \[[`db4ce8a593`](https://togithub.com/nodejs/node/commit/db4ce8a593 )] - **doc**: add release key for Ulises Gascon (Ulises Gascón) [#​49196](https://togithub.com/nodejs/node/pull/49196 )
- \[[`e5f3a694cf`](https://togithub.com/nodejs/node/commit/e5f3a694cf )] - **doc**: fix node-api call example (Chengzhong Wu) [#​49395](https://togithub.com/nodejs/node/pull/49395 )
- \[[`021345a724`](https://togithub.com/nodejs/node/commit/021345a724 )] - **doc**: add news issue for Diagnostics WG (Michael Dawson) [#​49306](https://togithub.com/nodejs/node/pull/49306 )
- \[[`f82347266b`](https://togithub.com/nodejs/node/commit/f82347266b )] - **doc**: clarify policy expectations (Rafael Gonzaga) [#​48947](https://togithub.com/nodejs/node/pull/48947 )
- \[[`73cfd9c895`](https://togithub.com/nodejs/node/commit/73cfd9c895 )] - **doc**: add print results for examples in `StringDecoder` (Jungku Lee) [#​49326](https://togithub.com/nodejs/node/pull/49326 )
- \[[`63ab591416`](https://togithub.com/nodejs/node/commit/63ab591416 )] - **doc**: update outdated reference to NIST SP 800-131A (Tobias Nießen) [#​49316](https://togithub.com/nodejs/node/pull/49316 )
- \[[`935dfe2afd`](https://togithub.com/nodejs/node/commit/935dfe2afd )] - **doc**: use `cjs` as block code's type in `MockTimers` (Deokjin Kim) [#​49309](https://togithub.com/nodejs/node/pull/49309 )
- \[[`7c0cd2fb87`](https://togithub.com/nodejs/node/commit/7c0cd2fb87 )] - **doc**: update `options.filter` description for `fs.cp` (Shubham Pandey) [#​49289](https://togithub.com/nodejs/node/pull/49289 )
- \[[`f72e79ea67`](https://togithub.com/nodejs/node/commit/f72e79ea67 )] - **doc**: add riscv64 to list of architectures (Stewart X Addison) [#​49284](https://togithub.com/nodejs/node/pull/49284 )
- \[[`d19c710064`](https://togithub.com/nodejs/node/commit/d19c710064 )] - **doc**: avoid "not currently recommended" (Tobias Nießen) [#​49300](https://togithub.com/nodejs/node/pull/49300 )
- \[[`ae656101c0`](https://togithub.com/nodejs/node/commit/ae656101c0 )] - **doc**: update module hooks docs (Geoffrey Booth) [#​49265](https://togithub.com/nodejs/node/pull/49265 )
- \[[`fefbdb92f2`](https://togithub.com/nodejs/node/commit/fefbdb92f2 )] - **doc**: modify param description for end(),write() in `StringDecoder` (Jungku Lee) [#​49285](https://togithub.com/nodejs/node/pull/49285 )
- \[[`59e66a1ebe`](https://togithub.com/nodejs/node/commit/59e66a1ebe )] - **doc**: use NODE_API_SUPPORTED_VERSION_MAX in release doc (Cheng Zhao) [#​49268](https://togithub.com/nodejs/node/pull/49268 )
- \[[`ac3b88449b`](https://togithub.com/nodejs/node/commit/ac3b88449b )] - **doc**: fix typo in `stream.finished` documentation (Antoine du Hamel) [#​49271](https://togithub.com/nodejs/node/pull/49271 )
- \[[`7428ebf6c3`](https://togithub.com/nodejs/node/commit/7428ebf6c3 )] - **doc**: update description for `percent_encode` sets in `WHATWG API` (Jungku Lee) [#​49258](https://togithub.com/nodejs/node/pull/49258 )
- \[[`bef900e56b`](https://togithub.com/nodejs/node/commit/bef900e56b )] - **doc**: move and rename loaders section (Geoffrey Booth) [#​49261](https://togithub.com/nodejs/node/pull/49261 )
- \[[`a22e0d9696`](https://togithub.com/nodejs/node/commit/a22e0d9696 )] - **doc**: clarify use of Uint8Array for n-api (Fedor Indutny) [#​48742](https://togithub.com/nodejs/node/pull/48742 )
- \[[`1704f24cb9`](https://togithub.com/nodejs/node/commit/1704f24cb9 )] - **doc**: add signature for `module.register` (Geoffrey Booth) [#​49251](https://togithub.com/nodejs/node/pull/49251 )
- \[[`5a363bb01b`](https://togithub.com/nodejs/node/commit/5a363bb01b )] - **doc**: caveat unavailability of `import.meta.resolve` in custom loaders (Jacob Smith) [#​49242](https://togithub.com/nodejs/node/pull/49242 )
- \[[`8101f2b259`](https://togithub.com/nodejs/node/commit/8101f2b259 )] - **doc**: use same name in the doc as in the code (Hyunjin Kim) [#​49216](https://togithub.com/nodejs/node/pull/49216 )
- \[[`edf278d60d`](https://togithub.com/nodejs/node/commit/edf278d60d )] - **doc**: add notable-change label mention to PR template (Rafael Gonzaga) [#​49188](https://togithub.com/nodejs/node/pull/49188 )
- \[[`3df2251a6a`](https://togithub.com/nodejs/node/commit/3df2251a6a )] - **doc**: add h1 summary to security release process (Rafael Gonzaga) [#​49112](https://togithub.com/nodejs/node/pull/49112 )
- \[[`9fcd99a744`](https://togithub.com/nodejs/node/commit/9fcd99a744 )] - **doc**: update to semver-minor releases by default (Rafael Gonzaga) [#​49175](https://togithub.com/nodejs/node/pull/49175 )
- \[[`777931f499`](https://togithub.com/nodejs/node/commit/777931f499 )] - **doc**: fix wording in napi_async_init (Tobias Nießen) [#​49180](https://togithub.com/nodejs/node/pull/49180 )
- \[[`f45c8e10c0`](https://togithub.com/nodejs/node/commit/f45c8e10c0 )] - **doc,test**: add known path resolution issue in permission model (Tobias Nießen) [#​49155](https://togithub.com/nodejs/node/pull/49155 )
- \[[`a6cfea3f74`](https://togithub.com/nodejs/node/commit/a6cfea3f74 )] - **esm**: align sync and async load implementations (Antoine du Hamel) [#​49152](https://togithub.com/nodejs/node/pull/49152 )
- \[[`9fac310b33`](https://togithub.com/nodejs/node/commit/9fac310b33 )] - **fs**: add the options param description in openAsBlob() (Yeseul Lee) [#​49308](https://togithub.com/nodejs/node/pull/49308 )
- \[[`92772a8175`](https://togithub.com/nodejs/node/commit/92772a8175 )] - **fs**: remove redundant code in readableWebStream() (Deokjin Kim) [#​49298](https://togithub.com/nodejs/node/pull/49298 )
- \[[`88ba79b083`](https://togithub.com/nodejs/node/commit/88ba79b083 )] - **fs**: make sure to write entire buffer (Robert Nagy) [#​49211](https://togithub.com/nodejs/node/pull/49211 )
- \[[`11c85ffa98`](https://togithub.com/nodejs/node/commit/11c85ffa98 )] - **(SEMVER-MINOR)** **lib**: add api to detect whether source-maps are enabled (翠 / green) [#​46391](https://togithub.com/nodejs/node/pull/46391 )
- \[[`c12711ebfe`](https://togithub.com/nodejs/node/commit/c12711ebfe )] - **lib**: implement WeakReference on top of JS WeakRef (Joyee Cheung) [#​49053](https://togithub.com/nodejs/node/pull/49053 )
- \[[`9a0891f88d`](https://togithub.com/nodejs/node/commit/9a0891f88d )] - **meta**: bump step-security/harden-runner from 2.5.0 to 2.5.1 (dependabot\[bot]) [#​49435](https://togithub.com/nodejs/node/pull/49435 )
- \[[`ae67f41ef1`](https://togithub.com/nodejs/node/commit/ae67f41ef1 )] - **meta**: bump actions/checkout from 3.5.3 to 3.6.0 (dependabot\[bot]) [#​49436](https://togithub.com/nodejs/node/pull/49436 )
- \[[`71b4411fb2`](https://togithub.com/nodejs/node/commit/71b4411fb2 )] - **meta**: bump actions/setup-node from 3.7.0 to 3.8.1 (dependabot\[bot]) [#​49434](https://togithub.com/nodejs/node/pull/49434 )
- \[[`83b7d3a395`](https://togithub.com/nodejs/node/commit/83b7d3a395 )] - **meta**: remove modules team from CODEOWNERS (Benjamin Gruenbaum) [#​49412](https://togithub.com/nodejs/node/pull/49412 )
- \[[`81ff68c45c`](https://togithub.com/nodejs/node/commit/81ff68c45c )] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#​49264](https://togithub.com/nodejs/node/pull/49264 )
- \[[`ab975233cc`](https://togithub.com/nodejs/node/commit/ab975233cc )] - **meta**: mention nodejs/tsc when changing GH templates (Rafael Gonzaga) [#​49189](https://togithub.com/nodejs/node/pull/49189 )
- \[[`ceaa5494de`](https://togithub.com/nodejs/node/commit/ceaa5494de )] - **meta**: add test/reporters to codeowners (Chemi Atlow) [#​49186](https://togithub.com/nodejs/node/pull/49186 )
- \[[`de0a51b7cf`](https://togithub.com/nodejs/node/commit/de0a51b7cf )] - **net**: improve performance of isIPv4 and isIPv6 (Uzlopak) [#​49568](https://togithub.com/nodejs/node/pull/49568 )
- \[[`8d0913bf95`](https://togithub.com/nodejs/node/commit/8d0913bf95 )] - **net**: use asserts in JS Socket Stream to catch races in future (Tim Perry) [#​49400](https://togithub.com/nodejs/node/pull/49400 )
- \[[`2486836a7d`](https://togithub.com/nodejs/node/commit/2486836a7d )] - **net**: fix crash due to simultaneous close/shutdown on JS Stream Sockets (Tim Perry) [#​49400](https://togithub.com/nodejs/node/pull/49400 )
- \[[`7a808340cd`](https://togithub.com/nodejs/node/commit/7a808340cd )] - **node-api**: fix compiler warning in node_api.h (Michael Graeb) [#​49103](https://togithub.com/nodejs/node/pull/49103 )
- \[[`30f26a99f4`](https://togithub.com/nodejs/node/commit/30f26a99f4 )] - **permission**: ensure to resolve path when calling mkdtemp (RafaelGSS) [nodejs-private/node-private#440 ](https://togithub.com/nodejs-private/node-private/pull/440 )
- \[[`5051c75a5b`](https://togithub.com/nodejs/node/commit/5051c75a5b )] - **policy**: fix path to URL conversion (Antoine du Hamel) [#​49133](https://togithub.com/nodejs/node/pull/49133 )
- \[[`173aed4757`](https://togithub.com/nodejs/node/commit/173aed4757 )] - **report**: fix recent coverity warning (Michael Dawson) [#​48954](https://togithub.com/nodejs/node/pull/48954 )
- \[[`d7ff78b442`](https://togithub.com/nodejs/node/commit/d7ff78b442 )] - **sea**: generate code cache with deserialized isolate (Joyee Cheung) [#​49226](https://togithub.com/nodejs/node/pull/49226 )
- \[[`022f1b70c1`](https://togithub.com/nodejs/node/commit/022f1b70c1 )] - **src**: support multiple `--env-file` declarations (Yagiz Nizipli) [#​49542](https://togithub.com/nodejs/node/pull/49542 )
- \[[`154b1c2115`](https://togithub.com/nodejs/node/commit/154b1c2115 )] - **src**: don't overwrite environment from .env file (Phil Nash) [#​49424](https://togithub.com/nodejs/node/pull/49424 )
- \[[`dc4de1c69b`](https://togithub.com/nodejs/node/commit/dc4de1c69b )] - **src**: modify code for empty string (pluris) [#​49336](https://togithub.com/nodejs/node/pull/49336 )
- \[[`701c46f967`](https://togithub.com/nodejs/node/commit/701c46f967 )] - **src**: remove unused PromiseWrap-related code (Joyee Cheung) [#​49335](https://togithub.com/nodejs/node/pull/49335 )
- \[[`4a094dc7af`](https://togithub.com/nodejs/node/commit/4a094dc7af )] - **src**: rename IsAnyByteSource to IsAnyBufferSource (Tobias Nießen) [#​49346](https://togithub.com/nodejs/node/pull/49346 )
- \[[`55d6649175`](https://togithub.com/nodejs/node/commit/55d6649175 )] - **src**: support snapshot deserialization in RAIIIsolate (Joyee Cheung) [#​49226](https://togithub.com/nodejs/node/pull/49226 )
- \[[`dc092864ef`](https://togithub.com/nodejs/node/commit/dc092864ef )] - **src**: remove unused function `GetName()` in node_perf (Jungku Lee) [#​49244](https://togithub.com/nodejs/node/pull/49244 )
- \[[`f2552a410e`](https://togithub.com/nodejs/node/commit/f2552a410e )] - **src**: use ARES_SUCCESS instead of 0 (Jungku Lee) [#​49048](https://togithub.com/nodejs/node/pull/49048 )
- \[[`4a9ae31519`](https://togithub.com/nodejs/node/commit/4a9ae31519 )] - **src**: add a condition if the argument of `DomainToUnicode` is empty (Jungku Lee) [#​49097](https://togithub.com/nodejs/node/pull/49097 )
- \[[`f460362cdf`](https://togithub.com/nodejs/node/commit/f460362cdf )] - **src**: remove C++ WeakReference implementation (Joyee Cheung) [#​49053](https://togithub.com/nodejs/node/pull/49053 )
- \[[`2a35383b3e`](https://togithub.com/nodejs/node/commit/2a35383b3e )] - **src**: use per-realm GetBindingData() wherever applicable (Joyee Cheung) [#​49007](https://togithub.com/nodejs/node/pull/49007 )
- \[[`184bbddcf5`](https://togithub.com/nodejs/node/commit/184bbddcf5 )] - **src**: add per-realm GetBindingData() method (Joyee Cheung) [#​49007](https://togithub.com/nodejs/node/pull/49007 )
- \[[`e9946885f9`](https://togithub.com/nodejs/node/commit/e9946885f9 )] - **src**: serialize both BaseObject slots (Joyee Cheung) [#​48996](https://togithub.com/nodejs/node/pull/48996 )
- \[[`ec51e25ed7`](https://togithub.com/nodejs/node/commit/ec51e25ed7 )] - **src,permission**: add multiple allow-fs-\* flags (Carlos Espa) [#​49047](https://togithub.com/nodejs/node/pull/49047 )
- \[[`8aac95de4b`](https://togithub.com/nodejs/node/commit/8aac95de4b )] - **stream**: improve tee perf by reduce `ReflectConstruct` usages (Raz Luvaton) [#​49546](https://togithub.com/nodejs/node/pull/49546 )
- \[[`0eea7fd8fb`](https://togithub.com/nodejs/node/commit/0eea7fd8fb )] - **stream**: use Buffer.from when constructor is a Buffer (Matthew Aitken) [#​49250](https://togithub.com/nodejs/node/pull/49250 )
- \[[`b961d9bd52`](https://togithub.com/nodejs/node/commit/b961d9bd52 )] - **stream**: add `highWaterMark` for the map operator (Raz Luvaton) [#​49249](https://togithub.com/nodejs/node/pull/49249 )
- \[[`ca1384166d`](https://togithub.com/nodejs/node/commit/ca1384166d )] - **test**: fix warning for comment in embedtest (Jungku Lee) [#​49416](https://togithub.com/nodejs/node/pull/49416 )
- \[[`2a35782809`](https://togithub.com/nodejs/node/commit/2a35782809 )] - **test**: simplify test-crypto-dh-group-setters (Tobias Nießen) [#​49404](https://togithub.com/nodejs/node/pull/49404 )
- \[[`6740f3c209`](https://togithub.com/nodejs/node/commit/6740f3c209 )] - **test**: verify dynamic import call with absolute path strings (Chengzhong Wu) [#​49275](https://togithub.com/nodejs/node/pull/49275 )
- \[[`6ed47bd8fb`](https://togithub.com/nodejs/node/commit/6ed47bd8fb )] - **test**: reduce length in crypto keygen tests (Joyee Cheung) [#​49221](https://togithub.com/nodejs/node/pull/49221 )
- \[[`4faa30c553`](https://togithub.com/nodejs/node/commit/4faa30c553 )] - **test**: split JWK async elliptic curve keygen tests (Joyee Cheung) [#​49221](https://togithub.com/nodejs/node/pull/49221 )
- \[[`e04a2603d8`](https://togithub.com/
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuMjAwLjAiLCJ0YXJnZXRCcmFuY2giOiJjYW5hcnkifQ==-->
2024-02-23 09:03:57 +00:00
DarkSky
d9fee81b10
fix(server): handle unexpected error from storage provider ( #5888 )
...

handle unexpected error in workspace usage calc
2024-02-23 08:53:32 +00:00
LongYinan
f003fa0968
chore: bump up all non-major dependencies ( #5858 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@electron-forge/maker-base](https://togithub.com/electron/forge ) | [`7.2.0` -> `7.3.0`](https://renovatebot.com/diffs/npm/@electron-forge%2fmaker-base/7.2.0/7.3.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.40` -> `3.0.0-alpha.41`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.40/3.0.0-alpha.41 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>electron/forge (@​electron-forge/maker-base)</summary>
### [`v7.3.0`](https://togithub.com/electron/forge/releases/tag/v7.3.0 )
[Compare Source](https://togithub.com/electron/forge/compare/v7.2.0...v7.3.0 )
##### What's Changed
##### Features
- feat(plugin-vite): upgrade to vite@5 by [@​caoxiemeihao](https://togithub.com/caoxiemeihao ) in [https://github.com/electron/forge/pull/3468 ](https://togithub.com/electron/forge/pull/3468 )
- feat: allow a custom out dir from forge config by [@​lutzroeder](https://togithub.com/lutzroeder ) in [https://github.com/electron/forge/pull/3458 ](https://togithub.com/electron/forge/pull/3458 )
- feat(template-vite): patch types by [@​caoxiemeihao](https://togithub.com/caoxiemeihao ) in [https://github.com/electron/forge/pull/3494 ](https://togithub.com/electron/forge/pull/3494 )
- feat: adds default fuses to templates by [@​yangannyx](https://togithub.com/yangannyx ) in [https://github.com/electron/forge/pull/3480 ](https://togithub.com/electron/forge/pull/3480 )
- feat(publisher-github): option to automatically generate release notes by [@​dsanders11](https://togithub.com/dsanders11 ) in [https://github.com/electron/forge/pull/3484 ](https://togithub.com/electron/forge/pull/3484 )
##### Fixes
- fix(electron-release-publisher): change api/version endpoint in PublisherERS to use versions/sorted by [@​kgallagher52](https://togithub.com/kgallagher52 ) in [https://github.com/electron/forge/pull/3431 ](https://togithub.com/electron/forge/pull/3431 )
- fix(core): packageJSON won't be found when programmatic usage instead of CLI by [@​ianho](https://togithub.com/ianho ) in [https://github.com/electron/forge/pull/3455 ](https://togithub.com/electron/forge/pull/3455 )
- fix: actually depend on preceeding groups by [@​MarshallOfSound](https://togithub.com/MarshallOfSound ) in [https://github.com/electron/forge/pull/3438 ](https://togithub.com/electron/forge/pull/3438 )
- fix: normalize windows version with build part correctly by [@​rickymohk](https://togithub.com/rickymohk ) in [https://github.com/electron/forge/pull/3461 ](https://togithub.com/electron/forge/pull/3461 )
- fix: .vscode settings.json changes on open by [@​lutzroeder](https://togithub.com/lutzroeder ) in [https://github.com/electron/forge/pull/3460 ](https://togithub.com/electron/forge/pull/3460 )
- fix(plugin-vite): package volume size to large by [@​caoxiemeihao](https://togithub.com/caoxiemeihao ) in [https://github.com/electron/forge/pull/3336 ](https://togithub.com/electron/forge/pull/3336 )
##### Performance
- refactor: only run webpack once for multi-arch packages by [@​MarshallOfSound](https://togithub.com/MarshallOfSound ) in [https://github.com/electron/forge/pull/3437 ](https://togithub.com/electron/forge/pull/3437 )
##### Other Changes
- chore: update Packager by [@​erikian](https://togithub.com/erikian ) in [https://github.com/electron/forge/pull/3419 ](https://togithub.com/electron/forge/pull/3419 )
- chore: bump electronjs/node to 2.2.0 (main) by [@​electron-roller](https://togithub.com/electron-roller ) in [https://github.com/electron/forge/pull/3469 ](https://togithub.com/electron/forge/pull/3469 )
- chore(plugins/electronegativity): correct some config types by [@​Dogdriip](https://togithub.com/Dogdriip ) in [https://github.com/electron/forge/pull/3482 ](https://togithub.com/electron/forge/pull/3482 )
- chore: use Dependabot to update GitHub Actions deps by [@​dsanders11](https://togithub.com/dsanders11 ) in [https://github.com/electron/forge/pull/3487 ](https://togithub.com/electron/forge/pull/3487 )
- chore: bump electronjs/node to 2.2.1 (main) by [@​electron-roller](https://togithub.com/electron-roller ) in [https://github.com/electron/forge/pull/3496 ](https://togithub.com/electron/forge/pull/3496 )
##### New Contributors
- [@​kgallagher52](https://togithub.com/kgallagher52 ) made their first contribution in [https://github.com/electron/forge/pull/3431 ](https://togithub.com/electron/forge/pull/3431 )
- [@​rickymohk](https://togithub.com/rickymohk ) made their first contribution in [https://github.com/electron/forge/pull/3461 ](https://togithub.com/electron/forge/pull/3461 )
- [@​lutzroeder](https://togithub.com/lutzroeder ) made their first contribution in [https://github.com/electron/forge/pull/3460 ](https://togithub.com/electron/forge/pull/3460 )
- [@​ianho](https://togithub.com/ianho ) made their first contribution in [https://github.com/electron/forge/pull/3455 ](https://togithub.com/electron/forge/pull/3455 )
- [@​yangannyx](https://togithub.com/yangannyx ) made their first contribution in [https://github.com/electron/forge/pull/3480 ](https://togithub.com/electron/forge/pull/3480 )
- [@​Dogdriip](https://togithub.com/Dogdriip ) made their first contribution in [https://github.com/electron/forge/pull/3482 ](https://togithub.com/electron/forge/pull/3482 )
**Full Changelog**: https://github.com/electron/forge/compare/v7.2.0...v7.3.0
</details>
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.41`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.41 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.40...@napi-rs/cli@3.0.0-alpha.41 )
##### What's Changed
- fix(cli): fallback to wasm32 if platform is not support by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1967 ](https://togithub.com/napi-rs/napi-rs/pull/1967 )
- fix(cli): allow more platform & arch fallback to wasm by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1969 ](https://togithub.com/napi-rs/napi-rs/pull/1969 )
**Full Changelog**: https://github.com/napi-rs/napi-rs/compare/napi@2.15.3...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.41
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-23 08:39:35 +00:00
JimmFly
815ddd3778
chore: replace pricing plan link ( #5886 )
...
close TOV-609
2024-02-23 08:28:24 +00:00
Whitewater
9692a120a0
chore: filter out edgeless content from page preview ( #5607 )
...
Co-authored-by: EYHN <cneyhn@gmail.com >
2024-02-23 08:16:26 +00:00
Whitewater
228b0d789d
feat: add shared page filter to all pages ( #5540 )
...
Co-authored-by: EYHN <cneyhn@gmail.com >
2024-02-23 16:07:13 +08:00
Peng Xiao
745110c799
fix: page info ui issue on journal page ( #5887 )
2024-02-23 07:55:44 +00:00
EYHN
3f7f78c8f4
fix(core): fix app boot speed ( #5885 )
2024-02-23 07:07:03 +00:00
Peng Xiao
7ec3f7a042
feat(core): add shortcut for openning settings ( #5883 )
...
fix https://github.com/toeverything/AFFiNE/issues/5881
2024-02-23 06:29:49 +00:00
Peng Xiao
bef72029a0
fix: keyboard shortcut style in cmdk ( #5882 )
...

2024-02-23 06:29:46 +00:00
JimmFly
4ea4a2d25f
feat(core): support create cloud workspace ( #5771 )
...
close TOV-475
has not logged:
https://github.com/toeverything/AFFiNE/assets/102217452/b9aa2806-7dbd-4235-895d-5b27effb5831
has logged :
https://github.com/toeverything/AFFiNE/assets/102217452/259a1c35-c6ab-4a52-9e03-4438ca64e620
client has not logged:
https://github.com/toeverything/AFFiNE/assets/102217452/af6ef528-6fb8-4a27-842f-00c9669afcb2
2024-02-23 06:18:25 +00:00
Peng Xiao
c22216c71a
fix: fix image preview modal story ( #5879 )
2024-02-23 06:07:46 +00:00
Peng Xiao
0bbecec2fb
fix(electron): add back bundle test for appimage ( #5876 )
...
In an attempt to fix AppImage build test, I incorrectly removed the script.
This PR add it back.
2024-02-23 04:36:15 +00:00
Peng Xiao
8b1d7219be
chore(electron): bump @pengx17/electron-forge-maker-appimage to fix appimage build ( #5875 )
...
It looks like I did not publish the correct `@pengx17/electron-forge-maker-appimage`, which will result in failed build for AppImage
2024-02-23 04:36:06 +00:00
LongYinan
f58cb1085e
chore: bump up chromatic version to v11 ( #5877 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [chromatic](https://www.chromatic.com ) ([source](https://togithub.com/chromaui/chromatic-cli )) | [`^10.0.0` -> `^11.0.0`](https://renovatebot.com/diffs/npm/chromatic/10.2.0/11.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>chromaui/chromatic-cli (chromatic)</summary>
### [`v11.0.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1100-Thu-Feb-22-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.9.6...v11.0.0 )
##### 💥 Breaking Change
- Add new invalid sb base dir error message and validator function [#​921](https://togithub.com/chromaui/chromatic-cli/pull/921 ) ([@​andrewortwein](https://togithub.com/andrewortwein ) [@​ethriel3695](https://togithub.com/ethriel3695 ))
##### Authors: 2
- Andrew Ortwein ([@​andrewortwein](https://togithub.com/andrewortwein ))
- Reuben Ellis ([@​ethriel3695](https://togithub.com/ethriel3695 ))
***
### [`v10.9.6`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1096-Fri-Feb-16-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.9.5...v10.9.6 )
##### 🐛 Bug Fix
- Avoid build verify timeout when waiting for upgrade builds [#​922](https://togithub.com/chromaui/chromatic-cli/pull/922 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### Authors: 1
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
***
### [`v10.9.5`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1095-Wed-Feb-14-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.9.4...v10.9.5 )
##### 🐛 Bug Fix
- Fix Storybook published messaging [#​920](https://togithub.com/chromaui/chromatic-cli/pull/920 ) ([@​tevanoff](https://togithub.com/tevanoff ))
##### Authors: 1
- Todd Evanoff ([@​tevanoff](https://togithub.com/tevanoff ))
***
### [`v10.9.4`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1094-Mon-Feb-12-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.9.3...v10.9.4 )
##### 🐛 Bug Fix
- Allow `traceChanged` in Chromatic config spec [#​916](https://togithub.com/chromaui/chromatic-cli/pull/916 ) ([@​tevanoff](https://togithub.com/tevanoff ))
##### Authors: 1
- Todd Evanoff ([@​tevanoff](https://togithub.com/tevanoff ))
***
### [`v10.9.3`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1093-Fri-Feb-09-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.9.2...v10.9.3 )
##### 🐛 Bug Fix
- clean up debug log as it's too much noise [#​919](https://togithub.com/chromaui/chromatic-cli/pull/919 ) ([@​ethriel3695](https://togithub.com/ethriel3695 ))
##### Authors: 1
- Reuben Ellis ([@​ethriel3695](https://togithub.com/ethriel3695 ))
***
### [`v10.9.2`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1092-Thu-Feb-08-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.9.1...v10.9.2 )
##### 🐛 Bug Fix
- Directly execute build-archive-storybook if we can't resolve it [#​917](https://togithub.com/chromaui/chromatic-cli/pull/917 ) ([@​tmeasday](https://togithub.com/tmeasday ))
##### Authors: 1
- Tom Coleman ([@​tmeasday](https://togithub.com/tmeasday ))
***
### [`v10.9.1`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1091-Thu-Feb-08-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.9.0...v10.9.1 )
##### 🐛 Bug Fix
- Add missing `fileHashing` option to GitHub Action [#​918](https://togithub.com/chromaui/chromatic-cli/pull/918 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### Authors: 1
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
***
### [`v10.9.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1090-Wed-Feb-07-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.8.0...v10.9.0 )
##### 🚀 Enhancement
- Be smarter about comparing lock files [#​912](https://togithub.com/chromaui/chromatic-cli/pull/912 ) ([@​ghengeveld](https://togithub.com/ghengeveld ) [@​tmeasday](https://togithub.com/tmeasday ))
##### Authors: 2
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Tom Coleman ([@​tmeasday](https://togithub.com/tmeasday ))
***
### [`v10.8.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1080-Tue-Feb-06-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.7.1...v10.8.0 )
##### 🚀 Enhancement
- Expose `repositoryRootDir`, `configFile` and fix `diagnosticsFile` [#​913](https://togithub.com/chromaui/chromatic-cli/pull/913 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Support `env`, `sessionId` and `log` options via Node API [#​897](https://togithub.com/chromaui/chromatic-cli/pull/897 ) ([@​work933k](https://togithub.com/work933k ))
- Add timestamps to debug and file logging [#​907](https://togithub.com/chromaui/chromatic-cli/pull/907 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### Authors: 2
- [@​work933k](https://togithub.com/work933k )
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
***
### [`v10.7.1`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1071-Fri-Feb-02-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.7.0...v10.7.1 )
##### 🐛 Bug Fix
- Add Fallback getGitInfo if we cannot find the origin URL [#​910](https://togithub.com/chromaui/chromatic-cli/pull/910 ) ([@​thafryer](https://togithub.com/thafryer ))
##### Authors: 1
- Jarel Fryer ([@​thafryer](https://togithub.com/thafryer ))
***
### [`v10.7.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1070-Fri-Feb-02-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.6.1...v10.7.0 )
##### 🚀 Enhancement
- Rename E2E peer dependencies [#​909](https://togithub.com/chromaui/chromatic-cli/pull/909 ) ([@​tevanoff](https://togithub.com/tevanoff ))
##### Authors: 1
- Todd Evanoff ([@​tevanoff](https://togithub.com/tevanoff ))
***
### [`v10.6.1`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1061-Fri-Jan-26-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.6.0...v10.6.1 )
##### 🐛 Bug Fix
- Remove after-release script [#​906](https://togithub.com/chromaui/chromatic-cli/pull/906 ) ([@​skitterm](https://togithub.com/skitterm ))
##### Authors: 1
- Steven Kitterman ([@​skitterm](https://togithub.com/skitterm ))
***
### [`v10.6.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1060-Fri-Jan-26-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.5.2...v10.6.0 )
##### 🚀 Enhancement
- CLI should throw error when using TurboSnap but missing a stats file. [#​899](https://togithub.com/chromaui/chromatic-cli/pull/899 ) ([@​thafryer](https://togithub.com/thafryer ))
##### Authors: 1
- Jarel Fryer ([@​thafryer](https://togithub.com/thafryer ))
***
### [`v10.5.2`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1052-Thu-Jan-25-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.5.1...v10.5.2 )
##### 🐛 Bug Fix
- Remove latest from the chromatic package in Init script [#​902](https://togithub.com/chromaui/chromatic-cli/pull/902 ) ([@​thafryer](https://togithub.com/thafryer ))
##### Authors: 1
- Jarel Fryer ([@​thafryer](https://togithub.com/thafryer ))
***
### [`v10.5.1`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1051-Thu-Jan-25-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.5.0...v10.5.1 )
##### 🐛 Bug Fix
- Add "package.json" to exports map [#​900](https://togithub.com/chromaui/chromatic-cli/pull/900 ) ([@​yannbf](https://togithub.com/yannbf ))
- Improve logging around upload errors [#​894](https://togithub.com/chromaui/chromatic-cli/pull/894 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Don't skip uploading of empty files, it works now [#​901](https://togithub.com/chromaui/chromatic-cli/pull/901 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### Authors: 2
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Yann Braga ([@​yannbf](https://togithub.com/yannbf ))
***
### [`v10.5.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1050-Wed-Jan-24-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.4.0...v10.5.0 )
##### 🚀 Enhancement
- Add `--playwright` & `--cypress` flags [#​882](https://togithub.com/chromaui/chromatic-cli/pull/882 ) ([@​tmeasday](https://togithub.com/tmeasday ))
##### Authors: 1
- Tom Coleman ([@​tmeasday](https://togithub.com/tmeasday ))
***
### [`v10.4.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1040-Tue-Jan-23-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.3.1...v10.4.0 )
##### 🚀 Enhancement
- Add new Init command for Project Setup [#​880](https://togithub.com/chromaui/chromatic-cli/pull/880 ) ([@​thafryer](https://togithub.com/thafryer ))
##### Authors: 1
- Jarel Fryer ([@​thafryer](https://togithub.com/thafryer ))
***
### [`v10.3.1`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1031-Wed-Jan-17-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.3.0...v10.3.1 )
##### 🐛 Bug Fix
- Fix potential zip upload error when deduping files on a very large Storybook [#​892](https://togithub.com/chromaui/chromatic-cli/pull/892 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### Authors: 1
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
***
### [`v10.3.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1030-Tue-Jan-16-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.2.2...v10.3.0 )
##### 🚀 Enhancement
- Add missing `skip` option to configuration schema [#​890](https://togithub.com/chromaui/chromatic-cli/pull/890 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Detect merge queue branch and retrieve real branch name from pull request [#​884](https://togithub.com/chromaui/chromatic-cli/pull/884 ) ([@​JonathanKolnik](https://togithub.com/JonathanKolnik ) [@​ghengeveld](https://togithub.com/ghengeveld ))
- Deduplicate files to be uploaded using file hashing [#​875](https://togithub.com/chromaui/chromatic-cli/pull/875 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Replace upload mechanism to use a batched mutation with a new API [#​888](https://togithub.com/chromaui/chromatic-cli/pull/888 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### 🐛 Bug Fix
- Retrieve `sentinelUrls` from `uploadBuild` and wait for all of them before finishing upload task [#​878](https://togithub.com/chromaui/chromatic-cli/pull/878 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### Authors: 2
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Jono Kolnik ([@​JonathanKolnik](https://togithub.com/JonathanKolnik ))
***
### [`v10.2.2`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1022-Fri-Jan-12-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.2.1...v10.2.2 )
##### 🐛 Bug Fix
- Add configFile option to GitHub Action [#​885](https://togithub.com/chromaui/chromatic-cli/pull/885 ) ([@​wisestuart](https://togithub.com/wisestuart ))
##### Authors: 1
- Stuart Hammar ([@​wisestuart](https://togithub.com/wisestuart ))
***
### [`v10.2.1`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1021-Wed-Jan-10-2024 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.2.0...v10.2.1 )
##### 🐛 Bug Fix
- Revert "Replace `getUploadUrls` with `uploadBuild` mutation" [#​883](https://togithub.com/chromaui/chromatic-cli/pull/883 ) ([@​JonathanKolnik](https://togithub.com/JonathanKolnik ))
- Run publish-action script as afterShipIt hook [#​877](https://togithub.com/chromaui/chromatic-cli/pull/877 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### Authors: 2
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Jono Kolnik ([@​JonathanKolnik](https://togithub.com/JonathanKolnik ))
***
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-23 04:19:38 +00:00
LongYinan
ca2fc86902
ci: add AppImage bundle step to electron test ( #5871 )
...
Just ensure nothing breaks the AppImage bundle
2024-02-22 14:56:25 +00:00
LongYinan
a84460cc3a
chore: remove swc plugin because it is too outdated ( #5870 )
2024-02-22 11:08:30 +00:00
LongYinan
c88998678e
feat: add paragraph when clicking end area ( #5869 )
...
Close [TOV-442](https://linear.app/affine-design/issue/TOV-442/结尾是非编辑yuan素时,无法在最底部添加block )
2024-02-22 09:54:17 +00:00
Peng Xiao
2df8f29b64
refactor(core): use fractional indexing for sorting ( #5809 )
...
use https://github.com/rocicorp/fractional-indexing to enable better sorting logic for crdt app
2024-02-22 09:38:00 +00:00
Peng Xiao
372b4da884
test(core): add tests for page info ui ( #5769 )
...

2024-02-22 09:37:55 +00:00
Peng Xiao
bb8e601f82
feat(core): tags inline editor ( #5748 )
...
tags inline editor and some refactor
<div class='graphite__hidden'>
<div>🎥 Video uploaded on Graphite:</div>
<a href="https://app.graphite.dev/media/video/T2klNLEk0wxLh4NRDzhk/439da1e3-30a9-462a-b7b4-c8e7c3b5ef17.mp4 ">
<img src="https://app.graphite.dev/api/v1/graphite/video/thumbnail/T2klNLEk0wxLh4NRDzhk/439da1e3-30a9-462a-b7b4-c8e7c3b5ef17.mp4 ">
</a>
</div>
<video src="https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/T2klNLEk0wxLh4NRDzhk/439da1e3-30a9-462a-b7b4-c8e7c3b5ef17.mp4 ">Kapture 2024-01-31 at 23.29.11.mp4</video>
fix AFF-467
fix AFF-468
fix AFF-472
fix AFF-466
2024-02-22 09:37:50 +00:00
Peng Xiao
546d96c5c9
feat(core): workspace properties setting ( #5739 )
...
the property settings in workspace settings
2024-02-22 09:37:46 +00:00
Ayush Agrawal
55b8082d3a
chore: bump blocksuite ( #5868 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2024-02-22 17:11:10 +08:00
LongYinan
35842ae1c5
fix(core): fix 404 after signout ( #5866 )
...
CherryPick https://github.com/toeverything/AFFiNE/pull/5865
2024-02-22 08:30:41 +00:00
Cats Juice
390fb90a8b
feat(core): ignore empty journal for global useBlockSuitePageMeta hook ( #5715 )
...
[TOV-494](https://linear.app/affine-design/issue/TOV-494/空-journal-的隐藏处理 )
2024-02-22 08:09:33 +00:00
EYHN
0fff5588e6
fix(core): disable sidebar user select ( #5862 )
...
close #5846
2024-02-22 07:58:14 +00:00
liuyi
4d421a324f
refactor(server): import prisma from @prisma/client ( #5863 )
2024-02-22 07:46:57 +00:00
Umar Faiz
f2c5786dd0
fix(core): the pitch zooming function incorrectly zooms the toolbar ( #5456 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2024-02-22 15:04:33 +08:00
Peng Xiao
58ea2fbc4c
fix(core): editor container grow to full height ( #5743 )
2024-02-22 06:20:40 +00:00
Peng Xiao
a120eb90ab
fix(core): journal display on cmdk ( #5723 )
...

2024-02-22 06:09:18 +00:00
Peng Xiao
d97304e9eb
feat(core): page info ui ( #5729 )
...
this PR includes the main table view in the page detail page
2024-02-22 05:58:15 +00:00
L-Sun
46cc0810e9
test(server): incorrect prisma overriding ( #5857 )
2024-02-22 11:55:37 +08:00
Ayush Agrawal
a01f0d86a5
fix: css style should not apply on nested editor's viewport ( #5859 )
2024-02-22 10:46:16 +08:00
Cats Juice
67dffc2a5a
feat(component): remove react-datepicker ( #5681 )
2024-02-21 13:09:44 +00:00
JimmFly
8d746f17de
chore: remove preloading pages ( #5854 )
2024-02-21 12:57:18 +00:00
JimmFly
c353b0d30f
chore: replace ambiguous "page" with "doc" ( #5761 )
...
close TOV-532
2024-02-21 12:47:17 +00:00
liuyi
85be45a79c
fix(core): window.open to a new origin will be blocked by browser ( #5856 )
2024-02-21 12:35:25 +00:00
LongYinan
4a7f0a6142
chore: bump up all non-major dependencies ( #5793 )
...
[](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.504.0` -> `3.515.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.504.0/3.515.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@graphql-codegen/cli](https://togithub.com/dotansimha/graphql-code-generator ) ([source](https://togithub.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli )) | [`5.0.0` -> `5.0.2`](https://renovatebot.com/diffs/npm/@graphql-codegen%2fcli/5.0.0/5.0.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.36` -> `3.0.0-alpha.40`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.36/3.0.0-alpha.40 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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.2.2` -> `1.3.1`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-istanbul/1.2.2/1.3.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@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.2.2` -> `1.3.1`](https://renovatebot.com/diffs/npm/@vitest%2fui/1.2.2/1.3.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [eslint-plugin-sonarjs](https://togithub.com/SonarSource/eslint-plugin-sonarjs ) | [`^0.23.0` -> `^0.24.0`](https://renovatebot.com/diffs/npm/eslint-plugin-sonarjs/0.23.0/0.24.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [jotai-devtools](https://togithub.com/jotaijs/jotai-devtools ) | [`^0.7.0` -> `^0.8.0`](https://renovatebot.com/diffs/npm/jotai-devtools/0.7.0/0.8.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [swr](https://swr.vercel.app ) ([source](https://togithub.com/vercel/swr )) | [`2.2.4` -> `2.2.5`](https://renovatebot.com/diffs/npm/swr/2.2.4/2.2.5 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [vite-plugin-dts](https://togithub.com/qmhc/vite-plugin-dts ) | [`3.7.2` -> `3.7.3`](https://renovatebot.com/diffs/npm/vite-plugin-dts/3.7.2/3.7.3 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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.2.2` -> `1.3.1`](https://renovatebot.com/diffs/npm/vitest/1.2.2/1.3.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.515.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35150-2024-02-15 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.514.0...v3.515.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.514.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35140-2024-02-14 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.513.0...v3.514.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.513.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35130-2024-02-13 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.511.0...v3.513.0 )
##### Features
- **experimentalIdentityAndAuth:** release phase for services without customizations ([#​5787](https://togithub.com/aws/aws-sdk-js-v3/issues/5787 )) ([4004ff6](4004ff68a8 ))
### [`v3.511.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35110-2024-02-09 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.509.0...v3.511.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.509.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35090-2024-02-07 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.507.0...v3.509.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.507.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35070-2024-02-05 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.504.0...v3.507.0 )
##### Features
- unified error dispatcher in protocols ([#​5756](https://togithub.com/aws/aws-sdk-js-v3/issues/5756 )) ([0872087](0872087ef5 ))
</details>
<details>
<summary>dotansimha/graphql-code-generator (@​graphql-codegen/cli)</summary>
### [`v5.0.2`](https://togithub.com/dotansimha/graphql-code-generator/blob/HEAD/packages/graphql-codegen-cli/CHANGELOG.md#502 )
[Compare Source](86c82177b0 ...@graphql-codegen/cli@5.0.2)
##### Patch Changes
- [#​9813](https://togithub.com/dotansimha/graphql-code-generator/pull/9813 ) [`4e69568`](4e6956899c ) Thanks [@​saihaj](https://togithub.com/saihaj )! - bumping for a release
- Updated dependencies \[[`4e69568`](4e6956899c )]:
- [@​graphql-codegen/client-preset](https://togithub.com/graphql-codegen/client-preset )[@​4](https://togithub.com/4 ).2.2
- [@​graphql-codegen/core](https://togithub.com/graphql-codegen/core )[@​4](https://togithub.com/4 ).0.2
- [@​graphql-codegen/plugin-helpers](https://togithub.com/graphql-codegen/plugin-helpers )[@​5](https://togithub.com/5 ).0.3
### [`v5.0.1`](https://togithub.com/dotansimha/graphql-code-generator/blob/HEAD/packages/graphql-codegen-cli/CHANGELOG.md#501 )
[Compare Source](https://togithub.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/cli@5.0.0...86c82177b0b9ab1853f6c4e6fba17218dafa3d7d )
##### Patch Changes
- [#​9811](https://togithub.com/dotansimha/graphql-code-generator/pull/9811 ) [`d8364e045`](d8364e045a ) Thanks [@​saihaj](https://togithub.com/saihaj )! - dependencies updates:
- Added dependency [`@graphql-codegen/client-preset@^4.1.0` ↗︎](https://www.npmjs.com/package/@​graphql-codegen/client-preset/v/4.1.0 ) (to `dependencies`)
- [#​9811](https://togithub.com/dotansimha/graphql-code-generator/pull/9811 ) [`d8364e045`](d8364e045a ) Thanks [@​saihaj](https://togithub.com/saihaj )! - ignore events in `.git` directory
- [#​9811](https://togithub.com/dotansimha/graphql-code-generator/pull/9811 ) [`d8364e045`](d8364e045a ) Thanks [@​saihaj](https://togithub.com/saihaj )! - Surface error occurring during import of [@​parcel/watcher](https://togithub.com/parcel/watcher )
- [#​9811](https://togithub.com/dotansimha/graphql-code-generator/pull/9811 ) [`d8364e045`](d8364e045a ) Thanks [@​saihaj](https://togithub.com/saihaj )! - Include [@​graphql-codegen/client-preset](https://togithub.com/graphql-codegen/client-preset ) in [@​graphql-codegen/cli](https://togithub.com/graphql-codegen/cli ) by default
- [#​9811](https://togithub.com/dotansimha/graphql-code-generator/pull/9811 ) [`d8364e045`](d8364e045a ) Thanks [@​saihaj](https://togithub.com/saihaj )! - fix watcher unable to find highest common directory on Windows
- Updated dependencies \[[`d8364e045`](d8364e045a ), [`d8364e045`](d8364e045a ), [`d8364e045`](d8364e045a ), [`d8364e045`](d8364e045a )]:
- [@​graphql-codegen/client-preset](https://togithub.com/graphql-codegen/client-preset )[@​4](https://togithub.com/4 ).2.0
- [@​graphql-codegen/core](https://togithub.com/graphql-codegen/core )[@​4](https://togithub.com/4 ).0.1
- [@​graphql-codegen/plugin-helpers](https://togithub.com/graphql-codegen/plugin-helpers )[@​5](https://togithub.com/5 ).0.2
</details>
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.40`](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.39...@napi-rs/cli@3.0.0-alpha.40 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.39...@napi-rs/cli@3.0.0-alpha.40 )
### [`v3.0.0-alpha.39`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.39 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.38...@napi-rs/cli@3.0.0-alpha.39 )
#### What's Changed
- chore(deps): update typescript-eslint monorepo to v7 (major) by [@​renovate](https://togithub.com/renovate ) in [https://github.com/napi-rs/napi-rs/pull/1947 ](https://togithub.com/napi-rs/napi-rs/pull/1947 )
- Ensure cwd and outputDir are used for finding files by [@​andymac4182](https://togithub.com/andymac4182 ) in [https://github.com/napi-rs/napi-rs/pull/1949 ](https://togithub.com/napi-rs/napi-rs/pull/1949 )
- fix(cli): set cxxflags while WASI_SDK_PATH exists by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1955 ](https://togithub.com/napi-rs/napi-rs/pull/1955 )
- feat(cli,build): support setjmp.h by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1958 ](https://togithub.com/napi-rs/napi-rs/pull/1958 )
#### New Contributors
- [@​andymac4182](https://togithub.com/andymac4182 ) made their first contribution in [https://github.com/napi-rs/napi-rs/pull/1949 ](https://togithub.com/napi-rs/napi-rs/pull/1949 )
**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.38...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.39
### [`v3.0.0-alpha.38`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.38 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.37...@napi-rs/cli@3.0.0-alpha.38 )
##### What's Changed
- feat(cli): respect WASI_SDK_PATH env by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1946 ](https://togithub.com/napi-rs/napi-rs/pull/1946 )
**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.37...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.38
### [`v3.0.0-alpha.37`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.37 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.36...@napi-rs/cli@3.0.0-alpha.37 )
##### What's Changed
- fix(cli): setup cxx env while using napi-cross by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1942 ](https://togithub.com/napi-rs/napi-rs/pull/1942 )
- fix(cli): log more wasi load errors by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1943 ](https://togithub.com/napi-rs/napi-rs/pull/1943 )
**Full Changelog**: https://github.com/napi-rs/napi-rs/compare/napi-derive@2.15.1...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.37
</details>
<details>
<summary>vitest-dev/vitest (@​vitest/coverage-istanbul)</summary>
### [`v1.3.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.3.1 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.3.0...v1.3.1 )
##### 🚀 Features
- **vitest**: Expose parseCLI method - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5248 ](https://togithub.com/vitest-dev/vitest/issues/5248 ) [<samp>(c793a)</samp>](https://togithub.com/vitest-dev/vitest/commit/c793a136 )
- This feature is not affected by SemVer because it is part of an [experimental API](https://vitest.dev/advanced/api.html ).
##### 🐞 Bug Fixes
- Add task tests iteratively - by [@​DerYeger](https://togithub.com/DerYeger ) in [https://github.com/vitest-dev/vitest/issues/5235 ](https://togithub.com/vitest-dev/vitest/issues/5235 ) [<samp>(38155)</samp>](https://togithub.com/vitest-dev/vitest/commit/38155548 )
- **coverage**: Ignore generated TS decorators - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5206 ](https://togithub.com/vitest-dev/vitest/issues/5206 ) [<samp>(a2804)</samp>](https://togithub.com/vitest-dev/vitest/commit/a280451b )
- **ui**: Auto reload coverage iframe after test run - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5242 ](https://togithub.com/vitest-dev/vitest/issues/5242 ) [<samp>(5376d)</samp>](https://togithub.com/vitest-dev/vitest/commit/5376d5be )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.3.0...v1.3.1 )
### [`v1.3.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.3.0 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.2.2...v1.3.0 )
##### 🚀 Features
- Deprecate watchExclude - by [@​patak-dev](https://togithub.com/patak-dev ) in [https://github.com/vitest-dev/vitest/issues/5171 ](https://togithub.com/vitest-dev/vitest/issues/5171 ) [<samp>(82885)</samp>](https://togithub.com/vitest-dev/vitest/commit/828858f8 )
- **browser**:
- Run test files in isolated iframes - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5036 ](https://togithub.com/vitest-dev/vitest/issues/5036 ) [<samp>(4f401)</samp>](https://togithub.com/vitest-dev/vitest/commit/4f40177e )
- **config**:
- Add `snapshotSerializers` option - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5092 ](https://togithub.com/vitest-dev/vitest/issues/5092 ) [<samp>(5b102)</samp>](https://togithub.com/vitest-dev/vitest/commit/5b1021da )
- **reporters**:
- Support custom options - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5111 ](https://togithub.com/vitest-dev/vitest/issues/5111 ) [<samp>(fec9c)</samp>](https://togithub.com/vitest-dev/vitest/commit/fec9ca0b )
- **runner**:
- Support automatic fixtures - by [@​fenghan34](https://togithub.com/fenghan34 ) and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5102 ](https://togithub.com/vitest-dev/vitest/issues/5102 ) [<samp>(0441f)</samp>](https://togithub.com/vitest-dev/vitest/commit/0441f761 )
- **ui**:
- Save splitpanes size to local storage - by [@​posva](https://togithub.com/posva ) in [https://github.com/vitest-dev/vitest/issues/5166 ](https://togithub.com/vitest-dev/vitest/issues/5166 ) [<samp>(c28b4)</samp>](https://togithub.com/vitest-dev/vitest/commit/c28b4c26 )
- **vitest**:
- Add onTestFinished hook - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5128 ](https://togithub.com/vitest-dev/vitest/issues/5128 ) [<samp>(6f5b4)</samp>](https://togithub.com/vitest-dev/vitest/commit/6f5b42b7 )
- Add github actions reporter - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5093 ](https://togithub.com/vitest-dev/vitest/issues/5093 ) [<samp>(40afb)</samp>](https://togithub.com/vitest-dev/vitest/commit/40afbe3a )
- Expose jsdom global if jsdom environment is enabled - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5155 ](https://togithub.com/vitest-dev/vitest/issues/5155 ) [<samp>(567d2)</samp>](https://togithub.com/vitest-dev/vitest/commit/567d20b9 )
- Add new CLI options - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5163 ](https://togithub.com/vitest-dev/vitest/issues/5163 ) [<samp>(4e179)</samp>](https://togithub.com/vitest-dev/vitest/commit/4e179426 )
- "test" accepts options object as the second parameter - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5142 ](https://togithub.com/vitest-dev/vitest/issues/5142 ) [<samp>(7d9b1)</samp>](https://togithub.com/vitest-dev/vitest/commit/7d9b1fb0 )
- **vm**:
- Support wasm module - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5131 ](https://togithub.com/vitest-dev/vitest/issues/5131 ) [<samp>(5ed53)</samp>](https://togithub.com/vitest-dev/vitest/commit/5ed537f0 )
##### 🐞 Bug Fixes
- Fix sourcemap in vm pools - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5063 ](https://togithub.com/vitest-dev/vitest/issues/5063 ) [<samp>(81105)</samp>](https://togithub.com/vitest-dev/vitest/commit/8110540a )
- Don't optimize react/jsx-runtime by default when running in Node - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5079 ](https://togithub.com/vitest-dev/vitest/issues/5079 ) [<samp>(0d2bf)</samp>](https://togithub.com/vitest-dev/vitest/commit/0d2bfeac )
- Rpc timeout error messages to include caller - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5103 ](https://togithub.com/vitest-dev/vitest/issues/5103 ) [<samp>(a6e04)</samp>](https://togithub.com/vitest-dev/vitest/commit/a6e04bd8 )
- Requires fixed version across the monorepo - by [@​antfu](https://togithub.com/antfu ) in [https://github.com/vitest-dev/vitest/issues/5208 ](https://togithub.com/vitest-dev/vitest/issues/5208 ) [<samp>(68f51)</samp>](https://togithub.com/vitest-dev/vitest/commit/68f51961 )
- Prevent merging of `poolOptions` - by [@​penalosa](https://togithub.com/penalosa ) in [https://github.com/vitest-dev/vitest/issues/5221 ](https://togithub.com/vitest-dev/vitest/issues/5221 ) [<samp>(bc5b2)</samp>](https://togithub.com/vitest-dev/vitest/commit/bc5b2d04 )
- **browser**:
- Don't exclude node builtins from optimization - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5082 ](https://togithub.com/vitest-dev/vitest/issues/5082 ) [<samp>(714c9)</samp>](https://togithub.com/vitest-dev/vitest/commit/714c911f )
- Support `coverage.reportsDirectory` with multiple directories - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5056 ](https://togithub.com/vitest-dev/vitest/issues/5056 ) [<samp>(ae73f)</samp>](https://togithub.com/vitest-dev/vitest/commit/ae73f273 )
- **cli**:
- Parse `--browser=<name>` correctly - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5179 ](https://togithub.com/vitest-dev/vitest/issues/5179 ) [<samp>(656e2)</samp>](https://togithub.com/vitest-dev/vitest/commit/656e210b )
- **coverage**:
- `.tmp` directory conflicts with `--shard` option - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5184 ](https://togithub.com/vitest-dev/vitest/issues/5184 ) [<samp>(5749d)</samp>](https://togithub.com/vitest-dev/vitest/commit/5749d2c2 )
- **deps**:
- Update dependency strip-literal to v2 - by [@​renovate](https://togithub.com/renovate )\[bot] in[https://github.com/vitest-dev/vitest/issues/5136 ](https://togithub.com/vitest-dev/vitest/issues/5136 )6 [<samp>(ef557)</samp>](https://togithub.com/vitest-dev/vitest/commit/ef557243 )
- **reporters**:
- Testsuite name should include project root in Junit output - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5116 ](https://togithub.com/vitest-dev/vitest/issues/5116 ) [<samp>(2494f)</samp>](https://togithub.com/vitest-dev/vitest/commit/2494fbf2 )
- **typecheck**:
- Fix suite collection while-loop - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5065 ](https://togithub.com/vitest-dev/vitest/issues/5065 ) [<samp>(35675)</samp>](https://togithub.com/vitest-dev/vitest/commit/35675bd3 )
- **ui**:
- Fix tests duration time - by [@​vovsemenv](https://togithub.com/vovsemenv ) in [https://github.com/vitest-dev/vitest/issues/5219 ](https://togithub.com/vitest-dev/vitest/issues/5219 ) [<samp>(58103)</samp>](https://togithub.com/vitest-dev/vitest/commit/581030ee )
- **utils**:
- Fix asymmetric matcher diff inside array - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5189 ](https://togithub.com/vitest-dev/vitest/issues/5189 ) [<samp>(3ffcd)</samp>](https://togithub.com/vitest-dev/vitest/commit/3ffcd2ea )
- **vitest**:
- Correctly report failed test files as failures in json reporter, export json reporter types - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5081 ](https://togithub.com/vitest-dev/vitest/issues/5081 ) [<samp>(0417b)</samp>](https://togithub.com/vitest-dev/vitest/commit/0417ba20 )
- Don't run typecheck tests in browser if both are enabled - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5080 ](https://togithub.com/vitest-dev/vitest/issues/5080 ) [<samp>(1045b)</samp>](https://togithub.com/vitest-dev/vitest/commit/1045b98b )
- Handle function config inside `defineWorkspace` - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5089 ](https://togithub.com/vitest-dev/vitest/issues/5089 ) [<samp>(0bf52)</samp>](https://togithub.com/vitest-dev/vitest/commit/0bf52533 )
- Remove excessive listeners when running without isolation, don't reset the state - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5132 ](https://togithub.com/vitest-dev/vitest/issues/5132 ) [<samp>(b607f)</samp>](https://togithub.com/vitest-dev/vitest/commit/b607f1ea )
- Auto-enable "github-actions" only where users didn't configure reporters - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5158 ](https://togithub.com/vitest-dev/vitest/issues/5158 ) [<samp>(ef044)</samp>](https://togithub.com/vitest-dev/vitest/commit/ef0440cb )
- Support more array cli options - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5162 ](https://togithub.com/vitest-dev/vitest/issues/5162 ) [<samp>(3afe6)</samp>](https://togithub.com/vitest-dev/vitest/commit/3afe68f1 )
- Add types for the new global `jsdom` variable - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5164 ](https://togithub.com/vitest-dev/vitest/issues/5164 ) [<samp>(0f898)</samp>](https://togithub.com/vitest-dev/vitest/commit/0f898d87 )
- Expose onTestFinished globally - by [@​sheremet-va](https://togithub.com/sheremet-va ) [<samp>(1304f)</samp>](https://togithub.com/vitest-dev/vitest/commit/1304fed7 )
- Disable optimizer by default until it's stable - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5156 ](https://togithub.com/vitest-dev/vitest/issues/5156 ) [<samp>(e1bd8)</samp>](https://togithub.com/vitest-dev/vitest/commit/e1bd8d5d )
- Delegate snapshot options to workspace from root config - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5199 ](https://togithub.com/vitest-dev/vitest/issues/5199 ) [<samp>(86297)</samp>](https://togithub.com/vitest-dev/vitest/commit/86297d42 )
- Fix `optimizeDeps.disabled` warnings on Vite 5.1 - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5215 ](https://togithub.com/vitest-dev/vitest/issues/5215 ) [<samp>(1aecd)</samp>](https://togithub.com/vitest-dev/vitest/commit/1aecd650 )
- **vm**:
- Handle `disableConsoleIntercept` config - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5074 ](https://togithub.com/vitest-dev/vitest/issues/5074 ) [<samp>(a55ad)</samp>](https://togithub.com/vitest-dev/vitest/commit/a55adac6 )
- Improve error when module is not found - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5053 ](https://togithub.com/vitest-dev/vitest/issues/5053 ) [<samp>(79a50)</samp>](https://togithub.com/vitest-dev/vitest/commit/79a50c3f )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.2.2...v1.3.0 )
</details>
<details>
<summary>SonarSource/eslint-plugin-sonarjs (eslint-plugin-sonarjs)</summary>
### [`v0.24.0`](https://togithub.com/SonarSource/eslint-plugin-sonarjs/releases/tag/0.24.0 )
[Compare Source](https://togithub.com/SonarSource/eslint-plugin-sonarjs/compare/0.23.0...0.24.0 )
#### What's Changed
- Prepare for next development iteration by [@​yassin-kammoun-sonarsource](https://togithub.com/yassin-kammoun-sonarsource ) in [https://github.com/SonarSource/eslint-plugin-sonarjs/pull/429 ](https://togithub.com/SonarSource/eslint-plugin-sonarjs/pull/429 )
- Add prettier as pre-commit hook by [@​vdiez](https://togithub.com/vdiez ) in [https://github.com/SonarSource/eslint-plugin-sonarjs/pull/432 ](https://togithub.com/SonarSource/eslint-plugin-sonarjs/pull/432 )
- Fix cognitive complexity link by [@​ilia-kebets-sonarsource](https://togithub.com/ilia-kebets-sonarsource ) in [https://github.com/SonarSource/eslint-plugin-sonarjs/pull/443 ](https://togithub.com/SonarSource/eslint-plugin-sonarjs/pull/443 )
- Drop Node.js 14 support and test against Node.js 20 on CI by [@​yassin-kammoun-sonarsource](https://togithub.com/yassin-kammoun-sonarsource ) in [https://github.com/SonarSource/eslint-plugin-sonarjs/pull/445 ](https://togithub.com/SonarSource/eslint-plugin-sonarjs/pull/445 )
- Fix FP S3776 (`cognitive-complexity`): Ignore nested functions and default values by [@​yassin-kammoun-sonarsource](https://togithub.com/yassin-kammoun-sonarsource ) in [https://github.com/SonarSource/eslint-plugin-sonarjs/pull/444 ](https://togithub.com/SonarSource/eslint-plugin-sonarjs/pull/444 )
**Full Changelog**: https://github.com/SonarSource/eslint-plugin-sonarjs/compare/0.23.0...0.24.0
</details>
<details>
<summary>jotaijs/jotai-devtools (jotai-devtools)</summary>
### [`v0.8.0`](https://togithub.com/jotaijs/jotai-devtools/blob/HEAD/CHANGELOG.md#080-2024-02-20 )
[Compare Source](https://togithub.com/jotaijs/jotai-devtools/compare/v0.7.1...v0.8.0 )
##### Features
- add position option
([#​118](https://togithub.com/jotaijs/jotai-devtools/issues/118 ))
([9db1951](9db195108c ))
### [`v0.7.1`](https://togithub.com/jotaijs/jotai-devtools/blob/HEAD/CHANGELOG.md#071-2023-12-04 )
[Compare Source](https://togithub.com/jotaijs/jotai-devtools/compare/v0.7.0...v0.7.1 )
##### Bug Fixes
- defer setAtom in subscribers of store change during main render to next micro
task ([#​109](https://togithub.com/jotaijs/jotai-devtools/issues/109 ))
([2cdc81d](2cdc81d834 ))
</details>
<details>
<summary>vercel/swr (swr)</summary>
### [`v2.2.5`](https://togithub.com/vercel/swr/releases/tag/v2.2.5 )
[Compare Source](https://togithub.com/vercel/swr/compare/v2.2.4...v2.2.5 )
##### Patches
- types: isLoading typed as boolean when using fallbackData ([#​2866](https://togithub.com/vercel/swr/issues/2866 )) by [@​yjrhgvbn](https://togithub.com/yjrhgvbn ) in [https://github.com/vercel/swr/pull/2875 ](https://togithub.com/vercel/swr/pull/2875 )
- fix: allow onErrorRetry on inactive tab without focus/reconnect revalidation by [@​qkdreyer](https://togithub.com/qkdreyer ) in [https://github.com/vercel/swr/pull/2848 ](https://togithub.com/vercel/swr/pull/2848 )
- feat: pass a function to the revalidate option in mutate by [@​koba04](https://togithub.com/koba04 ) in [https://github.com/vercel/swr/pull/2862 ](https://togithub.com/vercel/swr/pull/2862 )
- fix: SWRConfiguration type by [@​hulla-dev](https://togithub.com/hulla-dev ) in [https://github.com/vercel/swr/pull/2882 ](https://togithub.com/vercel/swr/pull/2882 )
##### Misc
- build: use new bundle convention by [@​huozhi](https://togithub.com/huozhi ) in [https://github.com/vercel/swr/pull/2865 ](https://togithub.com/vercel/swr/pull/2865 )
- chore: update pnpm-lock.yaml by [@​koba04](https://togithub.com/koba04 ) in [https://github.com/vercel/swr/pull/2874 ](https://togithub.com/vercel/swr/pull/2874 )
- chore: remove useless comment by [@​kongmoumou](https://togithub.com/kongmoumou ) in [https://github.com/vercel/swr/pull/2868 ](https://togithub.com/vercel/swr/pull/2868 )
- test: run pnpm test on CI by [@​koba04](https://togithub.com/koba04 ) in [https://github.com/vercel/swr/pull/2872 ](https://togithub.com/vercel/swr/pull/2872 )
- fix: all act warnings by [@​koba04](https://togithub.com/koba04 ) in [https://github.com/vercel/swr/pull/2861 ](https://togithub.com/vercel/swr/pull/2861 )
- Update bundler by [@​huozhi](https://togithub.com/huozhi ) in [https://github.com/vercel/swr/pull/2830 ](https://togithub.com/vercel/swr/pull/2830 )
##### New Contributors
- [@​kongmoumou](https://togithub.com/kongmoumou ) made their first contribution in [https://github.com/vercel/swr/pull/2868 ](https://togithub.com/vercel/swr/pull/2868 )
- [@​yjrhgvbn](https://togithub.com/yjrhgvbn ) made their first contribution in [https://github.com/vercel/swr/pull/2875 ](https://togithub.com/vercel/swr/pull/2875 )
- [@​qkdreyer](https://togithub.com/qkdreyer ) made their first contribution in [https://github.com/vercel/swr/pull/2848 ](https://togithub.com/vercel/swr/pull/2848 )
- [@​hulla-dev](https://togithub.com/hulla-dev ) made their first contribution in [https://github.com/vercel/swr/pull/2882 ](https://togithub.com/vercel/swr/pull/2882 )
**Full Changelog**: https://github.com/vercel/swr/compare/v2.2.4...v2.2.5
</details>
<details>
<summary>qmhc/vite-plugin-dts (vite-plugin-dts)</summary>
### [`v3.7.3`](https://togithub.com/qmhc/vite-plugin-dts/blob/HEAD/CHANGELOG.md#373-2024-02-21 )
[Compare Source](https://togithub.com/qmhc/vite-plugin-dts/compare/v3.7.2...v3.7.3 )
##### Bug Fixes
- incorrect process for removing pure import ([d0c0c86](d0c0c867d6 )), closes [#​301](https://togithub.com/qmhc/vite-plugin-dts/issues/301 )
</details>
<details>
<summary>vitest-dev/vitest (vitest)</summary>
### [`v1.3.1`](https://togithub.com/vitest-dev/vitest/compare/v1.3.0...v1.3.1 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.3.0...v1.3.1 )
### [`v1.3.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.3.0 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.2.2...v1.3.0 )
##### 🚀 Features
- Deprecate watchExclude - by [@​patak-dev](https://togithub.com/patak-dev ) in [https://github.com/vitest-dev/vitest/issues/5171 ](https://togithub.com/vitest-dev/vitest/issues/5171 ) [<samp>(82885)</samp>](https://togithub.com/vitest-dev/vitest/commit/828858f8 )
- **browser**:
- Run test files in isolated iframes - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5036 ](https://togithub.com/vitest-dev/vitest/issues/5036 ) [<samp>(4f401)</samp>](https://togithub.com/vitest-dev/vitest/commit/4f40177e )
- **config**:
- Add `snapshotSerializers` option - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5092 ](https://togithub.com/vitest-dev/vitest/issues/5092 ) [<samp>(5b102)</samp>](https://togithub.com/vitest-dev/vitest/commit/5b1021da )
- **reporters**:
- Support custom options - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5111 ](https://togithub.com/vitest-dev/vitest/issues/5111 ) [<samp>(fec9c)</samp>](https://togithub.com/vitest-dev/vitest/commit/fec9ca0b )
- **runner**:
- Support automatic fixtures - by [@​fenghan34](https://togithub.com/fenghan34 ) and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5102 ](https://togithub.com/vitest-dev/vitest/issues/5102 ) [<samp>(0441f)</samp>](https://togithub.com/vitest-dev/vitest/commit/0441f761 )
- **ui**:
- Save splitpanes size to local storage - by [@​posva](https://togithub.com/posva ) in [https://github.com/vitest-dev/vitest/issues/5166 ](https://togithub.com/vitest-dev/vitest/issues/5166 ) [<samp>(c28b4)</samp>](https://togithub.com/vitest-dev/vitest/commit/c28b4c26 )
- **vitest**:
- Add onTestFinished hook - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5128 ](https://togithub.com/vitest-dev/vitest/issues/5128 ) [<samp>(6f5b4)</samp>](https://togithub.com/vitest-dev/vitest/commit/6f5b42b7 )
- Add github actions reporter - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5093 ](https://togithub.com/vitest-dev/vitest/issues/5093 ) [<samp>(40afb)</samp>](https://togithub.com/vitest-dev/vitest/commit/40afbe3a )
- Expose jsdom global if jsdom environment is enabled - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5 ](https://togithub.com/vitest-dev/vitest/issues/5 )[15](https://togithub.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:16 )5 [<samp>(567d2)</samp>](https://togithub.com/vitest-dev/vitest/commit/567d20b9 )
- Add new CLI options - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5 ](https://togithub.com/vitest-dev/vitest/issues/5 )[16](https://togithub.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:17 )3 [<samp>(4e179)</samp>](https://togithub.com/vitest-dev/vitest/commit/4e179426 )
- "test" accepts options object as the second parameter - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5142 ](https://togithub.com/vitest-dev/vitest/issues/5142 ) [<samp>(7d9b1)</samp>](https://togithub.com/vitest-dev/vitest/commit/7d9b1fb0 )
- **vm**:
- Support wasm module - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5131 ](https://togithub.com/vitest-dev/vitest/issues/5131 ) [<samp>(5ed53)</samp>](https://togithub.com/vitest-dev/vitest/commit/5ed537f0 )
##### 🐞 Bug Fixes
- Fix sourcemap in vm pools - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5063 ](https://togithub.com/vitest-dev/vitest/issues/5063 ) [<samp>(81105)</samp>](https://togithub.com/vitest-dev/vitest/commit/8110540a )
- Don't optimize react/jsx-runtime by default when running in Node - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5079 ](https://togithub.com/vitest-dev/vitest/issues/5079 ) [<samp>(0d2bf)</samp>](https://togithub.com/vitest-dev/vitest/commit/0d2bfeac )
- Rpc timeout error messages to include caller - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5103 ](https://togithub.com/vitest-dev/vitest/issues/5103 ) [<samp>(a6e04)</samp>](https://togithub.com/vitest-dev/vitest/commit/a6e04bd8 )
- Requires fixed version across the monorepo - by [@​antfu](https://togithub.com/antfu ) in [https://github.com/vitest-dev/vitest/issues/5208 ](https://togithub.com/vitest-dev/vitest/issues/5208 ) [<samp>(68f51)</samp>](https://togithub.com/vitest-dev/vitest/commit/68f51961 )
- Prevent merging of `poolOptions` - by [@​penalosa](https://togithub.com/penalosa ) in [https://github.com/vitest-dev/vitest/issues/5221 ](https://togithub.com/vitest-dev/vitest/issues/5221 ) [<samp>(bc5b2)</samp>](https://togithub.com/vitest-dev/vitest/commit/bc5b2d04 )
- **browser**:
- Don't exclude node builtins from optimization - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5082 ](https://togithub.com/vitest-dev/vitest/issues/5082 ) [<samp>(714c9)</samp>](https://togithub.com/vitest-dev/vitest/commit/714c911f )
- Support `coverage.reportsDirectory` with multiple directories - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5056 ](https://togithub.com/vitest-dev/vitest/issues/5056 ) [<samp>(ae73f)</samp>](https://togithub.com/vitest-dev/vitest/commit/ae73f273 )
- **cli**:
- Parse `--browser=<name>` correctly - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5 ](https://togithub.com/vitest-dev/vitest/issues/5 )[17](https://togithub.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:18 )9 [<samp>(656e2)</samp>](https://togithub.com/vitest-dev/vitest/commit/656e210b )
- **coverage**:
- `.tmp` directory conflicts with `--shard` option - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/5 ](https://togithub.com/vitest-dev/vitest/issues/5 )[18](https://togithub.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:19 )4 [<samp>(5749d)</samp>](https://togithub.com/vitest-dev/vitest/commit/5749d2c2 )
- **deps**:
- Update dependency strip-literal to v2 - by [@​renovate](https://togithub.com/renovate )\[bot] in[https://github.com/vitest-dev/vitest/issues/5136 ](https://togithub.com/vitest-dev/vitest/issues/5136 )6 [<samp>(ef557)</samp>](https://togithub.com/vitest-dev/vitest/commit/ef557243 )
- **reporters**:
- Testsuite name should include project root in Junit output - by [@​fenghan34](https://togithub.com/fenghan34 ) in [https://github.com/vitest-dev/vitest/issues/5116 ](https://togithub.com/vitest-dev/vitest/issues/5116 ) [<samp>(2494f)</samp>](https://togithub.com/vitest-dev/vitest/commit/2494fbf2 )
- **typecheck**:
- Fix suite collection while-loop - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5065 ](https://togithub.com/vitest-dev/vitest/issues/5065 ) [<samp>(35675)</samp>](https://togithub.com/vitest-dev/vitest/commit/35675bd3 )
- **ui**:
- Fix tests duration time - by [@​vovsemenv](https://togithub.com/vovsemenv ) in [https://github.com/vitest-dev/vitest/issues/52 ](https://togithub.com/vitest-dev/vitest/issues/52 )[19](https://togithub.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:20 ) [<samp>(58103)</samp>](https://togithub.com/vitest-dev/vitest/commit/581030ee )
- **utils**:
- Fix asymmetric matcher diff inside array - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5189 ](https://togithub.com/vitest-dev/vitest/issues/5189 ) [<samp>(3ffcd)</samp>](https://togithub.com/vitest-dev/vitest/commit/3ffcd2ea )
- **vitest**:
- Correctly report failed test files as failures in json reporter, export json reporter types - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5081 ](https://togithub.com/vitest-dev/vitest/issues/5081 ) [<samp>(0417b)</samp>](https://togithub.com/vitest-dev/vitest/commit/0417ba\[20]\(https://github.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:21\) )
- Don't run typecheck tests in browser if both are enabled - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5080 ](https://togithub.com/vitest-dev/vitest/issues/5080 ) [<samp>(1045b)</samp>](https://togithub.com/vitest-dev/vitest/commit/1045b98b )
- Handle function config inside `defineWorkspace` - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5089 ](https://togithub.com/vitest-dev/vitest/issues/5089 ) [<samp>(0bf52)</samp>](https://togithub.com/vitest-dev/vitest/commit/0bf52533 )
- Remove excessive listeners when running without isolation, don't reset the state - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5132 ](https://togithub.com/vitest-dev/vitest/issues/5132 ) [<samp>(b607f)</samp>](https://togithub.com/vitest-dev/vitest/commit/b607f1ea )
- Auto-enable "github-actions" only where users didn't configure reporters - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5158 ](https://togithub.com/vitest-dev/vitest/issues/5158 ) [<samp>(ef044)</samp>](https://togithub.com/vitest-dev/vitest/commit/ef0440cb )
- Support more array cli options - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5162 ](https://togithub.com/vitest-dev/vitest/issues/5162 ) [<samp>(3afe6)</samp>](https://togithub.com/vitest-dev/vitest/commit/3afe68f1 )
- Add types for the new global `jsdom` variable - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5164 ](https://togithub.com/vitest-dev/vitest/issues/5164 ) [<samp>(0f898)</samp>](https://togithub.com/vitest-dev/vitest/commit/0f898d87 )
- Expose onTestFinished globally - by [@​sheremet-va](https://togithub.com/sheremet-va ) [<samp>(1304f)</samp>](https://togithub.com/vitest-dev/vitest/commit/1304fed7 )
- Disable optimizer by default until it's stable - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/5156 ](https://togithub.com/vitest-dev/vitest/issues/5156 ) [<samp>(e1bd8)</samp>](https://togithub.com/vitest-dev/vitest/commit/e1bd8d5d )
- Delegate snapshot options to workspace from root config - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5199 ](https://togithub.com/vitest-dev/vitest/issues/5199 ) [<samp>(86297)</samp>](https://togithub.com/vitest-dev/vitest/commit/86297d42 )
- Fix `optimizeDeps.disabled` warnings on Vite 5.1 - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/5 ](https://togithub.com/vitest-dev/vitest/issues/5 )[21](https://togithub.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:22 )5 [<samp>(1aecd)</samp>](https://togithub.com/vitest-dev/vitest/commit/1aecd650 )
- **vm**:
- Handle `disableConsoleIntercept` config - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in https://github.com/vitest-dev/vitest/issues/[50](https://togithub.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:51)74 [<samp>(a55ad)</samp>](https://togithub.com/vitest-dev/vitest/commit/a55adac6 )
- Improve error when module is not found - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/50 ](https://togithub.com/vitest-dev/vitest/issues/50 )[53](https://togithub.com/vitest-dev/vitest/actions/runs/7934052979/job/21664152574#step:8:54 ) [<samp>(79a50)</samp>](https://togithub.com/vitest-dev/vitest/commit/79a50c3f )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.2.2...v1.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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-21 12:24:48 +00:00
Cats Juice
ed0d67ee56
fix(component): nowrap inline-edit ( #5844 )
2024-02-21 10:03:05 +00:00
LongYinan
201f68056e
build(deps): bump ip from 2.0.0 to 2.0.1 ( #5855 )
...
Bumps [ip](https://github.com/indutny/node-ip ) from 2.0.0 to 2.0.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="3b0994a74e "><code>3b0994a</code></a> 2.0.1</li>
<li><a href="32f468f124 "><code>32f468f</code></a> lib: fixed CVE-2023-42282 and added unit test</li>
<li>See full diff in <a href="https://github.com/indutny/node-ip/compare/v2.0.0...v2.0.1 ">compare view</a></li>
</ul>
</details>
<br />
[](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-02-21 08:41:24 +00:00
LongYinan
bd43f73904
fix(electron): linux AppImage output path ( #5853 )
2024-02-21 08:00:58 +00:00
Ayush Agrawal
11b3184537
feat: blocksuite integration for pageMode & pageUpdatedAt ( #5849 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2024-02-21 15:03:02 +08:00
Lye Hongtao
4641bc422b
feat: move templates into AFFiNE ( #5750 )
...
Related to https://github.com/toeverything/blocksuite/pull/6156
### Change
Move the edgeless templates to AFFiNE. All templates are stored as zip files. Run `node build-edgeless.mjs` in `@affine/templates` to generate JSON-format templates and importing script. The template will be generated automatically during building and dev (`yarn dev`).
2024-02-21 06:26:01 +00:00
Ayush Agrawal
53b312c06f
chore: bump blocksuite ( #5852 )
2024-02-21 14:06:53 +08:00
liuyi
d2bf1451fa
ci: fix canary deployment ( #5851 )
2024-02-21 03:01:33 +00:00
Cats Juice
3fe9d834de
feat(core): replace page filter, journal's date-picker with new one ( #5675 )
2024-02-20 13:53:41 +00:00
Cats Juice
e664494b2f
refactor(component): new calendar-view DatePicker ( #5654 )
2024-02-20 13:53:37 +00:00
JimmFly
876b85304e
feat(core): add loading to quick search modal ( #5785 )
...
close AFF-285
add `useSyncEngineStatus` hooks
add loading style
<img width="977" alt="test1" src="https://github.com/toeverything/AFFiNE/assets/102217452/e8bf6714-e42b-4adf-a279-341ef5f5cfc0 ">
2024-02-20 13:05:22 +00:00
JimmFly
3792506b09
feat(core): add history tips modal ( #5733 )
...
close TOV-459 TOV-503
https://github.com/toeverything/AFFiNE/assets/102217452/9cbfaf35-bc7b-4275-94be-6e777447ef11
2024-02-20 12:50:55 +00:00
JimmFly
4068e7aeff
feat(core): add starAFFiNE and issueFeedback modal ( #5718 )
...
close TOV-482
https://github.com/toeverything/AFFiNE/assets/102217452/da1f74bc-4b8d-4d7f-987d-f53da98d92fe
2024-02-20 12:50:51 +00:00
Ayush Agrawal
6fad241350
feat: bump blocksuite ( #5845 )
2024-02-20 20:49:41 +08:00
JimmFly
a554c8aabe
fix(core): match page preview and page title in page list ( #5840 )
...
close TOV-578
2024-02-20 09:27:23 +00:00
LongYinan
7ec3ef8753
chore: bump up nx-cloud version to v18 ( #5790 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [nx-cloud](https://nx.app ) | [`^16.5.2` -> `^18.0.0`](https://renovatebot.com/diffs/npm/nx-cloud/16.5.2/18.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-20 09:15:27 +00:00
LongYinan
15cedcefc5
chore: upgrade Rust to 1.76 ( #5843 )
2024-02-20 09:01:43 +00:00
Adithyan
afe59a864d
feat: Duplicate page in page list and clone naming improvements ( #5818 )
2024-02-20 16:44:25 +08:00
LongYinan
aa79229a21
chore: bump up nrwl monorepo to v18 (major) ( #5791 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@nx/vite](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/vite )) | [`17.3.1` -> `18.0.4`](https://renovatebot.com/diffs/npm/@nx%2fvite/17.3.1/18.0.4 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [nx](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/nx )) | [`^17.1.3` -> `^18.0.0`](https://renovatebot.com/diffs/npm/nx/17.3.1/18.0.4 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [nx](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/nx )) | [`^17.2.8` -> `^18.0.0`](https://renovatebot.com/diffs/npm/nx/17.3.1/18.0.4 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>nrwl/nx (@​nx/vite)</summary>
### [`v18.0.4`](https://togithub.com/nrwl/nx/releases/tag/18.0.4 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.3...18.0.4 )
##### 18.0.4 (2024-02-09)
##### 🚀 Features
- **core:** update swc/register ([#​21755](https://togithub.com/nrwl/nx/pull/21755 ))
- **expo:** support cjs and mjs ([#​21408](https://togithub.com/nrwl/nx/pull/21408 ))
- **nx-dev:** update launch conf timings ([db78715a70](https://togithub.com/nrwl/nx/commit/db78715a70 ))
- **nx-dev:** update launch page link text ([#​21747](https://togithub.com/nrwl/nx/pull/21747 ))
##### 🩹 Fixes
- **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 ))
- **core:** remove implementation detail from warning ([89797d2f7a](https://togithub.com/nrwl/nx/commit/89797d2f7a ))
- **core:** static run one lifecycle should always print dependent task status, and output when verbose ([#​21720](https://togithub.com/nrwl/nx/pull/21720 ))
- **js:** babel preset should also check for JEST_WORKER_ID to transpile to CJS ([#​21754](https://togithub.com/nrwl/nx/pull/21754 ))
- **misc:** pin generated vite version to ~5.0.0 to avoid issues with storybook ([#​21740](https://togithub.com/nrwl/nx/pull/21740 ))
- **module-federation:** map static remote locations correctly ([#​21709](https://togithub.com/nrwl/nx/pull/21709 ))
- **nextjs:** src package.json should not be copied to output folder ([b0506c9f8f](https://togithub.com/nrwl/nx/commit/b0506c9f8f ))
- **nextjs:** Custom server should work with Crystal ([#​21736](https://togithub.com/nrwl/nx/pull/21736 ))
- **nx-dev:** remove fence from new packages and "nx add" commands ([#​21705](https://togithub.com/nrwl/nx/pull/21705 ))
- **playwright:** fix include in tsconfig.json ([#​21730](https://togithub.com/nrwl/nx/pull/21730 ))
- **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 ))
- **remix:** do not rename root jest.preset.js ([#​21703](https://togithub.com/nrwl/nx/pull/21703 ))
- **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 ))
##### ❤️ Thank You
- Austin Fahsl [@​fahslaj](https://togithub.com/fahslaj )
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- 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 )
- Juri [@​juristr](https://togithub.com/juristr )
- Juri Strumpflohner [@​juristr](https://togithub.com/juristr )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- Miroslav Jonas [@​meeroslav](https://togithub.com/meeroslav )
- Miroslav Jonaš [@​meeroslav](https://togithub.com/meeroslav )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
- Yu Zheng
### [`v18.0.3`](https://togithub.com/nrwl/nx/releases/tag/18.0.3 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.2...18.0.3 )
#### 18.0.3 (2024-02-07)
##### 🚀 Features
- **bundling:** bump rollup-plugin-typescript2 version ([#​20609](https://togithub.com/nrwl/nx/pull/20609 ))
- **remix:** add playwright option for e2eTestRunner ([#​21603](https://togithub.com/nrwl/nx/pull/21603 ))
##### 🩹 Fixes
- **angular:** ajv hoisting issue ([#​21641](https://togithub.com/nrwl/nx/pull/21641 ))
- **core:** add missing parts to ci workflws and update docs ([3078ecf66f](https://togithub.com/nrwl/nx/commit/3078ecf66f ))
- **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 ))
- **linter:** adjust terminal run check for crystal ([#​21638](https://togithub.com/nrwl/nx/pull/21638 ))
- **misc:** ensure swc transpiler process required files ([#​21674](https://togithub.com/nrwl/nx/pull/21674 ))
- **nx-dev:** launch page mobile experience ([e8d2b471a8](https://togithub.com/nrwl/nx/commit/e8d2b471a8 ))
- **nx-dev:** redirect on remote caching page ([#​21669](https://togithub.com/nrwl/nx/pull/21669 ))
- **testing:** cleanup e2e atomization plugins ([#​21688](https://togithub.com/nrwl/nx/pull/21688 ))
- **vite:** import esbuild before loading config to keep it in cache ([#​21685](https://togithub.com/nrwl/nx/pull/21685 ))
##### ❤️ Thank You
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
- Jonathan Cammisuli
- Juri [@​juristr](https://togithub.com/juristr )
- Juri Strumpflohner [@​juristr](https://togithub.com/juristr )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- Miroslav Jonas [@​meeroslav](https://togithub.com/meeroslav )
- Miroslav Jonaš [@​meeroslav](https://togithub.com/meeroslav )
- Nikita Barsukov [@​nsbarsukov](https://togithub.com/nsbarsukov )
### [`v18.0.2`](https://togithub.com/nrwl/nx/releases/tag/18.0.2 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.1...18.0.2 )
##### 18.0.2 (2024-02-05)
##### 🩹 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 ))
- **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 ))
- **misc:** handle workspaces if no plugin selected in nx init and only generate files after prompts ([#​21606](https://togithub.com/nrwl/nx/pull/21606 ))
- **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 ))
- **node:** Broken E2E tests ([#​21569](https://togithub.com/nrwl/nx/pull/21569 ))
- **nx-dev:** redirect core-features page ([#​21616](https://togithub.com/nrwl/nx/pull/21616 ))
- **webpack:** require ForkTsCheckerWebpackPlugin only as required ([#​21629](https://togithub.com/nrwl/nx/pull/21629 ))
##### ❤️ Thank You
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- 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 )
### [`v18.0.1`](https://togithub.com/nrwl/nx/releases/tag/18.0.1 )
[Compare Source](https://togithub.com/nrwl/nx/compare/18.0.0...18.0.1 )
##### 18.0.1 (2024-02-04)
##### 🩹 Fixes
- **core:** nx cloud prompt during migrate doesn't skip connection ([#​21588](https://togithub.com/nrwl/nx/pull/21588 ))
##### ❤️ Thank You
- Philip Fulcher
### [`v18.0.0`](https://togithub.com/nrwl/nx/releases/tag/18.0.0 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.3.2...18.0.0 )
##### 18.0.0 (2024-02-03)
Nx 18 introduces Project Crystal 💎 , a significant shift towards making Nx more transparent and easy to understand! [Learn more here!](https://nx.dev/concepts/inferred-tasks ). This is now enabled by default where avaialble and is the reason why we decided to mark it as a major version.
> Note: Though this is a major version, there are no removals of previous deprecations. Any deprecations which were previously scheduled for Nx 18 are now scheduled for Nx 19 which will still be coming out around April 2024.
##### 🚀 Features
- **angular:** add generator to convert targets to use the esbuild-based application executor ([#​21333](https://togithub.com/nrwl/nx/pull/21333 ))
- **core:** don't clear NX_BASE or NX_HEAD ([#​20125](https://togithub.com/nrwl/nx/pull/20125 ))
- **core:** log to guide users to show details after project generation ([#​21350](https://togithub.com/nrwl/nx/pull/21350 ))
- **core:** improve nx connect success message ([#​21295](https://togithub.com/nrwl/nx/pull/21295 ))
- **core:** add support for loading .ts files using ESM ([#​21268](https://togithub.com/nrwl/nx/pull/21268 ))
- **core:** support --use-agents and --no-agents ([#​21472](https://togithub.com/nrwl/nx/pull/21472 ))
- **core:** enable project crystal by default ([#​21403](https://togithub.com/nrwl/nx/pull/21403 ))
- **core:** move distribution to beginning of generated ci workflows ([#​21483](https://togithub.com/nrwl/nx/pull/21483 ))
- **core:** add migration to disable adding plugins automatically in existing workspaces ([#​21508](https://togithub.com/nrwl/nx/pull/21508 ))
- **core:** add log lines grouping for GH Actions ([#​21357](https://togithub.com/nrwl/nx/pull/21357 ))
- **core:** add fallback flow to nx init when no plugins are detected ([#​21538](https://togithub.com/nrwl/nx/pull/21538 ))
- **core:** improve the commented dte message on ci-workflows ([#​21524](https://togithub.com/nrwl/nx/pull/21524 ))
- **core:** add e2e to ci workflows ([#​21487](https://togithub.com/nrwl/nx/pull/21487 ))
- **devkit:** improving error handeling read target options ([#​20336](https://togithub.com/nrwl/nx/pull/20336 ))
- **devkit:** add loadConfigFile function for plugins to use ([#​21511](https://togithub.com/nrwl/nx/pull/21511 ))
- **linter:** add error and warning statistics ([#​18313](https://togithub.com/nrwl/nx/pull/18313 ))
- **linter:** add option for [@​nx/dependency-checks](https://togithub.com/nx/dependency-checks ) to update workspace dependencies using local file paths ([#​20157](https://togithub.com/nrwl/nx/pull/20157 ))
- **nextjs:** upgrade Next.js 14.0.3 ([#​20334](https://togithub.com/nrwl/nx/pull/20334 ))
- **nx-dev:** more logos & announcement banner ([#​21444](https://togithub.com/nrwl/nx/pull/21444 ))
- **react-native:** add useTransformReactJSX babel config to generators ([#​19170](https://togithub.com/nrwl/nx/pull/19170 ))
- **react-native:** upgrade react native to 0.73 ([#​20896](https://togithub.com/nrwl/nx/pull/20896 ))
- **vite:** allow passing path to custom tsconfig file when skipTypeCheck is false ([#​19784](https://togithub.com/nrwl/nx/pull/19784 ))
##### 🩹 Fixes
- nestjs lib generator pass skipPackageJson flag to js lib generator ([#​20442](https://togithub.com/nrwl/nx/pull/20442 ))
- **angular:** fix dev-server validation for esbuildMiddleware ([#​21413](https://togithub.com/nrwl/nx/pull/21413 ))
- **angular:** should not log invalid extension includedScripts ([#​21441](https://togithub.com/nrwl/nx/pull/21441 ))
- **angular:** handle indexHtmlTransformer option in dev-server correctly ([#​21520](https://togithub.com/nrwl/nx/pull/21520 ))
- **bundling:** consider index/folder imports in manual file resolution ([#​19030](https://togithub.com/nrwl/nx/pull/19030 ))
- **core:** remove misleading message at front of error ([#​21443](https://togithub.com/nrwl/nx/pull/21443 ))
- **core:** new generator not skipping package installation ([#​17927](https://togithub.com/nrwl/nx/pull/17927 ))
- **core:** include typescript package when calculating project hashes ([#​21285](https://togithub.com/nrwl/nx/pull/21285 ))
- **core:** do not append node_module paths in `run-script` executor ([#​21445](https://togithub.com/nrwl/nx/pull/21445 ))
- **core:** update axios to address CVE-2023-45857 ([#​20493](https://togithub.com/nrwl/nx/pull/20493 ))
- **core:** Add missing migration from playwright ([#​21448](https://togithub.com/nrwl/nx/pull/21448 ))
- **core:** always remove cursor reset in terminal output for Windows ([#​21467](https://togithub.com/nrwl/nx/pull/21467 ))
- **core:** do not run pty in run-script when we're not TTY ([#​21496](https://togithub.com/nrwl/nx/pull/21496 ))
- **core:** target defaults should be able to apply to multiple targets with the same executor ([#​21438](https://togithub.com/nrwl/nx/pull/21438 ))
- **core:** nx build --graph file.json should work in subdirectories ([#​19858](https://togithub.com/nrwl/nx/pull/19858 ))
- **core:** Update Nx Welcome to include nx show project ([#​21509](https://togithub.com/nrwl/nx/pull/21509 ))
- **core:** handle negative patterns better when specified in pnpm-workspaces ([#​19983](https://togithub.com/nrwl/nx/pull/19983 ))
- **core:** module federation migration for project with no targets ([#​21536](https://togithub.com/nrwl/nx/pull/21536 ))
- **core:** remove the full workspace path with node_modules from the path env variable when running `run-scripts` ([#​21532](https://togithub.com/nrwl/nx/pull/21532 ))
- **core:** do not watch temporary vite files ([#​21514](https://togithub.com/nrwl/nx/pull/21514 ))
- **core:** target defaults from specifier should not be clobbered by name based target defaults ([#​21539](https://togithub.com/nrwl/nx/pull/21539 ))
- **core:** fix missing nxCloud error message on ci workflows ([#​21564](https://togithub.com/nrwl/nx/pull/21564 ))
- **core:** handle spaces when launching nxFork ([#​21571](https://togithub.com/nrwl/nx/pull/21571 ))
- **expo:** set port for e2e ([#​21559](https://togithub.com/nrwl/nx/pull/21559 ))
- **graph:** repair externalApiService usage broken after refactor ([#​21422](https://togithub.com/nrwl/nx/pull/21422 ))
- **graph:** fix expand when using external api ([#​21433](https://togithub.com/nrwl/nx/pull/21433 ))
- **graph:** don't show open config button on nx.dev & refactor tooltips ([#​21463](https://togithub.com/nrwl/nx/pull/21463 ))
- **graph:** fix openen project details with expanded target from external api ([#​21548](https://togithub.com/nrwl/nx/pull/21548 ))
- **js:** allow inlined libs without imports ([#​20649](https://togithub.com/nrwl/nx/pull/20649 ))
- **js:** package type is module should emit esm ([#​21473](https://togithub.com/nrwl/nx/pull/21473 ))
- **linter:** remove extend of [@​angular-eslint/recommended--extra](https://togithub.com/angular-eslint/recommended--extra ) config ([#​18465](https://togithub.com/nrwl/nx/pull/18465 ))
- **linter:** restore rules to match previous [@​typescript-eslint/recommended](https://togithub.com/typescript-eslint/recommended ) ([#​21424](https://togithub.com/nrwl/nx/pull/21424 ))
- **linter:** make target default migrations a bit more robust ([#​21446](https://togithub.com/nrwl/nx/pull/21446 ))
- **linter:** make eslint mandatory dependency ([#​21406](https://togithub.com/nrwl/nx/pull/21406 ))
- **linter:** ensure flat config generator works for pcv3 plugin ([#​21485](https://togithub.com/nrwl/nx/pull/21485 ))
- **linter:** remove reportUnusedDisableDirectives for flat config ([#​21405](https://togithub.com/nrwl/nx/pull/21405 ))
- **linter:** prevent dep-checks leaking when used outside nx ([#​21404](https://togithub.com/nrwl/nx/pull/21404 ))
- **misc:** prevent ts-node from reading tsconfig when registering transpiler ([#​21381](https://togithub.com/nrwl/nx/pull/21381 ))
- **misc:** set $schema in nx.json generated during nx init ([#​21455](https://togithub.com/nrwl/nx/pull/21455 ))
- **misc:** use caret for semver version ([#​18140](https://togithub.com/nrwl/nx/pull/18140 ))
- **module-federation:** ensure the static remotes env var is used for task hashing [#​21390](https://togithub.com/nrwl/nx/issues/21390 ) ([#​21414](https://togithub.com/nrwl/nx/pull/21414 ), [#​21390](https://togithub.com/nrwl/nx/issues/21390 ))
- **module-federation:** ensure incorrect tsconfig path mappings are not used [#​21391](https://togithub.com/nrwl/nx/issues/21391 ) ([#​21416](https://togithub.com/nrwl/nx/pull/21416 ), [#​21391](https://togithub.com/nrwl/nx/issues/21391 ))
- **nest:** exclude react-specific packages when generating nx nest monorepo ([#​21153](https://togithub.com/nrwl/nx/pull/21153 ))
- **nest:** ensure dependencies are installed when generating nest libraries ([#​21534](https://togithub.com/nrwl/nx/pull/21534 ))
- **nextjs:** Add missing support swc for custom server ([#​21401](https://togithub.com/nrwl/nx/pull/21401 ))
- **nextjs:** lazy load plugin import ([#​21426](https://togithub.com/nrwl/nx/pull/21426 ))
- **nextjs:** nextjs standalone playwright linting ([#​21555](https://togithub.com/nrwl/nx/pull/21555 ))
- **nextjs:** vite workspace libs ([#​21553](https://togithub.com/nrwl/nx/pull/21553 ))
- **nuxt:** change nuxi to nuxt ([#​21484](https://togithub.com/nrwl/nx/pull/21484 ))
- **nx-dev:** fix hero text typo ([#​20937](https://togithub.com/nrwl/nx/pull/20937 ))
- **nx-dev:** remove unmatched bracket. updates warning description ([#​19481](https://togithub.com/nrwl/nx/pull/19481 ))
- **nx-dev:** launch week agenda minor fixes ([#​21419](https://togithub.com/nrwl/nx/pull/21419 ))
- **nx-dev:** typos on launch-nx website ([#​21552](https://togithub.com/nrwl/nx/pull/21552 ))
- **react:** import SupportedStyles type from correct path ([#​20239](https://togithub.com/nrwl/nx/pull/20239 ))
- **react:** setup-ssr generator should not read the graph for a project that doesnt exist ([#​21522](https://togithub.com/nrwl/nx/pull/21522 ))
- **react:** extensions - vite e2e test ([#​21530](https://togithub.com/nrwl/nx/pull/21530 ))
- **react:** app generator should handle crystal workspaces ([#​21537](https://togithub.com/nrwl/nx/pull/21537 ))
- **react-native:** Application generator failing ([#​21507](https://togithub.com/nrwl/nx/pull/21507 ))
- **release:** skip lock file update if yarn classic ([#​21489](https://togithub.com/nrwl/nx/pull/21489 ))
- **testing:** fix config references to js files ([#​21018](https://togithub.com/nrwl/nx/pull/21018 ))
- **testing:** add support for generating and loading cypress config in ESM format ([#​21471](https://togithub.com/nrwl/nx/pull/21471 ))
- **vite:** prevent vite:build copying package.json when generatePackageJson false ([#​19780](https://togithub.com/nrwl/nx/pull/19780 ))
- **vite:** deep file resolution in nx-tsconfig-paths.plugin.ts ([#​21513](https://togithub.com/nrwl/nx/pull/21513 ))
- **vue:** do not add [@​vue/tsconfig](https://togithub.com/vue/tsconfig ) dependency ([#​19873](https://togithub.com/nrwl/nx/pull/19873 ))
- **webpack:** correctly handle data URIs with escaped quotes in style… ([#​20988](https://togithub.com/nrwl/nx/pull/20988 ))
- **webpack:** fix webpack plugin issues and e2e tests ([#​21531](https://togithub.com/nrwl/nx/pull/21531 ))
##### ❤️ Thank You
- Adam Hunter [@​adamrhunter](https://togithub.com/adamrhunter )
- Altan Stalker
- andreasmoller25 [@​andreasmoller25](https://togithub.com/andreasmoller25 )
- Austin Fahsl [@​fahslaj](https://togithub.com/fahslaj )
- Benjamin Kroeger [@​benkroeger](https://togithub.com/benkroeger )
- Christian Käslin
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Denis Frenademetz [@​skrtheboss](https://togithub.com/skrtheboss )
- Eduardo Barros
- Emily Xiong [@​xiongemi](https://togithub.com/xiongemi )
- Ian Chadwick [@​ianchadwick](https://togithub.com/ianchadwick )
- Isaac Mann [@​isaacplmann](https://togithub.com/isaacplmann )
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
- James Henry [@​JamesHenry](https://togithub.com/JamesHenry )
- Jan Pretzel
- Jason Jean [@​FrozenPandaz](https://togithub.com/FrozenPandaz )
- Jonathan Cammisuli
- Juri Strumpflohner [@​juristr](https://togithub.com/juristr )
- Katerina Skroumpelou [@​mandarini](https://togithub.com/mandarini )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- Lukas [@​LukasTy](https://togithub.com/LukasTy )
- MaxKless [@​MaxKless](https://togithub.com/MaxKless )
- Michal Jez [@​MJez29](https://togithub.com/MJez29 )
- Mihail Golban [@​mihailgolban](https://togithub.com/mihailgolban )
- Miloš Lajtman [@​miluoshi](https://togithub.com/miluoshi )
- Miroslav Jonaš [@​meeroslav](https://togithub.com/meeroslav )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
- Phillip Barta [@​Phillip9587](https://togithub.com/Phillip9587 )
- Remco Krams
- Simeon Cheeseman [@​SimeonC](https://togithub.com/SimeonC )
- Tobbb
- Vinit Neogi [@​vneogi199](https://togithub.com/vneogi199 )
- wout junius [@​wout-junius](https://togithub.com/wout-junius )
- Zac Bristow
- zenvanexus [@​zenvanexus](https://togithub.com/zenvanexus )
### [`v17.3.2`](https://togithub.com/nrwl/nx/releases/tag/17.3.2 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.3.1...17.3.2 )
##### 17.3.2 (2024-02-03)
##### 🚀 Features
- **core:** add log lines grouping for GH Actions ([#​21357](https://togithub.com/nrwl/nx/pull/21357 ))
- **linter:** add error and warning statistics ([#​18313](https://togithub.com/nrwl/nx/pull/18313 ))
##### 🩹 Fixes
- **angular:** handle indexHtmlTransformer option in dev-server correctly ([#​21520](https://togithub.com/nrwl/nx/pull/21520 ))
- **core:** update axios to address CVE-2023-45857 ([#​20493](https://togithub.com/nrwl/nx/pull/20493 ))
- **core:** Add missing migration from playwright ([#​21448](https://togithub.com/nrwl/nx/pull/21448 ))
- **core:** always remove cursor reset in terminal output for Windows ([#​21467](https://togithub.com/nrwl/nx/pull/21467 ))
- **core:** do not run pty in run-script when we're not TTY ([#​21496](https://togithub.com/nrwl/nx/pull/21496 ))
- **core:** target defaults should be able to apply to multiple targets with the same executor ([#​21438](https://togithub.com/nrwl/nx/pull/21438 ))
- **core:** nx build --graph file.json should work in subdirectories ([#​19858](https://togithub.com/nrwl/nx/pull/19858 ))
- **core:** Update Nx Welcome to include nx show project ([#​21509](https://togithub.com/nrwl/nx/pull/21509 ))
- **core:** handle negative patterns better when specified in pnpm-workspaces ([#​19983](https://togithub.com/nrwl/nx/pull/19983 ))
- **core:** remove the full workspace path with node_modules from the path env variable when running `run-scripts` ([#​21532](https://togithub.com/nrwl/nx/pull/21532 ))
- **core:** do not watch temporary vite files ([#​21514](https://togithub.com/nrwl/nx/pull/21514 ))
- **core:** target defaults from specifier should not be clobbered by name based target defaults ([#​21539](https://togithub.com/nrwl/nx/pull/21539 ))
- **graph:** fix expand when using external api ([#​21433](https://togithub.com/nrwl/nx/pull/21433 ))
- **graph:** don't show open config button on nx.dev & refactor tooltips ([#​21463](https://togithub.com/nrwl/nx/pull/21463 ))
- **js:** package type is module should emit esm ([#​21473](https://togithub.com/nrwl/nx/pull/21473 ))
- **linter:** make eslint mandatory dependency ([#​21406](https://togithub.com/nrwl/nx/pull/21406 ))
- **linter:** ensure flat config generator works for pcv3 plugin ([#​21485](https://togithub.com/nrwl/nx/pull/21485 ))
- **linter:** remove reportUnusedDisableDirectives for flat config ([#​21405](https://togithub.com/nrwl/nx/pull/21405 ))
- **linter:** prevent dep-checks leaking when used outside nx ([#​21404](https://togithub.com/nrwl/nx/pull/21404 ))
- **misc:** set $schema in nx.json generated during nx init ([#​21455](https://togithub.com/nrwl/nx/pull/21455 ))
- **misc:** use caret for semver version ([#​18140](https://togithub.com/nrwl/nx/pull/18140 ))
- **module-federation:** ensure the static remotes env var is used for task hashing [#​21390](https://togithub.com/nrwl/nx/issues/21390 ) ([#​21414](https://togithub.com/nrwl/nx/pull/21414 ), [#​21390](https://togithub.com/nrwl/nx/issues/21390 ))
- **module-federation:** ensure incorrect tsconfig path mappings are not used [#​21391](https://togithub.com/nrwl/nx/issues/21391 ) ([#​21416](https://togithub.com/nrwl/nx/pull/21416 ), [#​21391](https://togithub.com/nrwl/nx/issues/21391 ))
- **nest:** exclude react-specific packages when generating nx nest monorepo ([#​21153](https://togithub.com/nrwl/nx/pull/21153 ))
- **release:** skip lock file update if yarn classic ([#​21489](https://togithub.com/nrwl/nx/pull/21489 ))
- **testing:** fix config references to js files ([#​21018](https://togithub.com/nrwl/nx/pull/21018 ))
- **vite:** deep file resolution in nx-tsconfig-paths.plugin.ts ([#​21513](https://togithub.com/nrwl/nx/pull/21513 ))
- **webpack:** correctly handle data URIs with escaped quotes in style… ([#​20988](https://togithub.com/nrwl/nx/pull/20988 ))
##### ❤️ Thank You
- andreasmoller25 [@​andreasmoller25](https://togithub.com/andreasmoller25 )
- Austin Fahsl [@​fahslaj](https://togithub.com/fahslaj )
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Emily Xiong [@​xiongemi](https://togithub.com/xiongemi )
- Ian Chadwick [@​ianchadwick](https://togithub.com/ianchadwick )
- Jason Jean [@​FrozenPandaz](https://togithub.com/FrozenPandaz )
- Jonathan Cammisuli
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- Lukas [@​LukasTy](https://togithub.com/LukasTy )
- MaxKless [@​MaxKless](https://togithub.com/MaxKless )
- Mihail Golban [@​mihailgolban](https://togithub.com/mihailgolban )
- Miroslav Jonaš [@​meeroslav](https://togithub.com/meeroslav )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
- Phillip Barta [@​Phillip9587](https://togithub.com/Phillip9587 )
- Remco Krams
- Simeon Cheeseman [@​SimeonC](https://togithub.com/SimeonC )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-20 08:28:37 +00:00
Muhammad Arsil
1eb317d8fa
fix: cards overlapping issue ( #5727 )
...
Co-authored-by: EYHN <cneyhn@gmail.com >
2024-02-20 16:27:43 +08:00
LongYinan
b8679172c9
chore: bump up electron version to v29 ( #5841 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [electron](https://togithub.com/electron/electron ) | [`^28.2.1` -> `^29.0.0`](https://renovatebot.com/diffs/npm/electron/28.2.1/29.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>electron/electron (electron)</summary>
### [`v29.0.0`](https://togithub.com/electron/electron/releases/tag/v29.0.0 ): electron v29.0.0
[Compare Source](https://togithub.com/electron/electron/compare/v28.2.3...v29.0.0 )
### Release Notes for v29.0.0
#### Stack Upgrades
- Chromium `122.0.6261.39`
- [New in 122](https://developer.chrome.com/blog/new-in-chrome-122/ )
- [New in 121](https://developer.chrome.com/blog/new-in-chrome-121/ )
- Node `20.9.0`
- [Node 20.9.0 blog post](https://nodejs.org/en/blog/release/v20.9.0/ )
- V8 `12.2`
#### Breaking Changes
- Functions called over the `contextBridge` are now called with the expected receiver (`this`). [#​39978](https://togithub.com/electron/electron/pull/39978 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40262 ), [28](https://togithub.com/electron/electron/pull/40263 ))</span>
- The `gpu-process-crashed` event on `app` has been deprecated. [#​40169](https://togithub.com/electron/electron/pull/40169 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40195 ))</span>
- The deprecated `gpu-process-crashed` event on `app` has been removed. [#​40255](https://togithub.com/electron/electron/pull/40255 )
- The deprecated `renderer-process-crashed` event on `app` and `crashed` event on `WebContents` and `<webview>` have been removed. [#​40115](https://togithub.com/electron/electron/pull/40115 )
#### Features
##### Additions
- Added `WebContentsView` and `BaseWindow`, replacing the now-deprecated `BrowserView` APIs. [#​40759](https://togithub.com/electron/electron/pull/40759 )
- Added `keyboardLock` to `ses.setPermissionRequestHandler(handler)`. [#​40369](https://togithub.com/electron/electron/pull/40369 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40458 ), [27](https://togithub.com/electron/electron/pull/40459 ), [28](https://togithub.com/electron/electron/pull/40460 ))</span>
- Added an option in `protocol.registerSchemesAsPrivileged` to allow V8 code cache in custom schemes. [#​40544](https://togithub.com/electron/electron/pull/40544 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40708 ), [28](https://togithub.com/electron/electron/pull/40709 ))</span>
- Added net module to utility process. [#​40890](https://togithub.com/electron/electron/pull/40890 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40968 ), [28](https://togithub.com/electron/electron/pull/40967 ))</span>
- Added new [Electron Fuse](https://www.electronjs.org/docs/latest/tutorial/fuses ) that opts the `file://` protocol into more secure and restrictive behaviour that matches Chromium. [#​40372](https://togithub.com/electron/electron/pull/40372 )
- Added new `webUtils.getPathForFile` method to replace `File.path` augmentation. [#​38776](https://togithub.com/electron/electron/pull/38776 )
- Added support for configuring `use_remote_checksums` via `.npmrc`. [#​40253](https://togithub.com/electron/electron/pull/40253 )
- Migrated `app.{set|get}LoginItemSettings(settings)` to use Apple's new recommended underlying framework on macOS. [#​37244](https://togithub.com/electron/electron/pull/37244 )
- This PR adds several properties to the `display` object including `detected`, `maximumCursorSize`, and `nativeOrigin`. [#​40497](https://togithub.com/electron/electron/pull/40497 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40554 ))</span>
##### Removed/Deprecated
- Removed extraneous dlls from Windows zip files. [#​41129](https://togithub.com/electron/electron/pull/41129 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/41128 ))</span>
#### Fixes
- Added support for `ThumbnailCapturerMac` and `ScreenCaptureKitStreamPickerSonoma` chromium feature flags to bypass deprecated API warning on macOS 14.4. [#​41329](https://togithub.com/electron/electron/pull/41329 )
- Fixed Electron 29.0.0-beta.3 regression that could pop up context menus in the wrong location. [#​41296](https://togithub.com/electron/electron/pull/41296 )
- Fixed an issue where `import.meta.url` did not work in the renderer process with `contextIsolation` enabled. [#​41265](https://togithub.com/electron/electron/pull/41265 )
- Fixed an issue where `original-fs` methods were not properly corrected for patched imports. [#​41238](https://togithub.com/electron/electron/pull/41238 )
- Fixed an issue where draggable regions didn't work across platforms. [#​41112](https://togithub.com/electron/electron/pull/41112 )
- Fixed crash in MessagePort::close. [#​41237](https://togithub.com/electron/electron/pull/41237 )
- Fixed the `GrantFileProtocolExtraPrivileges` not correctly preventing `fetch()` calls to `file://` URLs. [#​40864](https://togithub.com/electron/electron/pull/40864 )
##### Also in earlier versions...
- Apply module search paths restriction on worker and child process. [#​41138](https://togithub.com/electron/electron/pull/41138 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41139 ), [28](https://togithub.com/electron/electron/pull/41137 ))</span>
- Backported fix for AVX related crashes on certain linux machines. [#​40536](https://togithub.com/electron/electron/pull/40536 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40540 ), [27](https://togithub.com/electron/electron/pull/40541 ), [28](https://togithub.com/electron/electron/pull/40542 ))</span>
- CSS style `-webkit-app-region: drag;` has no effect in full screen mode. [#​41332](https://togithub.com/electron/electron/pull/41332 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41331 ), [28](https://togithub.com/electron/electron/pull/41330 ))</span>
- Fixed "will-navigate" not being emitted when pressing links in `chrome:` pages. [#​40390](https://togithub.com/electron/electron/pull/40390 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40524 ), [28](https://togithub.com/electron/electron/pull/40525 ))</span>
- Fixed `session.fromPartition()` key lookup bug. [#​41084](https://togithub.com/electron/electron/pull/41084 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/41083 ))</span>
- Fixed a crash resultant from trying to listen to power-related events before the `ready` event was emitted on Linux. [#​40925](https://togithub.com/electron/electron/pull/40925 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40922 ), [27](https://togithub.com/electron/electron/pull/40923 ), [28](https://togithub.com/electron/electron/pull/40924 ))</span>
- Fixed a crash that started occurring sporadically with some types of macOS window close. [#​41299](https://togithub.com/electron/electron/pull/41299 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/41298 ))</span>
- Fixed a partition alloc ref count check for higher MacOS versions. [#​40766](https://togithub.com/electron/electron/pull/40766 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40765 ))</span>
- Fixed a potential `async_hooks` crash when listening for the `restore` event on Windows after minimizing a maximized BrowserWindow. [#​41146](https://togithub.com/electron/electron/pull/41146 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41144 ), [28](https://togithub.com/electron/electron/pull/41145 ))</span>
- Fixed a potential crash when calling `dialog.showMessageBoxSync`. [#​41043](https://togithub.com/electron/electron/pull/41043 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41041 ), [28](https://togithub.com/electron/electron/pull/41042 ))</span>
- Fixed a potential issue with `async_hook` corruption in some error contexts. [#​40574](https://togithub.com/electron/electron/pull/40574 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40592 ), [27](https://togithub.com/electron/electron/pull/40593 ), [28](https://togithub.com/electron/electron/pull/40594 ))</span>
- Fixed a unexpectedly thrown error in some unsupported chrome extensions. [#​40500](https://togithub.com/electron/electron/pull/40500 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40512 ), [27](https://togithub.com/electron/electron/pull/40513 ), [28](https://togithub.com/electron/electron/pull/40514 ))</span>
- Fixed an error changing file format in `dialog.showOpenDialog` on macOS. [#​40308](https://togithub.com/electron/electron/pull/40308 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40347 ), [28](https://togithub.com/electron/electron/pull/40346 ))</span>
- Fixed an issue where Request objects did not correctly copy headers into fetches. [#​41019](https://togithub.com/electron/electron/pull/41019 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/41103 ))</span>
- Fixed an issue where WebViews could sometimes crash on unload. [#​40400](https://togithub.com/electron/electron/pull/40400 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40443 ), [27](https://togithub.com/electron/electron/pull/40444 ), [28](https://togithub.com/electron/electron/pull/40445 ))</span>
- Fixed an issue where Windows Toast notifications weren't properly dismissed from the Action Center on `notification.close()` if they'd previously been dismissed. [#​40197](https://togithub.com/electron/electron/pull/40197 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40242 ), [27](https://togithub.com/electron/electron/pull/40244 ), [28](https://togithub.com/electron/electron/pull/40243 ))</span>
- Fixed an issue where `MessagePorts` were not being correctly garbage collected when not referenced. [#​40189](https://togithub.com/electron/electron/pull/40189 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40201 ))</span>
- Fixed an issue where `inAppPurchase.getProducts` and `inAppPurchase.purchasedProduct` did not resolve as expected. [#​40957](https://togithub.com/electron/electron/pull/40957 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40955 ), [28](https://togithub.com/electron/electron/pull/40956 ))</span>
- Fixed an issue where `navigator.keyboard.lock()` did not work per [latest expected behavior](https://developer.chrome.com/blog/better-full-screen-mode ). [#​40365](https://togithub.com/electron/electron/pull/40365 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40387 ), [27](https://togithub.com/electron/electron/pull/40388 ), [28](https://togithub.com/electron/electron/pull/40389 ))</span>
- Fixed an issue where `select-usb-device` did not respect the `filter` option in `navigator.usb.requestDevice()`. [#​41197](https://togithub.com/electron/electron/pull/41197 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41196 ), [28](https://togithub.com/electron/electron/pull/41198 ))</span>
- Fixed an issue where `webContents.printToPDF` could fail when certain combinations of `margins` and `pageSize` values are passed. [#​41266](https://togithub.com/electron/electron/pull/41266 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/41267 ))</span>
- Fixed an issue where crashes in `node::Environment` destruction potentially wouldn't be propagated to the `
Service ` exit handler. [#​41301](https://togithub.com/electron/electron/pull/41301 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41300 ), [28](https://togithub.com/electron/electron/pull/41302 ))</span>
- Fixed an issue where devtools could not be re-opened. [#​40666](https://togithub.com/electron/electron/pull/40666 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40679 ))</span>
- Fixed an issue where font requests were incorrectly being sent to dev tools multiple times per resource. [#​40681](https://togithub.com/electron/electron/pull/40681 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40715 ), [28](https://togithub.com/electron/electron/pull/40688 ))</span>
- Fixed an issue where fully occluded windows would return an empty image from `webContents.capturePage()` on Windows and Linux. [#​39730](https://togithub.com/electron/electron/pull/39730 ) <span style="font-size:small;">(Also in [25](https://togithub.com/electron/electron/pull/40186 ), [26](https://togithub.com/electron/electron/pull/40187 ), [27](https://togithub.com/electron/electron/pull/40188 ), [28](https://togithub.com/electron/electron/pull/40185 ))</span>
- Fixed an issue where non-modal windows with vibrancy could have incorrectly rounded corners on Sonoma. [#​41037](https://togithub.com/electron/electron/pull/41037 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41035 ), [28](https://togithub.com/electron/electron/pull/41036 ))</span>
- Fixed an issue where the `printBackground` option in `webContents.printToPDF` did not work as expected. [#​41180](https://togithub.com/electron/electron/pull/41180 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/41179 ))</span>
- Fixed an issue where zoom level settings did not persist per-session for webviews. [#​40650](https://togithub.com/electron/electron/pull/40650 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41269 ), [28](https://togithub.com/electron/electron/pull/41268 ))</span>
- Fixed an issue with webContents interaction with fullscreen and WCO on macOS. [#​40179](https://togithub.com/electron/electron/pull/40179 ) <span style="font-size:small;">(Also in [25](https://togithub.com/electron/electron/pull/40220 ), [26](https://togithub.com/electron/electron/pull/40218 ), [27](https://togithub.com/electron/electron/pull/40217 ), [28](https://togithub.com/electron/electron/pull/40219 ))</span>
- Fixed app incorrectly activating panel windows on macOS Sonoma. [#​40307](https://togithub.com/electron/electron/pull/40307 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40465 ))</span>
- Fixed child window opening in non-active macOS apps. [#​40546](https://togithub.com/electron/electron/pull/40546 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40657 ), [27](https://togithub.com/electron/electron/pull/40658 ), [28](https://togithub.com/electron/electron/pull/40659 ))</span>
- Fixed default protocol handler behavior on Windows. [#​40908](https://togithub.com/electron/electron/pull/40908 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40909 ))</span>
- Fixed file paths passed to `shell.showItemInFolder` not being escaped in Linux. [#​40527](https://togithub.com/electron/electron/pull/40527 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40560 ), [27](https://togithub.com/electron/electron/pull/40561 ), [28](https://togithub.com/electron/electron/pull/40562 ))</span>
- Fixed forked child process not able to send IPC message under some cases on macOS. [#​41102](https://togithub.com/electron/electron/pull/41102 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/41099 ), [27](https://togithub.com/electron/electron/pull/41100 ), [28](https://togithub.com/electron/electron/pull/41101 ))</span>
- Fixed incorrect title bar shown on frameless transparent windows. [#​40862](https://togithub.com/electron/electron/pull/40862 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40868 ), [28](https://togithub.com/electron/electron/pull/40867 ))</span>
- Fixed loading nested ESM dependencies in `node_modules`
- Correctly support the `throwIfNoEntry` option in `fs.statSync`/`fs.lstatSync` in asar files. [#​40221](https://togithub.com/electron/electron/pull/40221 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40224 ))</span>
- Fixed macOS bug that causes window maximize button to be disabled in full-screen mode. [#​41029](https://togithub.com/electron/electron/pull/41029 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41027 ), [28](https://togithub.com/electron/electron/pull/41028 ))</span>
- Fixed on-screen-keyboard not hiding for webviews under some cases. [#​41149](https://togithub.com/electron/electron/pull/41149 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41151 ), [28](https://togithub.com/electron/electron/pull/41150 ))</span>
- Fixed problem with bounds of maximized window when toggle BrowserWindow.setResizable function. [#​40503](https://togithub.com/electron/electron/pull/40503 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40580 ), [27](https://togithub.com/electron/electron/pull/40581 ), [28](https://togithub.com/electron/electron/pull/40582 ))</span>
- Fixed resizing performance issue on macOS. [#​40577](https://togithub.com/electron/electron/pull/40577 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40584 ), [27](https://togithub.com/electron/electron/pull/40585 ), [28](https://togithub.com/electron/electron/pull/40586 ))</span>
- Fixed some redundant permission dialogs while screen sharing on Wayland. [#​40098](https://togithub.com/electron/electron/pull/40098 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40191 ), [27](https://togithub.com/electron/electron/pull/40193 ), [28](https://togithub.com/electron/electron/pull/40192 ))</span>
- Fixed the enabled/disabled behavior of the maximize/fullscreen button of macOS windows. [#​40897](https://togithub.com/electron/electron/pull/40897 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/40895 ), [28](https://togithub.com/electron/electron/pull/40896 ))</span>
- Prevent node mode to be used as script runner by other apps on macOS. [#​40579](https://togithub.com/electron/electron/pull/40579 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40738 ), [27](https://togithub.com/electron/electron/pull/40737 ), [28](https://togithub.com/electron/electron/pull/40710 ))</span>
- Unset all Node envs in node process when parent is a foreign process. [#​40881](https://togithub.com/electron/electron/pull/40881 ) <span style="font-size:small;">(Also in [26](https://togithub.com/electron/electron/pull/40882 ), [27](https://togithub.com/electron/electron/pull/40879 ), [28](https://togithub.com/electron/electron/pull/40880 ))</span>
- Use `activateIgnoringOtherApps` for focusing non-panels on macOS. [#​40570](https://togithub.com/electron/electron/pull/40570 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40621 ))</span>
#### Other Changes
- Re-enabled partition alloc on Mac. [#​33981](https://togithub.com/electron/electron/pull/33981 ) <span style="font-size:small;">(Also in [28](https://togithub.com/electron/electron/pull/40230 ))</span>
- Reverted new WebContentsView and BaseWindow APIs. [#​41060](https://togithub.com/electron/electron/pull/41060 )
- Security: backported fix for chromium:1517354. [#​40969](https://togithub.com/electron/electron/pull/40969 )
#### Notices
##### End of Support for 26.x.y
Electron 26.x.y has reached end-of-support as per the project's [support policy](https://www.electronjs.org/docs/latest/tutorial/electron-timelines#version-support-policy ). Developers and applications are encouraged to upgrade to a newer version of Electron.
### [`v28.2.3`](https://togithub.com/electron/electron/releases/tag/v28.2.3 ): electron v28.2.3
[Compare Source](https://togithub.com/electron/electron/compare/v28.2.2...v28.2.3 )
### Release Notes for v28.2.3
#### Fixes
- Fixed a crash that started occurring sporadically with some types of macOS window close. [#​41298](https://togithub.com/electron/electron/pull/41298 ) <span style="font-size:small;">(Also in [29](https://togithub.com/electron/electron/pull/41299 ))</span>
- Fixed an issue where `webContents.printToPDF` could fail when certain combinations of `margins` and `pageSize` values are passed. [#​41267](https://togithub.com/electron/electron/pull/41267 ) <span style="font-size:small;">(Also in [29](https://togithub.com/electron/electron/pull/41266 ))</span>
- Fixed an issue where crashes in `node::Environment` destruction potentially wouldn't be propagated to the `NodeService` exit handler. [#​41302](https://togithub.com/electron/electron/pull/41302 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41300 ), [29](https://togithub.com/electron/electron/pull/41301 ))</span>
- Fixed an issue where zoom level settings did not persist per-session for webviews. [#​41268](https://togithub.com/electron/electron/pull/41268 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41269 ))</span>
#### Other Changes
- Updated Chromium to 120.0.6099.283. [#​41262](https://togithub.com/electron/electron/pull/41262 )
### [`v28.2.2`](https://togithub.com/electron/electron/releases/tag/v28.2.2 ): electron v28.2.2
[Compare Source](https://togithub.com/electron/electron/compare/v28.2.1...v28.2.2 )
### Release Notes for v28.2.2
#### Fixes
- Fixed an issue where `select-usb-device` did not respect the `filter` option in `navigator.usb.requestDevice()`. [#​41198](https://togithub.com/electron/electron/pull/41198 ) <span style="font-size:small;">(Also in [27](https://togithub.com/electron/electron/pull/41196 ), [29](https://togithub.com/electron/electron/pull/41197 ))</span>
#### Other Changes
- Security: backported fix for [`1511567`](https://togithub.com/electron/electron/commit/1511567 ).
- Security: backported fix for [`1514777`](https://togithub.com/electron/electron/commit/1514777 ).
- Security: backported fix for [`1511085`](https://togithub.com/electron/electron/commit/1511085 ).
- Security: backported fix for [`1519980`](https://togithub.com/electron/electron/commit/1519980 ). [#​41178](https://togithub.com/electron/electron/pull/41178 )
- Updated Chromium to 120.0.6099.276. [#​41195](https://togithub.com/electron/electron/pull/41195 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-20 08:08:38 +00:00
LongYinan
aa3baa60d1
chore: bump up @types/react-datepicker version to v6 ( #5839 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@types/react-datepicker](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-datepicker ) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-datepicker )) | [`^4.19.0` -> `^6.0.0`](https://renovatebot.com/diffs/npm/@types%2freact-datepicker/4.19.3/6.0.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-20 06:27:23 +00:00
LongYinan
b6f776ca24
chore: bump up undici version to v6.6.1 [SECURITY] ( #5828 )
...
[](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.0.1` -> `6.6.1`](https://renovatebot.com/diffs/npm/undici/6.0.1/6.6.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
### GitHub Vulnerability Alerts
#### [CVE-2024-24750](https://togithub.com/nodejs/undici/security/advisories/GHSA-9f24-jqhm-jfcw )
### Impact
Calling `fetch(url)` and not consuming the incoming body ((or consuming it very slowing) will lead to a memory leak.
### Patches
Patched in v6.6.1
### Workarounds
Make sure to always consume the incoming body.
#### [CVE-2024-24758](https://togithub.com/nodejs/undici/security/advisories/GHSA-3787-6prv-h9w3 )
### Impact
Undici already cleared Authorization headers on cross-origin redirects, but did not clear `Proxy-Authorization` headers.
### Patches
This is patched in v5.28.3 and v6.6.1
### Workarounds
There are no known workarounds.
### References
- https://fetch.spec.whatwg.org/#authentication-entries
- https://github.com/nodejs/undici/security/advisories/GHSA-wqq4-5wpv-mx2g
---
### Release Notes
<details>
<summary>nodejs/undici (undici)</summary>
### [`v6.6.1`](https://togithub.com/nodejs/undici/releases/tag/v6.6.1 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.6.0...v6.6.1 )
#### ⚠️ Security Release ⚠️
Details on the vulnerabilities fixed will be shared in the next couple of days.
#### What's Changed
- fix: flaky debug test by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2687 ](https://togithub.com/nodejs/undici/pull/2687 )
- build(deps): bump github/codeql-action from 3.22.12 to 3.23.2 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2688 ](https://togithub.com/nodejs/undici/pull/2688 )
- build(deps): bump actions/dependency-review-action from 3.1.0 to 4.0.0 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2689 ](https://togithub.com/nodejs/undici/pull/2689 )
- fix: ci pipeline warnings by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2685 ](https://togithub.com/nodejs/undici/pull/2685 )
- perf: optimize Iterator by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2692 ](https://togithub.com/nodejs/undici/pull/2692 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.6.0...v6.6.1
### [`v6.6.0`](https://togithub.com/nodejs/undici/releases/tag/v6.6.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.5.0...v6.6.0 )
#### What's Changed
- add webSocket example by [@​mertcanaltin](https://togithub.com/mertcanaltin ) in [https://github.com/nodejs/undici/pull/2626 ](https://togithub.com/nodejs/undici/pull/2626 )
- chore: remove atomic-sleep as dev dependency by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2648 ](https://togithub.com/nodejs/undici/pull/2648 )
- chore: remove semver as dev dependency by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2646 ](https://togithub.com/nodejs/undici/pull/2646 )
- chore: remove table as dev dependency by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2649 ](https://togithub.com/nodejs/undici/pull/2649 )
- chore: remove delay as dev dependency by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2647 ](https://togithub.com/nodejs/undici/pull/2647 )
- chore: reduce noise in test-logs test/issue-2349.js by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2655 ](https://togithub.com/nodejs/undici/pull/2655 )
- chore: fix faketimer warning in test/request-timeout.js by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2656 ](https://togithub.com/nodejs/undici/pull/2656 )
- chore: reduce noise in test logs test/client-node-max-header-size.js by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2654 ](https://togithub.com/nodejs/undici/pull/2654 )
- refactor: use fromInnerResponse by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2635 ](https://togithub.com/nodejs/undici/pull/2635 )
- fix: support deflate raw responses by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2650 ](https://togithub.com/nodejs/undici/pull/2650 )
- Support building for externally shared js builtins by [@​mochaaP](https://togithub.com/mochaaP ) in [https://github.com/nodejs/undici/pull/2643 ](https://togithub.com/nodejs/undici/pull/2643 )
- fix: typo clampAndCoarsenConnectionTimingInfo by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2653 ](https://togithub.com/nodejs/undici/pull/2653 )
- chore: use 'node:'-prefix for requiring node core modules by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2662 ](https://togithub.com/nodejs/undici/pull/2662 )
- build(deps-dev): bump husky from 8.0.3 to 9.0.7 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2667 ](https://togithub.com/nodejs/undici/pull/2667 )
- build(deps-dev): bump cronometro from 1.2.0 to 2.0.2 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2668 ](https://togithub.com/nodejs/undici/pull/2668 )
- remove timers/promises import by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2665 ](https://togithub.com/nodejs/undici/pull/2665 )
- chore: fix various codesmells by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2669 ](https://togithub.com/nodejs/undici/pull/2669 )
- chore: remove this alias in agent.js by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2671 ](https://togithub.com/nodejs/undici/pull/2671 )
- chore: use optional chaining by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2666 ](https://togithub.com/nodejs/undici/pull/2666 )
- chore: small perf improvements by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2661 ](https://togithub.com/nodejs/undici/pull/2661 )
- implement spec changes from a while ago by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2676 ](https://togithub.com/nodejs/undici/pull/2676 )
- websocket: fix close when no closing code is received by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2680 ](https://togithub.com/nodejs/undici/pull/2680 )
- fix: make ci less flaky by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2684 ](https://togithub.com/nodejs/undici/pull/2684 )
#### New Contributors
- [@​mochaaP](https://togithub.com/mochaaP ) made their first contribution in [https://github.com/nodejs/undici/pull/2643 ](https://togithub.com/nodejs/undici/pull/2643 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.5.0...v6.6.0
### [`v6.5.0`](https://togithub.com/nodejs/undici/releases/tag/v6.5.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.4.0...v6.5.0 )
#### What's Changed
- build(deps-dev): bump jsdom from 23.2.0 to 24.0.0 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2632 ](https://togithub.com/nodejs/undici/pull/2632 )
- feat: Implement EventSource by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2608 ](https://togithub.com/nodejs/undici/pull/2608 )
- fix: readable body by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2642 ](https://togithub.com/nodejs/undici/pull/2642 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.4.0...v6.5.0
### [`v6.4.0`](https://togithub.com/nodejs/undici/releases/tag/v6.4.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.3.0...v6.4.0 )
##### What's Changed
- refactor: version cleanup by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2605 ](https://togithub.com/nodejs/undici/pull/2605 )
- cacheStorage: separate matchAll logic by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2599 ](https://togithub.com/nodejs/undici/pull/2599 )
- cleanup index by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2598 ](https://togithub.com/nodejs/undici/pull/2598 )
- feat: port `balanced-pool`, `ca-fingerprint`, `client-abort` tests to `node:test` by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2584 ](https://togithub.com/nodejs/undici/pull/2584 )
- ci: unpin nodejs workflow version by [@​dominykas](https://togithub.com/dominykas ) in [https://github.com/nodejs/undici/pull/2434 ](https://togithub.com/nodejs/undici/pull/2434 )
- test([#​2600](https://togithub.com/nodejs/undici/issues/2600 )): Flaky debug test by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2607 ](https://togithub.com/nodejs/undici/pull/2607 )
- fix: h2 hang issue with empty body by [@​timursevimli](https://togithub.com/timursevimli ) in [https://github.com/nodejs/undici/pull/2601 ](https://togithub.com/nodejs/undici/pull/2601 )
- Fix tests for Node.js v21 by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2609 ](https://togithub.com/nodejs/undici/pull/2609 )
- perf(cache): avoid Request and Response initialization by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2610 ](https://togithub.com/nodejs/undici/pull/2610 )
- Add more libraries to benchmarks by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2614 ](https://togithub.com/nodejs/undici/pull/2614 )
- feat: port `client-connect`, `client-dispatch`, `client-errors` test to `node:test` by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2591 ](https://togithub.com/nodejs/undici/pull/2591 )
- exit with 1 if WPT runner has unexpected errors by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2621 ](https://togithub.com/nodejs/undici/pull/2621 )
- Fix tests for Node.js v20.11.0 by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2618 ](https://togithub.com/nodejs/undici/pull/2618 )
- fix(mock-agent): split set-cookie by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2619 ](https://togithub.com/nodejs/undici/pull/2619 )
- feat: implement throwOnMaxRedirect option for RedirectHandler by [@​mertcanaltin](https://togithub.com/mertcanaltin ) in [https://github.com/nodejs/undici/pull/2563 ](https://togithub.com/nodejs/undici/pull/2563 )
- test: fix flaky debug test by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2613 ](https://togithub.com/nodejs/undici/pull/2613 )
- fix: hide statusOutput if empty in handleRunnerCompletion by [@​Uzlopak](https://togithub.com/Uzlopak ) in [https://github.com/nodejs/undici/pull/2624 ](https://togithub.com/nodejs/undici/pull/2624 )
- docs: Fix typo in Debug.md by [@​Skn0tt](https://togithub.com/Skn0tt ) in [https://github.com/nodejs/undici/pull/2625 ](https://togithub.com/nodejs/undici/pull/2625 )
- fix(cache): set AbortSignal by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2612 ](https://togithub.com/nodejs/undici/pull/2612 )
- Use correct http Agent for node-fetch, axios, got and request by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2629 ](https://togithub.com/nodejs/undici/pull/2629 )
##### New Contributors
- [@​timursevimli](https://togithub.com/timursevimli ) made their first contribution in [https://github.com/nodejs/undici/pull/2601 ](https://togithub.com/nodejs/undici/pull/2601 )
- [@​mertcanaltin](https://togithub.com/mertcanaltin ) made their first contribution in [https://github.com/nodejs/undici/pull/2563 ](https://togithub.com/nodejs/undici/pull/2563 )
- [@​Skn0tt](https://togithub.com/Skn0tt ) made their first contribution in [https://github.com/nodejs/undici/pull/2625 ](https://togithub.com/nodejs/undici/pull/2625 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.3.0...v6.4.0
### [`v6.3.0`](https://togithub.com/nodejs/undici/releases/tag/v6.3.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.2.1...v6.3.0 )
#### What's Changed
- Clear all timeout on destroy and close by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2535 ](https://togithub.com/nodejs/undici/pull/2535 )
- ConnectOptions should include 'origin' field by [@​dvoytenko](https://togithub.com/dvoytenko ) in [https://github.com/nodejs/undici/pull/2532 ](https://togithub.com/nodejs/undici/pull/2532 )
- perf: avoid toLowerCase call by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2537 ](https://togithub.com/nodejs/undici/pull/2537 )
- revert [`a1a8136`](https://togithub.com/nodejs/undici/commit/a1a8136 ) by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2539 ](https://togithub.com/nodejs/undici/pull/2539 )
- docs: add Util to sidebar by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2529 ](https://togithub.com/nodejs/undici/pull/2529 )
- fix: call explicitly unregister by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2534 ](https://togithub.com/nodejs/undici/pull/2534 )
- fix: check the content-type of invalid formData by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2541 ](https://togithub.com/nodejs/undici/pull/2541 )
- Add request examples. by [@​autopulated](https://togithub.com/autopulated ) in [https://github.com/nodejs/undici/pull/2380 ](https://togithub.com/nodejs/undici/pull/2380 )
- fix(HTTP/2): handle consumption of aborted request by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2387 ](https://togithub.com/nodejs/undici/pull/2387 )
- chore: update tst test by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2538 ](https://togithub.com/nodejs/undici/pull/2538 )
- fix(fetch): do not abort fetch on redirect by [@​angelyan](https://togithub.com/angelyan ) in [https://github.com/nodejs/undici/pull/2545 ](https://togithub.com/nodejs/undici/pull/2545 )
- drop verifyVersion in scripts by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2549 ](https://togithub.com/nodejs/undici/pull/2549 )
- types: remove unused Client and Pool types by [@​RafaelGSS](https://togithub.com/RafaelGSS ) in [https://github.com/nodejs/undici/pull/2557 ](https://togithub.com/nodejs/undici/pull/2557 )
- lib: fix Host header when CONNECT ProxyAgent by [@​RafaelGSS](https://togithub.com/RafaelGSS ) in [https://github.com/nodejs/undici/pull/2556 ](https://togithub.com/nodejs/undici/pull/2556 )
- feat: port cookies tests to node runner by [@​pmarchini](https://togithub.com/pmarchini ) in [https://github.com/nodejs/undici/pull/2547 ](https://togithub.com/nodejs/undici/pull/2547 )
- feat: port webidl tests to node test runner by [@​ilteoood](https://togithub.com/ilteoood ) in [https://github.com/nodejs/undici/pull/2554 ](https://togithub.com/nodejs/undici/pull/2554 )
- perf: Improve percentDecode by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2562 ](https://togithub.com/nodejs/undici/pull/2562 )
- Fix parseHashWithOptions regex by [@​flapenna](https://togithub.com/flapenna ) in [https://github.com/nodejs/undici/pull/2561 ](https://togithub.com/nodejs/undici/pull/2561 )
- feat: port diagnostic-channel tests to node test runner by [@​ilteoood](https://togithub.com/ilteoood ) in [https://github.com/nodejs/undici/pull/2559 ](https://togithub.com/nodejs/undici/pull/2559 )
- feat: port websocket tests to node test runner by [@​ilteoood](https://togithub.com/ilteoood ) in [https://github.com/nodejs/undici/pull/2553 ](https://togithub.com/nodejs/undici/pull/2553 )
- build(deps-dev): bump tsd from 0.29.0 to 0.30.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2551 ](https://togithub.com/nodejs/undici/pull/2551 )
- build(deps): bump actions/setup-node from 4.0.0 to 4.0.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2572 ](https://togithub.com/nodejs/undici/pull/2572 )
- build(deps): bump github/codeql-action from 2.22.5 to 3.22.12 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2574 ](https://togithub.com/nodejs/undici/pull/2574 )
- Update `@matteo.collina/tspl` to 0.1.1 by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2576 ](https://togithub.com/nodejs/undici/pull/2576 )
- mark wpt as failing by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2581 ](https://togithub.com/nodejs/undici/pull/2581 )
- feat: port `abort-controller.js` tests to `node:test` runner by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2564 ](https://togithub.com/nodejs/undici/pull/2564 )
- fix data url test by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2580 ](https://togithub.com/nodejs/undici/pull/2580 )
- feat: port `async_hooks.js` tests to `node:test` runner by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2568 ](https://togithub.com/nodejs/undici/pull/2568 )
- feat: port `agent.js` tests to `node:test` runner by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2566 ](https://togithub.com/nodejs/undici/pull/2566 )
- feat: port `abort-event-emitter.js` tests to `node:test` runnner by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2565 ](https://togithub.com/nodejs/undici/pull/2565 )
- feat: port first half of fetch tests to node test runner by [@​anurag-roy](https://togithub.com/anurag-roy ) in [https://github.com/nodejs/undici/pull/2569 ](https://togithub.com/nodejs/undici/pull/2569 )
- perf: bypass method validation by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2583 ](https://togithub.com/nodejs/undici/pull/2583 )
- fetch: warn when using patch method by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2577 ](https://togithub.com/nodejs/undici/pull/2577 )
- feat: port `autoselectfamily.js` tests to `node:test` runner by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2570 ](https://togithub.com/nodejs/undici/pull/2570 )
- feat: port remaining fetch tests to node test runner by [@​anurag-roy](https://togithub.com/anurag-roy ) in [https://github.com/nodejs/undici/pull/2587 ](https://togithub.com/nodejs/undici/pull/2587 )
- fix: use isArrayBuffer instead of isAnyArrayBuffer by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2586 ](https://togithub.com/nodejs/undici/pull/2586 )
- Feat/migrate tests to node runner by [@​pmarchini](https://togithub.com/pmarchini ) in [https://github.com/nodejs/undici/pull/2593 ](https://togithub.com/nodejs/undici/pull/2593 )
- abort request with reason if one is provided by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2592 ](https://togithub.com/nodejs/undici/pull/2592 )
- feat: port tst test to node test runner by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2595 ](https://togithub.com/nodejs/undici/pull/2595 )
- feat([#​2191](https://togithub.com/nodejs/undici/issues/2191 )): Add support for `NODE_DEBUG` by [@​metcoder95](https://togithub.com/metcoder95 ) in [https://github.com/nodejs/undici/pull/2585 ](https://togithub.com/nodejs/undici/pull/2585 )
- cacheStorage: fix bugs make wpts pass by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2596 ](https://togithub.com/nodejs/undici/pull/2596 )
- fix: non-object error in abort throws bad error by [@​atlowChemi](https://togithub.com/atlowChemi ) in [https://github.com/nodejs/undici/pull/2597 ](https://togithub.com/nodejs/undici/pull/2597 )
- fix: add test helper for closing server as promise by [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) in [https://github.com/nodejs/undici/pull/2604 ](https://togithub.com/nodejs/undici/pull/2604 )
#### New Contributors
- [@​dvoytenko](https://togithub.com/dvoytenko ) made their first contribution in [https://github.com/nodejs/undici/pull/2532 ](https://togithub.com/nodejs/undici/pull/2532 )
- [@​autopulated](https://togithub.com/autopulated ) made their first contribution in [https://github.com/nodejs/undici/pull/2380 ](https://togithub.com/nodejs/undici/pull/2380 )
- [@​angelyan](https://togithub.com/angelyan ) made their first contribution in [https://github.com/nodejs/undici/pull/2545 ](https://togithub.com/nodejs/undici/pull/2545 )
- [@​pmarchini](https://togithub.com/pmarchini ) made their first contribution in [https://github.com/nodejs/undici/pull/2547 ](https://togithub.com/nodejs/undici/pull/2547 )
- [@​ilteoood](https://togithub.com/ilteoood ) made their first contribution in [https://github.com/nodejs/undici/pull/2554 ](https://togithub.com/nodejs/undici/pull/2554 )
- [@​flapenna](https://togithub.com/flapenna ) made their first contribution in [https://github.com/nodejs/undici/pull/2561 ](https://togithub.com/nodejs/undici/pull/2561 )
- [@​sosukesuzuki](https://togithub.com/sosukesuzuki ) made their first contribution in [https://github.com/nodejs/undici/pull/2576 ](https://togithub.com/nodejs/undici/pull/2576 )
- [@​anurag-roy](https://togithub.com/anurag-roy ) made their first contribution in [https://github.com/nodejs/undici/pull/2569 ](https://togithub.com/nodejs/undici/pull/2569 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.2.1...v6.3.0
### [`v6.2.1`](https://togithub.com/nodejs/undici/releases/tag/v6.2.1 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.2.0...v6.2.1 )
##### What's Changed
- perf: use tree by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2528 ](https://togithub.com/nodejs/undici/pull/2528 )
- chore: reduce dependencies by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2533 ](https://togithub.com/nodejs/undici/pull/2533 )
- Remove timers in agent.js by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2536 ](https://togithub.com/nodejs/undici/pull/2536 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.2.0...v6.2.1
### [`v6.2.0`](https://togithub.com/nodejs/undici/releases/tag/v6.2.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.1.0...v6.2.0 )
#### What's Changed
- Remove FinalizationRegistry from Agent by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2530 ](https://togithub.com/nodejs/undici/pull/2530 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.1.0...v6.2.0
### [`v6.1.0`](https://togithub.com/nodejs/undici/releases/tag/v6.1.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.0.1...v6.1.0 )
#### What's Changed
- fix: more sensible stack trace from dump error by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2503 ](https://togithub.com/nodejs/undici/pull/2503 )
- refactor: remove some node compat by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2502 ](https://togithub.com/nodejs/undici/pull/2502 )
- refactor: version cleanup by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2507 ](https://togithub.com/nodejs/undici/pull/2507 )
- perf(fetch): Improve fetch of detaurl by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2479 ](https://togithub.com/nodejs/undici/pull/2479 )
- feat: expose parseHeader by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2511 ](https://togithub.com/nodejs/undici/pull/2511 )
- perf(fetch): optimize call `dispatch` by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2493 ](https://togithub.com/nodejs/undici/pull/2493 )
- perf(util/parseHeaders): If the header name is buffer by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2501 ](https://togithub.com/nodejs/undici/pull/2501 )
- perf: twice faster method check by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2495 ](https://togithub.com/nodejs/undici/pull/2495 )
- refactor: remove Error.captureStackTrace by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2509 ](https://togithub.com/nodejs/undici/pull/2509 )
- perf: Improve processHeader by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2513 ](https://togithub.com/nodejs/undici/pull/2513 )
- perf: reduce `String#toLowerCase` call by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2516 ](https://togithub.com/nodejs/undici/pull/2516 )
- perf: optimize consumeEnd by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2510 ](https://togithub.com/nodejs/undici/pull/2510 )
- perf: reduce tst built time by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2517 ](https://togithub.com/nodejs/undici/pull/2517 )
- feat: allow customization of build environment by [@​khardix](https://togithub.com/khardix ) in [https://github.com/nodejs/undici/pull/2403 ](https://togithub.com/nodejs/undici/pull/2403 )
- fix: clear cache by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2519 ](https://togithub.com/nodejs/undici/pull/2519 )
- feat: Add resource timing entries for connection, request and response by [@​ToshB](https://togithub.com/ToshB ) in [https://github.com/nodejs/undici/pull/2481 ](https://togithub.com/nodejs/undici/pull/2481 )
- Call fg.unregister() after a dispatcher is done, adds UNDICI_NO_FG to… by [@​mcollina](https://togithub.com/mcollina ) in [https://github.com/nodejs/undici/pull/2527 ](https://togithub.com/nodejs/undici/pull/2527 )
- feat: expose headerNameToString by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2525 ](https://togithub.com/nodejs/undici/pull/2525 )
#### New Contributors
- [@​khardix](https://togithub.com/khardix ) made their first contribution in [https://github.com/nodejs/undici/pull/2403 ](https://togithub.com/nodejs/undici/pull/2403 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.0.1...v6.1.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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-20 06:14:08 +00:00
LongYinan
88e5ab061f
chore: bump up webpack-dev-server version to v5 ( #5819 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [webpack-dev-server](https://togithub.com/webpack/webpack-dev-server ) | [`^4.15.1` -> `^5.0.0`](https://renovatebot.com/diffs/npm/webpack-dev-server/4.15.1/5.0.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>webpack/webpack-dev-server (webpack-dev-server)</summary>
### [`v5.0.2`](https://togithub.com/webpack/webpack-dev-server/blob/HEAD/CHANGELOG.md#502-2024-02-16 )
[Compare Source](https://togithub.com/webpack/webpack-dev-server/compare/v5.0.1...v5.0.2 )
### [`v5.0.1`](https://togithub.com/webpack/webpack-dev-server/blob/HEAD/CHANGELOG.md#501-2024-02-13 )
[Compare Source](https://togithub.com/webpack/webpack-dev-server/compare/v5.0.0...v5.0.1 )
### [`v5.0.0`](https://togithub.com/webpack/webpack-dev-server/blob/HEAD/CHANGELOG.md#500-2024-02-12 )
[Compare Source](https://togithub.com/webpack/webpack-dev-server/compare/v4.15.1...v5.0.0 )
[Migration Guide and Changes](https://togithub.com/webpack/webpack-dev-server/blob/master/migration-v5.md ).
##### [4.15.1](https://togithub.com/webpack/webpack-dev-server/compare/v4.15.0...v4.15.1 ) (2023-06-09)
##### Bug Fixes
- replace `::` with `localhost` before openBrowser() ([#​4856](https://togithub.com/webpack/webpack-dev-server/issues/4856 )) ([874c44b](874c44b072 ))
- **types:** compatibility with `@types/ws` ([#​4899](https://togithub.com/webpack/webpack-dev-server/issues/4899 )) ([34bcec2](34bcec242b ))
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-20 04:39:28 +00:00
LongYinan
18e212b95c
chore: bump up linter to v7 (major) ( #5820 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint ) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin )) | [`^6.13.1` -> `^7.0.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.13.1/7.0.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint ) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`^6.13.1` -> `^7.0.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.13.1/7.0.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)</summary>
### [`v7.0.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#702-2024-02-19 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.0.1...v7.0.2 )
##### 🩹 Fixes
- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests
##### ❤️ Thank You
- Brad Zacher
- Gareth Jones
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v7.0.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#701-2024-02-12 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.0.0...v7.0.1 )
##### 🩹 Fixes
- **eslint-plugin:** update peer dep for parser
##### ❤️ Thank You
- Tim Dorr
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v7.0.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#700-2024-02-12 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.21.0...v7.0.0 )
##### 🚀 Features
- ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
- add support for flat configs
##### 🩹 Fixes
- **eslint-plugin:** \[prefer-find] stop throwing type errors when converting symbols to numbers
##### ⚠️ Breaking Changes
- ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
##### ❤️ Thank You
- Brad Zacher
- Kirk Waiblinger
- StyleShit
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.21.0 (2024-02-05)
##### 🚀 Features
- export plugin metadata
- allow `parserOptions.project: false`
- **eslint-plugin:** add rule prefer-find
##### 🩹 Fixes
- **eslint-plugin:** \[no-unused-vars] don't report on types referenced in export assignment expression
- **eslint-plugin:** \[switch-exhaustiveness-check] better support for intersections, infinite types, non-union values
- **eslint-plugin:** \[consistent-type-imports] dont report on types used in export assignment expressions
- **eslint-plugin:** \[no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option
- **eslint-plugin:** \[class-literal-property-style] allow getter when same key setter exists
- **eslint-plugin:** \[no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before `as` keyword
##### ❤️ Thank You
- auvred
- Brad Zacher
- Kirk Waiblinger
- Pete Gonzalez
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.20.0 (2024-01-29)
##### 🚀 Features
- **eslint-plugin:** \[member-ordering] allow easy reuse of the default ordering
##### 🩹 Fixes
- **eslint-plugin:** \[no-useless-template-literals] incorrect bigint autofix result
- **eslint-plugin:** \[prefer-nullish-coalescing] treat any/unknown as non-nullable
- **eslint-plugin:** \[no-useless-template-literals] report Infinity & NaN
- **eslint-plugin:** \[prefer-readonly] disable checking accessors
##### ❤️ Thank You
- Alex Parloti
- auvred
- James Browning
- StyleShit
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.19.1 (2024-01-22)
##### 🩹 Fixes
- **type-utils:** preventing isUnsafeAssignment infinite recursive calls
- **eslint-plugin:** \[no-unnecessary-condition] fix false positive for type variable
##### ❤️ Thank You
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.19.0 (2024-01-15)
##### 🚀 Features
- **eslint-plugin:** \[prefer-promise-reject-errors] add rule
- **eslint-plugin:** \[no-array-delete] add new rule
- **eslint-plugin:** \[no-useless-template-literals] add fix suggestions
##### 🩹 Fixes
- **eslint-plugin:** \[no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression
- **eslint-plugin:** \[no-unnecesary-type-assertion] treat unknown/any as nullable
##### ❤️ Thank You
- auvred
- Brad Zacher
- Josh Goldberg ✨
- Joshua Chen
- LJX
- Steven
- StyleShit
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.18.1 (2024-01-08)
##### 🩹 Fixes
- **eslint-plugin:** \[no-non-null-assertion] provide valid fix when member access is on next line
- **eslint-plugin:** \[no-unnecessary-condition] improve checking optional callee
- **eslint-plugin:** \[prefer-readonly] support modifiers of unions and intersections
- **eslint-plugin:** \[switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option
##### ❤️ Thank You
- auvred
- James
- Josh Goldberg ✨
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.18.0 (2024-01-06)
##### 🚀 Features
- **typescript-estree:** throw on invalid update expressions
- **eslint-plugin:** \[no-var-requires, no-require-imports] allow option
##### ❤️ Thank You
- auvred
- Joshua Chen
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.21.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6210-2024-02-05 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.20.0...v6.21.0 )
##### 🚀 Features
- export plugin metadata
- allow `parserOptions.project: false`
- **eslint-plugin:** add rule prefer-find
##### 🩹 Fixes
- **eslint-plugin:** \[no-unused-vars] don't report on types referenced in export assignment expression
- **eslint-plugin:** \[switch-exhaustiveness-check] better support for intersections, infinite types, non-union values
- **eslint-plugin:** \[consistent-type-imports] dont report on types used in export assignment expressions
- **eslint-plugin:** \[no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option
- **eslint-plugin:** \[class-literal-property-style] allow getter when same key setter exists
- **eslint-plugin:** \[no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before `as` keyword
##### ❤️ Thank You
- auvred
- Brad Zacher
- Kirk Waiblinger
- Pete Gonzalez
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.20.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6200-2024-01-29 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.1...v6.20.0 )
##### 🚀 Features
- **eslint-plugin:** \[member-ordering] allow easy reuse of the default ordering
##### 🩹 Fixes
- **eslint-plugin:** \[no-useless-template-literals] incorrect bigint autofix result
- **eslint-plugin:** \[prefer-nullish-coalescing] treat any/unknown as non-nullable
- **eslint-plugin:** \[no-useless-template-literals] report Infinity & NaN
- **eslint-plugin:** \[prefer-readonly] disable checking accessors
##### ❤️ Thank You
- Alex Parloti
- auvred
- James Browning
- StyleShit
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.19.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6191-2024-01-22 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.0...v6.19.1 )
##### 🩹 Fixes
- **type-utils:** preventing isUnsafeAssignment infinite recursive calls
- **eslint-plugin:** \[no-unnecessary-condition] fix false positive for type variable
##### ❤️ Thank You
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.19.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6190-2024-01-15 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.18.1...v6.19.0 )
##### 🚀 Features
- **eslint-plugin:** \[prefer-promise-reject-errors] add rule
- **eslint-plugin:** \[no-array-delete] add new rule
- **eslint-plugin:** \[no-useless-template-literals] add fix suggestions
##### 🩹 Fixes
- **eslint-plugin:** \[no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression
- **eslint-plugin:** \[no-unnecesary-type-assertion] treat unknown/any as nullable
##### ❤️ Thank You
- auvred
- Brad Zacher
- Josh Goldberg ✨
- Joshua Chen
- LJX
- Steven
- StyleShit
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.18.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6181-2024-01-08 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.18.0...v6.18.1 )
##### 🩹 Fixes
- **eslint-plugin:** \[no-non-null-assertion] provide valid fix when member access is on next line
- **eslint-plugin:** \[no-unnecessary-condition] improve checking optional callee
- **eslint-plugin:** \[prefer-readonly] support modifiers of unions and intersections
- **eslint-plugin:** \[switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option
##### ❤️ Thank You
- auvred
- James
- Josh Goldberg ✨
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.18.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6180-2024-01-06 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.17.0...v6.18.0 )
##### 🚀 Features
- **typescript-estree:** throw on invalid update expressions
- **eslint-plugin:** \[no-var-requires, no-require-imports] allow option
##### ❤️ Thank You
- auvred
- Joshua Chen
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.17.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6170-2024-01-01 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0 )
##### Bug Fixes
- **eslint-plugin:** \[no-restricted-imports] prevent crash when `patterns` or `paths` in options are empty ([#​8108](https://togithub.com/typescript-eslint/typescript-eslint/issues/8108 )) ([675e987](675e987ca1 ))
##### Features
- **eslint-plugin:** \[no-floating-promises] flag result of .map(async) ([#​7897](https://togithub.com/typescript-eslint/typescript-eslint/issues/7897 )) ([5857356](5857356962 ))
- **eslint-plugin:** \[switch-exhaustiveness-check] add an option to warn against a `default` case on an already exhaustive `switch` ([#​7539](https://togithub.com/typescript-eslint/typescript-eslint/issues/7539 )) ([6a219bd](6a219bdfe6 ))
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.16.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6160-2023-12-25 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0 )
##### Bug Fixes
- **eslint-plugin:** \[unbound-method] exempt all non-Promise built-in statics ([#​8096](https://togithub.com/typescript-eslint/typescript-eslint/issues/8096 )) ([3182959](31829591e2 ))
##### Features
- **eslint-plugin:** deprecate formatting (meta.type: layout) rules ([#​8073](https://togithub.com/typescript-eslint/typescript-eslint/issues/8073 )) ([04dea84](04dea84e8e ))
- **eslint-plugin:** deprecate no-extra-semi in favor of ESLint Stylistic equivalent ([#​8123](https://togithub.com/typescript-eslint/typescript-eslint/issues/8123 )) ([9368bf3](9368bf390a ))
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.15.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6150-2023-12-18 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0 )
##### Features
- **eslint-plugin:** \[no-useless-template-literals] add new rule ([#​7957](https://togithub.com/typescript-eslint/typescript-eslint/issues/7957 )) ([ff75785](ff75785f4c )), closes [#​2846](https://togithub.com/typescript-eslint/typescript-eslint/issues/2846 )
- require-array-sort-compare + toSorted ([#​8052](https://togithub.com/typescript-eslint/typescript-eslint/issues/8052 )) ([c9661c8](c9661c8bbf ))
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.14.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6140-2023-12-11 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.2...v6.14.0 )
##### Bug Fixes
- **eslint-plugin:** add no-unsafe-unary-minus, prefer-destructuring to disable-type-checked ([#​8038](https://togithub.com/typescript-eslint/typescript-eslint/issues/8038 )) ([431cd15](431cd1559f ))
- **eslint-plugin:** correct message for `no-unsafe-unary-minus` ([#​7998](https://togithub.com/typescript-eslint/typescript-eslint/issues/7998 )) ([705370a](705370ac0d ))
##### Features
- **eslint-plugin:** \[explicit-function-return-type] add support for typed class property definitions ([#​8027](https://togithub.com/typescript-eslint/typescript-eslint/issues/8027 )) ([bff47d7](bff47d7885 ))
- **eslint-plugin:** \[require-await] allow yielding Promise in async generators ([#​8003](https://togithub.com/typescript-eslint/typescript-eslint/issues/8003 )) ([4c3e704](4c3e704b97 ))
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### [6.13.2](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2 ) (2023-12-04)
**Note:** Version bump only for package [@​typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### [6.13.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1 ) (2023-11-28)
**Note:** Version bump only for package [@​typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.13.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6132-2023-12-04 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2 )
**Note:** Version bump only for package [@​typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v7.0.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#702-2024-02-19 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.0.1...v7.0.2 )
##### 🩹 Fixes
- fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests
##### ❤️ Thank You
- Brad Zacher
- Gareth Jones
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v7.0.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#701-2024-02-12 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.0.0...v7.0.1 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v7.0.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#700-2024-02-12 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.21.0...v7.0.0 )
##### 🚀 Features
- ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
- add support for flat configs
##### ⚠️ Breaking Changes
- ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
##### ❤️ Thank You
- Brad Zacher
- Kirk Waiblinger
- StyleShit
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.21.0 (2024-02-05)
##### 🚀 Features
- allow `parserOptions.project: false`
##### ❤️ Thank You
- auvred
- Brad Zacher
- Kirk Waiblinger
- Pete Gonzalez
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.20.0 (2024-01-29)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.19.1 (2024-01-22)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.19.0 (2024-01-15)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.18.1 (2024-01-08)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### 6.18.0 (2024-01-06)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.21.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6210-2024-02-05 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.20.0...v6.21.0 )
##### 🚀 Features
- allow `parserOptions.project: false`
##### ❤️ Thank You
- auvred
- Brad Zacher
- Kirk Waiblinger
- Pete Gonzalez
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.20.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6200-2024-01-29 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.1...v6.20.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.19.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6191-2024-01-22 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.0...v6.19.1 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.19.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6190-2024-01-15 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.18.1...v6.19.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.18.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6181-2024-01-08 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.18.0...v6.18.1 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.18.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6180-2024-01-06 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.17.0...v6.18.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.17.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6170-2024-01-01 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0 )
**Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.16.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6160-2023-12-25 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0 )
**Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.15.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6150-2023-12-18 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0 )
**Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.14.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6140-2023-12-11 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.2...v6.14.0 )
**Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### [6.13.2](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2 ) (2023-12-04)
**Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
#### [6.13.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1 ) (2023-11-28)
**Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
### [`v6.13.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6132-2023-12-04 )
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2 )
**Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser )
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning ) and [releases](https://main--typescript-eslint.netlify.app/users/releases ) on our website.
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-20 04:14:37 +00:00
DarkSky
fd18732e6e
feat: use custom verify token policy ( #5836 )
2024-02-20 09:47:27 +08:00
liuyi
df157819dc
feat(server): allow customize mailer server ( #5835 )
2024-02-19 14:37:08 +00:00
Peng Xiao
3881164854
build(electron): generate latest-linux.yml ( #5822 )
2024-02-19 14:25:02 +00:00
Peng Xiao
20f7473e20
fix(electron): linux login issues ( #5821 )
...
Looks like there are some issues using `@reforged/maker-appimage`:
- deep link not working properly (cannot login)
- cannot be installed via AppImageLauncher, which is required to enable deep link on linux
I forked saleae/electron-forge-maker-appimage into https://github.com/toeverything/electron-forge-maker-appimage to fix these issues
See changes: https://github.com/saleae/electron-forge-maker-appimage/compare/master...toeverything:electron-forge-maker-appimage:master?w=1
To enable login on Linux, the app must be installed via AppImageLauncher.

fix https://github.com/toeverything/AFFiNE/issues/4978
fix https://github.com/toeverything/AFFiNE/issues/4466
2024-02-19 14:24:59 +00:00
LongYinan
28ee66173e
fix: selfhost build ( #5833 )
2024-02-19 14:03:26 +00:00
DarkSky
d665eaec34
feat: refresh new workspace feature ( #5834 )
2024-02-19 21:58:54 +08:00
Whitewater
1ceaf87a86
chore: skip sync when offline ( #5786 )
2024-02-19 10:22:22 +08:00
Peng Xiao
d1c4e6141a
refactor(component): cmdk ordering ( #5722 )
...
Replace internal CMDK command filtering/sorting logic.
The new implementation includes the following for command scoring:
- categories weights
- highlighted fragments
- original command score value
The new logic should be much cleaner and remove some hacks in the original implementation.
Not sure if this is optimal yet. Could be changed later.
fix https://github.com/toeverything/AFFiNE/issues/5699
2024-02-16 13:20:24 +00:00
LongYinan
9e7eb5629c
chore: bump up eslint-plugin-simple-import-sort version to v12 ( #5815 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint-plugin-simple-import-sort](https://togithub.com/lydell/eslint-plugin-simple-import-sort ) | [`^10.0.0` -> `^12.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-simple-import-sort/10.0.0/12.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>lydell/eslint-plugin-simple-import-sort (eslint-plugin-simple-import-sort)</summary>
### [`v12.0.0`](https://togithub.com/lydell/eslint-plugin-simple-import-sort/blob/HEAD/CHANGELOG.md#Version-1200-2024-02-10 )
[Compare Source](https://togithub.com/lydell/eslint-plugin-simple-import-sort/compare/v11.0.0...v12.0.0 )
This release removes the support for import assignments added in version 11.0.0:
- Turns out it was broken in some cases.
- The suggested fix went past my complexity tolerance for such an esoteric feature.
- I also learned that they aren’t really imports, and that I don’t understand their semantics well enough to know how sorting them affects your program.
If you miss the support for import assignments, I suggest you write your own ESLint rule which moves them out of the way from the actual imports, sorting them or not.
### [`v11.0.0`](https://togithub.com/lydell/eslint-plugin-simple-import-sort/blob/HEAD/CHANGELOG.md#Version-1100-2024-02-08 )
[Compare Source](https://togithub.com/lydell/eslint-plugin-simple-import-sort/compare/v10.0.0...v11.0.0 )
This release adds support for TypeScript import assignments (`import A = B.C` and `import A = require("module")`). Thanks to Szabolcs Kurdi ([@​szku01](https://togithub.com/szku01 )) and Svyatoslav Zaytsev ([@​MillerSvt](https://togithub.com/MillerSvt ))!
It’s only a breaking change if you use TypeScript import assignments, and only in the form that you need to autofix your files.
In other news, this release adds the `meta` plugin property in preparation for ESLint Flat Config, and avoids the deprecated `context.getSourceCode()` method (while still being backwards compatible).
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-12 17:12:47 +00:00
Ayush Agrawal
5dc7cd336f
feat: bump blocksuite ( #5817 )
2024-02-11 10:23:30 +08:00
Flrande
2e3ffeced9
feat: bump blocksuite ( #5812 )
2024-02-08 08:18:03 +08:00
LongYinan
a84a91d896
chore: bump up eslint-plugin-unicorn version to v51 ( #5810 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint-plugin-unicorn](https://togithub.com/sindresorhus/eslint-plugin-unicorn ) | [`^50.0.0` -> `^51.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-unicorn/50.0.0/51.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>sindresorhus/eslint-plugin-unicorn (eslint-plugin-unicorn)</summary>
### [`v51.0.0`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/releases/tag/v51.0.0 )
[Compare Source](https://togithub.com/sindresorhus/eslint-plugin-unicorn/compare/v50.0.1...v51.0.0 )
##### Breaking
- `consistent-destructuring`: Remove from `recommended` preset ([#​2260](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2260 )) [`702d51b`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/702d51b )
##### Improvements
- `no-array-method-this-argument`: Check `Array.from()` ([#​2262](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2262 )) [`797caee`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/797caee )
##### Fixes
- `no-thenable`: Fix crash on `{[Symbol.prototype]: 0}` ([#​2248](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2248 )) [`3c7d7c0`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/3c7d7c0 )
- `prefer-prototype-methods`: Fix argument of `isMethodCall` ([#​2247](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2247 )) [`3b504fa`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/3b504fa )
### [`v50.0.1`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/releases/tag/v50.0.1 )
[Compare Source](https://togithub.com/sindresorhus/eslint-plugin-unicorn/compare/v50.0.0...v50.0.1 )
##### Fixes
- `no-unnecessary-polyfills`: Fix missing dependency error ([#​2242](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2242 )) [`3df1606`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/3df16068 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-06 09:42:03 +00:00
Peng Xiao
005c02f148
fix(core): flaky tests ( #5804 )
2024-02-06 03:20:54 +00:00
Peng Xiao
afccf3d8c9
feat(core): add an option to throttle cpu in e2e ( #5803 )
...
To debug e2e flakyness locally
2024-02-06 03:20:49 +00:00
liuyi
296d47f102
refactor(server): separate s3 & r2 storage to plugin ( #5805 )
2024-02-05 15:10:09 +00:00
DarkSky
25e8a2a22f
feat: sync client versioning ( #5645 )
...
after this pr, server will only accept client that have some major version
the client version <0.12 will be rejected by the server, >= 0.12 can receive outdated messages and notify users
2024-02-05 08:43:50 +00:00
Peng Xiao
5ca0d65241
test(core): config e2e output dir ( #5783 )
2024-02-05 04:10:17 +00:00
LongYinan
51680da33b
fix(core): prevent data loss (hot-fix) ( #5798 ) ( #5800 )
2024-02-05 03:53:32 +00:00
liuyi
d9c2dc8dfb
fix(server): apply env overrides after all config merged ( #5795 )
2024-02-04 06:38:31 +00:00
LongYinan
899528dcfd
fix(core): load fonts from selfhost url ( #5789 )
2024-02-02 14:41:06 +00:00
HeJiachen-PM
2ed30a0c2e
docs: change community url on README ( #5788 )
...
changed community to discord
2024-02-02 10:31:15 +00:00
Joooye_34
514e6f6b80
fix: static resource not found in web server ( #5787 )
2024-02-02 09:11:31 +00:00
liuyi
bef266ae3b
refactor(server): reorganize server configs ( #5753 )
2024-02-02 08:32:07 +00:00
LongYinan
ee3d195811
chore: bump up jotai-effect version to ^0.5.0 ( #5781 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [jotai-effect](https://togithub.com/jotaijs/jotai-effect ) | [`^0.4.0` -> `^0.5.0`](https://renovatebot.com/diffs/npm/jotai-effect/0.4.0/0.5.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>jotaijs/jotai-effect (jotai-effect)</summary>
### [`v0.5.0`](https://togithub.com/jotaijs/jotai-effect/releases/tag/v0.5.0 )
[Compare Source](https://togithub.com/jotaijs/jotai-effect/compare/v0.4.0...v0.5.0 )
Adds support for reading an atom's value without subscribing to it.
Read atom data without subscribing to changes with `get.peek`.
```ts
const countAtom = atom(0)
atomEffect((get, set) => {
// will not rerun when countAtom changes
const count = get.peek(countAtom)
})
```
#### What's Changed
- feat: get.peek reads atom value without subscribing to updates by [@​dmaskasky](https://togithub.com/dmaskasky ) in [https://github.com/jotaijs/jotai-effect/pull/30 ](https://togithub.com/jotaijs/jotai-effect/pull/30 )
**Full Changelog**: https://github.com/jotaijs/jotai-effect/compare/v0.4.0...v0.5.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-02 07:16:11 +00:00
LongYinan
4b3808faf9
chore: bump up @vanilla-extract/vite-plugin version to v4 ( #5730 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@vanilla-extract/vite-plugin](https://togithub.com/vanilla-extract-css/vanilla-extract ) ([source](https://togithub.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/vite-plugin )) | [`^3.9.2` -> `^4.0.0`](https://renovatebot.com/diffs/npm/@vanilla-extract%2fvite-plugin/3.9.2/4.0.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>vanilla-extract-css/vanilla-extract (@​vanilla-extract/vite-plugin)</summary>
### [`v4.0.2`](https://togithub.com/vanilla-extract-css/vanilla-extract/blob/HEAD/packages/vite-plugin/CHANGELOG.md#402 )
[Compare Source](https://togithub.com/vanilla-extract-css/vanilla-extract/compare/@vanilla-extract/vite-plugin@4.0.1...@vanilla-extract/vite-plugin@4.0.2 )
##### Patch Changes
- [#​1304](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1304 ) [`545bf82`](545bf82f12 ) Thanks [@​fukumasuya](https://togithub.com/fukumasuya )! - Pass Vite `resolve` config to vite-node compiler
The plugin passes through the project's Vite `resolve` config to the vite-node compiler, which will be used for resolving imports. These options include [`resolve.alias`][resolve.alias], [`resolve.dedupe`][resolve.dedupe], [`resolve.conditions`][resolve.conditions], [`resolve.mainFields`][resolve.mainFields], [`resolve.extensions`][resolve.extensions], and others.
[`resolve.alias`]: https://vitejs.dev/config/shared-options.html#resolve-alias
[`resolve.dedupe`]: https://vitejs.dev/config/shared-options.html#resolve-dedupe
[`resolve.conditions`]: https://vitejs.dev/config/shared-options.html#resolve-conditions
[`resolve.mainFields`]: https://vitejs.dev/config/shared-options.html#resolve-mainfields
[`resolve.extensions`]: https://vitejs.dev/config/shared-options.html#resolve-extensions
- Updated dependencies \[[`545bf82`](545bf82f12 )]:
- [@​vanilla-extract/integration](https://togithub.com/vanilla-extract/integration )[@​6](https://togithub.com/6 ).5.0
### [`v4.0.1`](https://togithub.com/vanilla-extract-css/vanilla-extract/blob/HEAD/packages/vite-plugin/CHANGELOG.md#401 )
[Compare Source](https://togithub.com/vanilla-extract-css/vanilla-extract/compare/@vanilla-extract/vite-plugin@4.0.0...@vanilla-extract/vite-plugin@4.0.1 )
##### Patch Changes
- [#​1300](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1300 ) [`d0b84f6`](d0b84f6340 ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - Skip loading plugins added by Vitest
- [#​1297](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1297 ) [`85e1131`](85e11318f0 ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - Correctly resolve the user's Vite plugins
### [`v4.0.0`](https://togithub.com/vanilla-extract-css/vanilla-extract/blob/HEAD/packages/vite-plugin/CHANGELOG.md#400 )
[Compare Source](https://togithub.com/vanilla-extract-css/vanilla-extract/compare/@vanilla-extract/vite-plugin@3.9.5...@vanilla-extract/vite-plugin@4.0.0 )
##### Major Changes
- [#​1264](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1264 ) [`e531c41`](e531c4170d ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - The Vite plugin now uses a newer, faster, Vite-based compiler by default.
The new compiler uses [`vite-node`](https://togithub.com/vitest-dev/vitest/tree/main/packages/vite-node ) to parse and extract CSS from `.css.ts` files. This comes with all the benefits of using Vite, faster builds and the ability to use Vite plugins.
The new compiler has been used in Remix ever since support for Vanilla Extract was introduced.
- [#​1264](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1264 ) [`e531c41`](e531c4170d ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - The behaviour previously known as `emitCssInSsr` has been turned on by default. The `emitCssInSsr` option has been removed.
This means that the CSS emitted by the plugin is now processed by Vite, so the plugin no longer needs to resolve PostCSS plugins and process the CSS output itself.
- [#​1264](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1264 ) [`e531c41`](e531c4170d ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - The `esbuildOptions` option has been removed as we are no longer using esbuild internally
- [#​1264](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1264 ) [`e531c41`](e531c4170d ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - Drop support for Vite < 4
##### Patch Changes
- [#​1264](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1264 ) [`e531c41`](e531c4170d ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - Update dependencies
- Updated dependencies \[[`e531c41`](e531c4170d ), [`e531c41`](e531c4170d )]:
- [@​vanilla-extract/integration](https://togithub.com/vanilla-extract/integration )[@​6](https://togithub.com/6 ).4.0
### [`v3.9.5`](https://togithub.com/vanilla-extract-css/vanilla-extract/blob/HEAD/packages/vite-plugin/CHANGELOG.md#395 )
[Compare Source](https://togithub.com/vanilla-extract-css/vanilla-extract/compare/@vanilla-extract/vite-plugin@3.9.4...@vanilla-extract/vite-plugin@3.9.5 )
##### Patch Changes
- [#​1291](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1291 ) [`00af971`](00af9715e5 ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - Update dependency `@vanilla-extract/integration`
- [#​1254](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1254 ) [`f373d7f`](f373d7f6b5 ) Thanks [@​EvgenNoskov](https://togithub.com/EvgenNoskov )! - Allow hyphens in class names when using a custom identifier
### [`v3.9.4`](https://togithub.com/vanilla-extract-css/vanilla-extract/blob/HEAD/packages/vite-plugin/CHANGELOG.md#394 )
[Compare Source](https://togithub.com/vanilla-extract-css/vanilla-extract/compare/@vanilla-extract/vite-plugin@3.9.3...@vanilla-extract/vite-plugin@3.9.4 )
##### Patch Changes
- [#​1262](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1262 ) [`610c50b`](610c50b001 ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - Update Babel config to target Node.js 14
- [#​1262](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1262 ) [`610c50b`](610c50b001 ) Thanks [@​mrm007](https://togithub.com/mrm007 )! - Lazy load Vite to avoid the CJS warning
- Updated dependencies \[[`610c50b`](610c50b001 ), [`610c50b`](610c50b001 )]:
- [@​vanilla-extract/integration](https://togithub.com/vanilla-extract/integration )[@​6](https://togithub.com/6 ).2.5
### [`v3.9.3`](https://togithub.com/vanilla-extract-css/vanilla-extract/blob/HEAD/packages/vite-plugin/CHANGELOG.md#393 )
[Compare Source](https://togithub.com/vanilla-extract-css/vanilla-extract/compare/@vanilla-extract/vite-plugin@3.9.2...@vanilla-extract/vite-plugin@3.9.3 )
##### Patch Changes
- [#​1250](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1250 ) [`bc349fd`](bc349fd7cb ) Thanks [@​kosmotema](https://togithub.com/kosmotema )! - Prevent unnecessary module invalidations when using PostCSS
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-02 07:02:22 +00:00
LongYinan
67ab814108
chore: bump up nodemailer version to v6.9.9 [SECURITY] ( #5780 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [nodemailer](https://nodemailer.com/ ) ([source](https://togithub.com/nodemailer/nodemailer )) | [`6.9.7` -> `6.9.9`](https://renovatebot.com/diffs/npm/nodemailer/6.9.7/6.9.9 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
### GitHub Vulnerability Alerts
#### [GHSA-9h6g-pr28-7cqp](https://togithub.com/nodemailer/nodemailer/security/advisories/GHSA-9h6g-pr28-7cqp )
### Summary
A ReDoS vulnerability occurs when nodemailer tries to parse img files with the parameter `attachDataUrls` set, causing the stuck of event loop.
Another flaw was found when nodemailer tries to parse an attachments with a embedded file, causing the stuck of event loop.
### Details
Regex: /^data:((?:[^;]*;)*(?:[^,]*)),(.*)$/
Path: compile -> getAttachments -> _processDataUrl
Regex: /(<img\b[^>]* src\s*=[\s"']*)(data:([^;]+);[^"'>\s]+)/
Path: _convertDataImages
### PoC
https://gist.github.com/francoatmega/890dd5053375333e40c6fdbcc8c58df6
https://gist.github.com/francoatmega/9aab042b0b24968d7b7039818e8b2698
### Impact
ReDoS causes the event loop to stuck a specially crafted evil email can cause this problem.
---
### Release Notes
<details>
<summary>nodemailer/nodemailer (nodemailer)</summary>
### [`v6.9.9`](https://togithub.com/nodemailer/nodemailer/blob/HEAD/CHANGELOG.md#699-2024-02-01 )
[Compare Source](https://togithub.com/nodemailer/nodemailer/compare/v6.9.8...v6.9.9 )
##### Bug Fixes
- **security:** Fix issues described in GHSA-9h6g-pr28-7cqp. Do not use eternal matching pattern if only a few occurences are expected ([dd8f5e8](dd8f5e8a4d ))
- **tests:** Use native node test runner, added code coverage support, removed grunt ([#​1604](https://togithub.com/nodemailer/nodemailer/issues/1604 )) ([be45c1b](be45c1b299 ))
### [`v6.9.8`](https://togithub.com/nodemailer/nodemailer/blob/HEAD/CHANGELOG.md#698-2023-12-30 )
[Compare Source](https://togithub.com/nodemailer/nodemailer/compare/v6.9.7...v6.9.8 )
##### Bug Fixes
- **punycode:** do not use native punycode module ([b4d0e0c](b4d0e0c7cc ))
</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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-02 05:53:44 +00:00
LongYinan
d23f8f8087
ci: fix test-done job condition ( #5784 )
2024-02-02 05:21:59 +00:00
LongYinan
8f4b4e20ab
fix(core): typecheck after jotai upgraded ( #5779 )
2024-02-01 16:10:14 +00:00
LongYinan
45b5800a23
chore: bump up all non-major dependencies ( #5550 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence | Type | Update |
|---|---|---|---|---|---|---|---|
| [@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.499.0` -> `3.504.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.499.0/3.504.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [@marsidev/react-turnstile](https://togithub.com/marsidev/react-turnstile ) | [`^0.4.0` -> `^0.5.0`](https://renovatebot.com/diffs/npm/@marsidev%2freact-turnstile/0.4.0/0.5.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.33` -> `3.0.0-alpha.36`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.33/3.0.0-alpha.36 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@node-rs/jsonwebtoken](https://togithub.com/napi-rs/node-rs ) | [`^0.3.0` -> `^0.4.0`](https://renovatebot.com/diffs/npm/@node-rs%2fjsonwebtoken/0.3.1/0.4.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@nx/vite](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/vite )) | [`17.2.8` -> `17.3.1`](https://renovatebot.com/diffs/npm/@nx%2fvite/17.2.8/17.3.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [@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.47.0` -> `^0.48.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fexporter-prometheus/0.47.0/0.48.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@opentelemetry/host-metrics](https://togithub.com/open-telemetry/opentelemetry-js-contrib/tree/main/packages/opentelemetry-host-metrics#readme ) ([source](https://togithub.com/open-telemetry/opentelemetry-js-contrib )) | [`^0.34.0` -> `^0.35.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fhost-metrics/0.34.1/0.35.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@opentelemetry/instrumentation](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation ) ([source](https://togithub.com/open-telemetry/opentelemetry-js )) | [`^0.47.0` -> `^0.48.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation/0.47.0/0.48.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@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.36.0` -> `^0.37.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-graphql/0.36.1/0.37.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@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.47.0` -> `^0.48.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-http/0.47.0/0.48.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@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.36.0` -> `^0.37.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-ioredis/0.36.1/0.37.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@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.33.3` -> `^0.34.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-nestjs-core/0.33.4/0.34.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@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.35.0` -> `^0.36.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-socket.io/0.35.0/0.36.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@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.47.0` -> `^0.48.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fsdk-node/0.47.0/0.48.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@taplo/cli](https://taplo.tamasfe.dev ) ([source](https://togithub.com/tamasfe/taplo )) | [`^0.5.2` -> `^0.7.0`](https://renovatebot.com/diffs/npm/@taplo%2fcli/0.5.2/0.7.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [@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.1.3` -> `1.2.2`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-istanbul/1.1.3/1.2.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [@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.1.3` -> `1.2.2`](https://renovatebot.com/diffs/npm/@vitest%2fui/1.1.3/1.2.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [cloudflare/wrangler-action](https://togithub.com/cloudflare/wrangler-action ) | `v3.4.0` -> `v3.4.1` | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | action | patch |
| [esbuild](https://togithub.com/evanw/esbuild ) | [`^0.19.7` -> `^0.20.0`](https://renovatebot.com/diffs/npm/esbuild/0.19.8/0.20.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [jotai-effect](https://togithub.com/jotaijs/jotai-effect ) | [`^0.2.3` -> `^0.4.0`](https://renovatebot.com/diffs/npm/jotai-effect/0.2.3/0.4.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [jotai-scope](https://togithub.com/jotaijs/jotai-scope ) | [`^0.4.1` -> `^0.5.0`](https://renovatebot.com/diffs/npm/jotai-scope/0.4.1/0.5.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| openresty/openresty | `1.21.4.3-0-buster` -> `1.25.3.1-0-buster` | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | final | minor |
| [vite-plugin-dts](https://togithub.com/qmhc/vite-plugin-dts ) | [`3.7.0` -> `3.7.2`](https://renovatebot.com/diffs/npm/vite-plugin-dts/3.7.0/3.7.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [vitest](https://togithub.com/vitest-dev/vitest ) ([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/vitest )) | [`1.1.3` -> `1.2.2`](https://renovatebot.com/diffs/npm/vitest/1.1.3/1.2.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [yarn](https://togithub.com/yarnpkg/berry ) ([source](https://togithub.com/yarnpkg/berry/tree/HEAD/packages/yarnpkg-cli )) | [`4.0.2` -> `4.1.0`](https://renovatebot.com/diffs/npm/yarn/4.0.2/4.1.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | packageManager | minor |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.504.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35040-2024-01-31 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.503.1...v3.504.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
#### [3.503.1](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.503.0...v3.503.1 ) (2024-01-30)
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.503.1`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35031-2024-01-30 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.503.0...v3.503.1 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.503.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35030-2024-01-30 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.502.0...v3.503.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.502.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35020-2024-01-29 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.501.0...v3.502.0 )
##### Features
- **credential-providers:** lazy load STS & SSO clients in credential providers ([#​5681](https://togithub.com/aws/aws-sdk-js-v3/issues/5681 )) ([d27301d](d27301d48f ))
### [`v3.501.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#35010-2024-01-26 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.499.0...v3.501.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
</details>
<details>
<summary>marsidev/react-turnstile (@​marsidev/react-turnstile)</summary>
### [`v0.5.1`](https://togithub.com/marsidev/react-turnstile/releases/tag/v0.5.1 )
[Compare Source](https://togithub.com/marsidev/react-turnstile/compare/v0.5.0...v0.5.1 )
##### 🐞 Bug Fixes
- Remove nullish coalescing operator (`??`) to improve compatibility with old browsers - by [@​marsidev](https://togithub.com/marsidev ) [<samp>(80f61)</samp>](https://togithub.com/marsidev/react-turnstile/commit/80f61c6 )
##### [View changes on GitHub](https://togithub.com/marsidev/react-turnstile/compare/v0.5.0...v0.5.1 )
### [`v0.5.0`](https://togithub.com/marsidev/react-turnstile/releases/tag/v0.5.0 )
[Compare Source](https://togithub.com/marsidev/react-turnstile/compare/v0.4.1...v0.5.0 )
##### 🚀 Features
- Add `getResponsePromise` - by [@​marsidev](https://togithub.com/marsidev ) [<samp>(61308)</samp>](https://togithub.com/marsidev/react-turnstile/commit/6130898 )
##### [View changes on GitHub](https://togithub.com/marsidev/react-turnstile/compare/v0.4.1...v0.5.0 )
### [`v0.4.1`](https://togithub.com/marsidev/react-turnstile/releases/tag/v0.4.1 )
[Compare Source](https://togithub.com/marsidev/react-turnstile/compare/v0.4.0...v0.4.1 )
##### 🚀 Features
- Add `onWidgetLoad` callback - by [@​marsidev](https://togithub.com/marsidev ) [<samp>(6811b)</samp>](https://togithub.com/marsidev/react-turnstile/commit/6811bce )
##### [View changes on GitHub](https://togithub.com/marsidev/react-turnstile/compare/v0.4.0...v0.4.1 )
</details>
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.36`](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.35...@napi-rs/cli@3.0.0-alpha.36 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.35...@napi-rs/cli@3.0.0-alpha.36 )
### [`v3.0.0-alpha.35`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.35 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.34...@napi-rs/cli@3.0.0-alpha.35 )
##### What's Changed
- chore: bump memfs-browser by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1900 ](https://togithub.com/napi-rs/napi-rs/pull/1900 )
- feat(cli): Add support for s390x linux arch in js bindings template by [@​mgcm](https://togithub.com/mgcm ) in [https://github.com/napi-rs/napi-rs/pull/1901 ](https://togithub.com/napi-rs/napi-rs/pull/1901 )
- feat: add wasm runtime package by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1904 ](https://togithub.com/napi-rs/napi-rs/pull/1904 )
##### New Contributors
- [@​mgcm](https://togithub.com/mgcm ) made their first contribution in [https://github.com/napi-rs/napi-rs/pull/1901 ](https://togithub.com/napi-rs/napi-rs/pull/1901 )
**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.34...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.35
### [`v3.0.0-alpha.34`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.34 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.33...@napi-rs/cli@3.0.0-alpha.34 )
##### What's Changed
- fix(cli): add browser entry by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1899 ](https://togithub.com/napi-rs/napi-rs/pull/1899 )
**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.33...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.34
</details>
<details>
<summary>napi-rs/node-rs (@​node-rs/jsonwebtoken)</summary>
### [`v0.4.0`](https://togithub.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@0.3.1...@node-rs/jsonwebtoken@0.4.0 )
[Compare Source](https://togithub.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@0.3.1...@node-rs/jsonwebtoken@0.4.0 )
</details>
<details>
<summary>nrwl/nx (@​nx/vite)</summary>
### [`v17.3.1`](https://togithub.com/nrwl/nx/releases/tag/17.3.1 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.3.0...17.3.1 )
##### 17.3.1 (2024-01-31)
##### 🚀 Features
- **angular:** add generator to convert targets to use the esbuild-based application executor ([#​21333](https://togithub.com/nrwl/nx/pull/21333 ))
- **core:** don't clear NX_BASE or NX_HEAD ([#​20125](https://togithub.com/nrwl/nx/pull/20125 ))
- **devkit:** improving error handeling read target options ([#​20336](https://togithub.com/nrwl/nx/pull/20336 ))
- **react-native:** add useTransformReactJSX babel config to generators ([#​19170](https://togithub.com/nrwl/nx/pull/19170 ))
- **vite:** allow passing path to custom tsconfig file when skipTypeCheck is false ([#​19784](https://togithub.com/nrwl/nx/pull/19784 ))
##### 🩹 Fixes
- nestjs lib generator pass skipPackageJson flag to js lib generator ([#​20442](https://togithub.com/nrwl/nx/pull/20442 ))
- **angular:** fix dev-server validation for esbuildMiddleware ([#​21413](https://togithub.com/nrwl/nx/pull/21413 ))
- **angular:** should not log invalid extension includedScripts ([#​21441](https://togithub.com/nrwl/nx/pull/21441 ))
- **bundling:** consider index/folder imports in manual file resolution ([#​19030](https://togithub.com/nrwl/nx/pull/19030 ))
- **core:** remove misleading message at front of error ([#​21443](https://togithub.com/nrwl/nx/pull/21443 ))
- **core:** new generator not skipping package installation ([#​17927](https://togithub.com/nrwl/nx/pull/17927 ))
- **core:** include typescript package when calculating project hashes ([#​21285](https://togithub.com/nrwl/nx/pull/21285 ))
- **core:** do not append node_module paths in `run-script` executor ([#​21445](https://togithub.com/nrwl/nx/pull/21445 ))
- **graph:** repair externalApiService usage broken after refactor ([#​21422](https://togithub.com/nrwl/nx/pull/21422 ))
- **js:** allow inlined libs without imports ([#​20649](https://togithub.com/nrwl/nx/pull/20649 ))
- **linter:** remove extend of [@​angular-eslint/recommended--extra](https://togithub.com/angular-eslint/recommended--extra ) config ([#​18465](https://togithub.com/nrwl/nx/pull/18465 ))
- **linter:** restore rules to match previous [@​typescript-eslint/recommended](https://togithub.com/typescript-eslint/recommended ) ([#​21424](https://togithub.com/nrwl/nx/pull/21424 ))
- **linter:** make target default migrations a bit more robust ([#​21446](https://togithub.com/nrwl/nx/pull/21446 ))
- **misc:** prevent ts-node from reading tsconfig when registering transpiler ([#​21381](https://togithub.com/nrwl/nx/pull/21381 ))
- **nextjs:** Add missing support swc for custom server ([#​21401](https://togithub.com/nrwl/nx/pull/21401 ))
- **nextjs:** lazy load plugin import ([#​21426](https://togithub.com/nrwl/nx/pull/21426 ))
- **nx-dev:** remove unmatched bracket. updates warning description ([#​19481](https://togithub.com/nrwl/nx/pull/19481 ))
- **react:** import SupportedStyles type from correct path ([#​20239](https://togithub.com/nrwl/nx/pull/20239 ))
- **vite:** prevent vite:build copying package.json when generatePackageJson false ([#​19780](https://togithub.com/nrwl/nx/pull/19780 ))
- **vue:** do not add [@​vue/tsconfig](https://togithub.com/vue/tsconfig ) dependency ([#​19873](https://togithub.com/nrwl/nx/pull/19873 ))
##### ❤️ Thank You
- Adam Hunter [@​adamrhunter](https://togithub.com/adamrhunter )
- Benjamin Kroeger [@​benkroeger](https://togithub.com/benkroeger )
- Christian Käslin
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Denis Frenademetz [@​skrtheboss](https://togithub.com/skrtheboss )
- James Henry [@​JamesHenry](https://togithub.com/JamesHenry )
- Jan Pretzel
- Jonathan Cammisuli
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- MaxKless [@​MaxKless](https://togithub.com/MaxKless )
- Michal Jez [@​MJez29](https://togithub.com/MJez29 )
- Miloš Lajtman [@​miluoshi](https://togithub.com/miluoshi )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
- Tobbb
- Vinit Neogi [@​vneogi199](https://togithub.com/vneogi199 )
- wout junius [@​wout-junius](https://togithub.com/wout-junius )
- Zac Bristow
### [`v17.3.0`](https://togithub.com/nrwl/nx/releases/tag/17.3.0 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.8...17.3.0 )
#### 17.3.0 (2024-01-29)
##### 🚀 Features
- **angular:** support esbuild middleware functions ([#​21048](https://togithub.com/nrwl/nx/pull/21048 ))
- **angular:** support angular 17.1.0 ([#​20556](https://togithub.com/nrwl/nx/pull/20556 ))
- **core:** remove prompt from nx connect command ([67b5bd6c9f](https://togithub.com/nrwl/nx/commit/67b5bd6c9f ))
- **core:** use Nx plugins and inferred targets when running "nx init" ([#​20872](https://togithub.com/nrwl/nx/pull/20872 ))
- **core:** create a new function to run child processes via rust ([#​21070](https://togithub.com/nrwl/nx/pull/21070 ))
- **core:** read name from package.json if present and no inference plugin provides name ([#​21125](https://togithub.com/nrwl/nx/pull/21125 ))
- **core:** add keepExistingVersions to all packages ([#​21169](https://togithub.com/nrwl/nx/pull/21169 ))
- **core:** add the "add" cli command ([#​20976](https://togithub.com/nrwl/nx/pull/20976 ))
- **core:** add target defaults in configuration generators rather th… ([#​21105](https://togithub.com/nrwl/nx/pull/21105 ))
- **core:** update ci-workflow generator ([#​21141](https://togithub.com/nrwl/nx/pull/21141 ))
- **core:** extend nxCloud prompt to include basic CI workflow options ([#​21094](https://togithub.com/nrwl/nx/pull/21094 ))
- **core:** move target defaults handling to nx plugin ([#​21104](https://togithub.com/nrwl/nx/pull/21104 ))
- **core:** forward stdin to commands started via rust ([#​21195](https://togithub.com/nrwl/nx/pull/21195 ))
- **core:** reveal --web flag on show project ([#​21293](https://togithub.com/nrwl/nx/pull/21293 ))
- **core:** use runCommand for runScript ([#​21292](https://togithub.com/nrwl/nx/pull/21292 ))
- **core:** support args to be an array for command ([#​21290](https://togithub.com/nrwl/nx/pull/21290 ))
- **core:** improve generated CI workflows ([#​21324](https://togithub.com/nrwl/nx/pull/21324 ))
- **core:** guide users to view the graph after nx init ([#​21303](https://togithub.com/nrwl/nx/pull/21303 ))
- **core:** pass down help to run-commands ([#​21331](https://togithub.com/nrwl/nx/pull/21331 ))
- **cypress:** simplify inferred cypress command ([#​21337](https://togithub.com/nrwl/nx/pull/21337 ))
- **detox:** add createNodes for detox ([#​21016](https://togithub.com/nrwl/nx/pull/21016 ))
- **devkit:** add a flag to keep existing versions when calling addDependenciesToPackageJson ([#​21123](https://togithub.com/nrwl/nx/pull/21123 ))
- **docs:** add {% project-details %} as a tag in markdown docs ([#​21288](https://togithub.com/nrwl/nx/pull/21288 ))
- **expo:** support createNodes for expo ([#​21014](https://togithub.com/nrwl/nx/pull/21014 ))
- **graph:** add nx console data loader ([#​20744](https://togithub.com/nrwl/nx/pull/20744 ))
- **graph:** rework pdv target section & remove unused code ([#​21159](https://togithub.com/nrwl/nx/pull/21159 ))
- **graph:** decouple graph client from nx.dev <Fence> component ([#​21186](https://togithub.com/nrwl/nx/pull/21186 ))
- **graph:** allow expanding target when opening pdv from external api ([#​21189](https://togithub.com/nrwl/nx/pull/21189 ))
- **graph:** hover to see source & more UI updates ([#​21182](https://togithub.com/nrwl/nx/pull/21182 ))
- **graph:** add tooltips to project details view ([#​21205](https://togithub.com/nrwl/nx/pull/21205 ))
- **graph:** show open config button in graph web ([#​21181](https://togithub.com/nrwl/nx/pull/21181 ))
- **linter:** add .nx to ignored folders ([#​20720](https://togithub.com/nrwl/nx/pull/20720 ))
- **linter:** update @​typescript-eslint/\* package versions ([#​20602](https://togithub.com/nrwl/nx/pull/20602 ))
- **linter:** make init generator public ([51c039b252](https://togithub.com/nrwl/nx/commit/51c039b252 ))
- **linter:** move common options to target defaults ([#​20583](https://togithub.com/nrwl/nx/pull/20583 ))
- **misc:** align version of [@​types/node](https://togithub.com/types/node ) throughout repo ([#​20883](https://togithub.com/nrwl/nx/pull/20883 ))
- **misc:** add layout for project details view ([#​21172](https://togithub.com/nrwl/nx/pull/21172 ))
- **misc:** update minimatch version used across packages ([#​21207](https://togithub.com/nrwl/nx/pull/21207 ))
- **misc:** identify and set up more nx core plugins during nx init ([#​21254](https://togithub.com/nrwl/nx/pull/21254 ))
- **misc:** optionally update package.json scripts in init generators ([#​21204](https://togithub.com/nrwl/nx/pull/21204 ))
- **misc:** hide unpublished links in project details view ([#​21362](https://togithub.com/nrwl/nx/pull/21362 ))
- **nextjs:** Update [@​nx/next](https://togithub.com/nx/next ) to Next.js 14 ([#​20703](https://togithub.com/nrwl/nx/pull/20703 ))
- **nextjs:** Add support for experimental-https when running dev server ([#​20836](https://togithub.com/nrwl/nx/pull/20836 ))
- **nextjs:** Standalone projects now default to src ([#​21010](https://togithub.com/nrwl/nx/pull/21010 ))
- **nuxt:** make nuxt public ([#​20656](https://togithub.com/nrwl/nx/pull/20656 ))
- **nx-dev:** add homepage updates ([#​20592](https://togithub.com/nrwl/nx/pull/20592 ))
- **nx-dev:** improve related docs section ([#​20796](https://togithub.com/nrwl/nx/pull/20796 ))
- **nx-dev:** adjust related section title padding ([#​20803](https://togithub.com/nrwl/nx/pull/20803 ))
- **nx-dev:** update documentation dropdown menu links ([#​20792](https://togithub.com/nrwl/nx/pull/20792 ))
- **nx-dev:** adjust highlighting of tagline ([#​20877](https://togithub.com/nrwl/nx/pull/20877 ))
- **nx-dev:** new year challenge ([#​20639](https://togithub.com/nrwl/nx/pull/20639 ))
- **nx-dev:** new year challenge ([868721a157](https://togithub.com/nrwl/nx/commit/868721a157 ))
- **nx-dev:** modals and flip cards ([e7dcce057b](https://togithub.com/nrwl/nx/commit/e7dcce057b ))
- **nx-dev:** rectangle cards ([49a8d84023](https://togithub.com/nrwl/nx/commit/49a8d84023 ))
- **react:** Treat window and var library types the same ([#​20597](https://togithub.com/nrwl/nx/pull/20597 ))
- **react:** Add playwright support to generators ([#​21150](https://togithub.com/nrwl/nx/pull/21150 ))
- **react-native:** add support for createNodes in react native ([#​21013](https://togithub.com/nrwl/nx/pull/21013 ))
- **react-native:** generate pod install target ([#​21166](https://togithub.com/nrwl/nx/pull/21166 ))
- **release:** support Revert commits in changelog renderer ([#​20663](https://togithub.com/nrwl/nx/pull/20663 ))
- **release:** conventional commits support for independent projects ([#​21012](https://togithub.com/nrwl/nx/pull/21012 ))
- **release:** enable git operations by default ([#​21082](https://togithub.com/nrwl/nx/pull/21082 ))
- **release:** add fallback for currentVersionResolver in the version step ([#​21155](https://togithub.com/nrwl/nx/pull/21155 ))
- **release:** support conventionalCommits shorthand for version config ([#​21187](https://togithub.com/nrwl/nx/pull/21187 ))
- **release:** add formal entrypoint for programmatic API at nx/release ([#​21211](https://togithub.com/nrwl/nx/pull/21211 ))
- **release:** support version prefix for dependents ([#​21209](https://togithub.com/nrwl/nx/pull/21209 ))
- **release:** update lockfile after version command ([#​21107](https://togithub.com/nrwl/nx/pull/21107 ))
- **release:** global stageChanges option & changelog fixes ([#​21223](https://togithub.com/nrwl/nx/pull/21223 ))
- **release:** allow overriding generator and generatorOptions per project ([#​21298](https://togithub.com/nrwl/nx/pull/21298 ))
- **remix:** add remix ([#​20641](https://togithub.com/nrwl/nx/pull/20641 ))
- **remix:** add createNodes support for target inference ([#​21073](https://togithub.com/nrwl/nx/pull/21073 ))
- **remix:** generate vitest file instead vite.config ([#​21100](https://togithub.com/nrwl/nx/pull/21100 ))
- **remix:** remove projects prompt from artifact generators ([#​21112](https://togithub.com/nrwl/nx/pull/21112 ))
- **remix:** use esm config file ([#​21111](https://togithub.com/nrwl/nx/pull/21111 ))
- **remix:** add init generator ([#​21146](https://togithub.com/nrwl/nx/pull/21146 ))
- **remix:** add nx welcome component ([#​21383](https://togithub.com/nrwl/nx/pull/21383 ))
- **storybook:** nodes plugin ([#​20562](https://togithub.com/nrwl/nx/pull/20562 ))
- **testing:** add create-nodes plugin for playwright e2e targets ([#​20099](https://togithub.com/nrwl/nx/pull/20099 ))
- **testing:** add option to allow filtering test files in playwright executor ([#​20862](https://togithub.com/nrwl/nx/pull/20862 ))
- **testing:** add jest create-nodes plugin ([#​20045](https://togithub.com/nrwl/nx/pull/20045 ))
- **vite:** update to vitest v1 ([#​20747](https://togithub.com/nrwl/nx/pull/20747 ))
- **vite:** recognize all vite.config file extensions ([#​20971](https://togithub.com/nrwl/nx/pull/20971 ))
- **vue:** add nuxt as cnw vue framework ([#​20626](https://togithub.com/nrwl/nx/pull/20626 ))
- **webpack:** simplify inferred webpack-cli command ([#​21340](https://togithub.com/nrwl/nx/pull/21340 ))
- **workspace:** update readme to point people to the graph ([#​21325](https://togithub.com/nrwl/nx/pull/21325 ))
##### 🩹 Fixes
- **angular:** add missing package update for [@​angular/pwa](https://togithub.com/angular/pwa ) ([#​20690](https://togithub.com/nrwl/nx/pull/20690 ))
- **angular:** safely update task runner cacheable operations when setting up ssr ([#​20736](https://togithub.com/nrwl/nx/pull/20736 ))
- **angular:** fix standalone eslint config generation ([#​20885](https://togithub.com/nrwl/nx/pull/20885 ))
- **angular:** add named export for moduleFederationDevServerExecutor ([#​20944](https://togithub.com/nrwl/nx/pull/20944 ))
- **angular:** support scheduling inferred angular cli builder targets ([#​21019](https://togithub.com/nrwl/nx/pull/21019 ))
- **angular:** run function is not called in setup-ssr/application-builder ([#​21157](https://togithub.com/nrwl/nx/pull/21157 ))
- **angular:** support scoped project names and entrypoints in library secondary entrypoint generator ([#​21300](https://togithub.com/nrwl/nx/pull/21300 ))
- **angular:** update autoprefixer migration to the right file ([#​21363](https://togithub.com/nrwl/nx/pull/21363 ))
- **angular:** update setup-ssr generator to support the outputPath object variant ([#​21385](https://togithub.com/nrwl/nx/pull/21385 ))
- **bundling:** added back code to handle skipTypeField option of rollup executor options + tests ([#​20460](https://togithub.com/nrwl/nx/pull/20460 ))
- **core:** properly handle negated paths in cache outputs ([#​20661](https://togithub.com/nrwl/nx/pull/20661 ))
- **core:** show warning if workspaceRoot starts with ! ([#​20705](https://togithub.com/nrwl/nx/pull/20705 ))
- **core:** fallback to checking stderr if stdout is empty on publish executor ([#​20737](https://togithub.com/nrwl/nx/pull/20737 ))
- **core:** correctly move project and target strings ([#​20726](https://togithub.com/nrwl/nx/pull/20726 ))
- **core:** handle "." project roots properly for hashing ([#​20979](https://togithub.com/nrwl/nx/pull/20979 ))
- **core:** prioritize nxignore for watcher updates ([#​20975](https://togithub.com/nrwl/nx/pull/20975 ))
- **core:** formatter should not fail when absolute paths are provided as "--files" ([#​20331](https://togithub.com/nrwl/nx/pull/20331 ))
- **core:** handle invalid group glob groups ([#​21027](https://togithub.com/nrwl/nx/pull/21027 ))
- **core:** ensure connect-to-nx-cloud works with lerna workspaces ([#​20895](https://togithub.com/nrwl/nx/pull/20895 ))
- **core:** accept vue as preset in cnw ([#​21262](https://togithub.com/nrwl/nx/pull/21262 ))
- **core:** properly disconnect daemon & reject promise ([#​21283](https://togithub.com/nrwl/nx/pull/21283 ))
- **core:** fix socket dir removal for macos ([#​21306](https://togithub.com/nrwl/nx/pull/21306 ))
- **core:** remove deprecated recursive rmdir with rm -rf ([#​21327](https://togithub.com/nrwl/nx/pull/21327 ))
- **core:** exit with sigint when sigint is received ([#​21336](https://togithub.com/nrwl/nx/pull/21336 ))
- **core:** yargs array-like prompts initial field is number ([#​21349](https://togithub.com/nrwl/nx/pull/21349 ))
- **core:** clarify error log when a project exists in a directory ([#​21355](https://togithub.com/nrwl/nx/pull/21355 ))
- **core:** do not create new targets from target defaults when packag… ([#​21365](https://togithub.com/nrwl/nx/pull/21365 ))
- **core:** fix sending sigint to child tasks with the new psuedo tty … ([#​21369](https://togithub.com/nrwl/nx/pull/21369 ))
- **core:** fix compilerOptions may not exist ([#​21364](https://togithub.com/nrwl/nx/pull/21364 ))
- **core:** fix conflicting types from merge conflict ([#​21371](https://togithub.com/nrwl/nx/pull/21371 ))
- **core:** address some wonkiness when merging command and run-commands ([#​21315](https://togithub.com/nrwl/nx/pull/21315 ))
- **devkit:** update the ci generators to use the correct launch template ([#​21304](https://togithub.com/nrwl/nx/pull/21304 ))
- **devkit:** fix extractLayoutDirectory typescript types to better reflect allowed params and return value ([#​15339](https://togithub.com/nrwl/nx/pull/15339 ))
- **expo:** fix externalDependencies for expo plugin ([#​21213](https://togithub.com/nrwl/nx/pull/21213 ))
- **graph:** take vscode light/dark theme into account ([#​21208](https://togithub.com/nrwl/nx/pull/21208 ))
- **graph:** refresh pdv periodically in watch mode ([#​21218](https://togithub.com/nrwl/nx/pull/21218 ))
- **graph:** correct value when inputs/outputs are copied ([#​21245](https://togithub.com/nrwl/nx/pull/21245 ))
- **graph:** fix 404 when / in name ([#​21318](https://togithub.com/nrwl/nx/pull/21318 ))
- **js:** fixing output based on test runner selection ([#​20788](https://togithub.com/nrwl/nx/pull/20788 ))
- **js:** allow inlineable dependency to be added to externals ([#​21051](https://togithub.com/nrwl/nx/pull/21051 ))
- **js:** ensure result is valid before attempting to close it during rollup watch ([ea3c2426d3](https://togithub.com/nrwl/nx/commit/ea3c2426d3 ))
- **js:** set the unsafeHttpWhitelist when the set has any items ([#​21216](https://togithub.com/nrwl/nx/pull/21216 ))
- **js:** add [@​swc/helpers](https://togithub.com/swc/helpers ) when initializing js plugin since it is needed by other plugins ([#​21316](https://togithub.com/nrwl/nx/pull/21316 ))
- **js:** fix missing top-level dependencies in publishable libs ([#​17730](https://togithub.com/nrwl/nx/pull/17730 ))
- **linter:** move should migrate all eslint configs ([#​20709](https://togithub.com/nrwl/nx/pull/20709 ))
- **linter:** fix workspace-rule naming with flat config ([#​20782](https://togithub.com/nrwl/nx/pull/20782 ))
- **linter:** ensure angular entry point checks are correct ([#​20859](https://togithub.com/nrwl/nx/pull/20859 ))
- **linter:** flat config should always set path to config when using API ([#​20867](https://togithub.com/nrwl/nx/pull/20867 ))
- **linter:** only update overrides when applicable ([#​20917](https://togithub.com/nrwl/nx/pull/20917 ))
- **linter:** add links to docs to rules ([#​21199](https://togithub.com/nrwl/nx/pull/21199 ))
- **linter:** fix import of chalk for reporting ([#​21201](https://togithub.com/nrwl/nx/pull/21201 ))
- **linter:** update eslint plugins for [@​typescript-eslint](https://togithub.com/typescript-eslint ) v6 naming ([#​21221](https://togithub.com/nrwl/nx/pull/21221 ))
- **misc:** disallow path segments and allow scoped package name in --newProjectName option of move generator ([#​20768](https://togithub.com/nrwl/nx/pull/20768 ))
- **misc:** ignore .nx/cache when running nx init in an angular cli project ([#​21000](https://togithub.com/nrwl/nx/pull/21000 ))
- **misc:** install nx when no plugins selected during nx init ([#​21228](https://togithub.com/nrwl/nx/pull/21228 ))
- **misc:** identify usage of playwright correctly when running nx init ([#​21236](https://togithub.com/nrwl/nx/pull/21236 ))
- **misc:** install required deps during nx init without overriding existing versions ([#​21237](https://togithub.com/nrwl/nx/pull/21237 ))
- **misc:** do not print formatting errors while setting up nx cloud in nx init ([#​21302](https://togithub.com/nrwl/nx/pull/21302 ))
- **misc:** await async function invocations ([#​21299](https://togithub.com/nrwl/nx/pull/21299 ))
- **module-federation:** allow relative remote paths ([#​20763](https://togithub.com/nrwl/nx/pull/20763 ))
- **module-federation:** support buildable libs ([#​20786](https://togithub.com/nrwl/nx/pull/20786 ))
- **nextjs:** empty port should not overwrite env port ([#​20751](https://togithub.com/nrwl/nx/pull/20751 ))
- **nextjs:** Add missing setParserOptionProject ([#​20754](https://togithub.com/nrwl/nx/pull/20754 ))
- **nextjs:** Page generator should work out of the box ([#​20775](https://togithub.com/nrwl/nx/pull/20775 ))
- **nextjs:** enhance page generator to work when --project is not supplied ([#​20778](https://togithub.com/nrwl/nx/pull/20778 ))
- **nextjs:** remove temporary patch for next eslint rules ([#​20863](https://togithub.com/nrwl/nx/pull/20863 ))
- **nextjs:** correct inferred outputs for root Next.js projects ([#​20891](https://togithub.com/nrwl/nx/pull/20891 ))
- **nextjs:** update migration to handle projects without eslintrc ([#​20932](https://togithub.com/nrwl/nx/pull/20932 ))
- **nextjs:** Playwright should work with workspace libs ([#​20933](https://togithub.com/nrwl/nx/pull/20933 ))
- **nextjs:** Missing deps for image and css optimization ([#​20941](https://togithub.com/nrwl/nx/pull/20941 ))
- **nextjs:** Add support for mjs next config file ([#​21007](https://togithub.com/nrwl/nx/pull/21007 ))
- **nextjs:** PCV3 with Cypress and Playwright should work with standalone Next.js Projects ([#​21103](https://togithub.com/nrwl/nx/pull/21103 ))
- **nextjs:** custom server unable to run production builds ([#​21222](https://togithub.com/nrwl/nx/pull/21222 ))
- **node:** E2E test port conflicts ([#​20826](https://togithub.com/nrwl/nx/pull/20826 ))
- **nuxt:** add all target names when adding vite plugin ([#​21332](https://togithub.com/nrwl/nx/pull/21332 ))
- **nx-dev:** change to optimized for monorepos ([#​20668](https://togithub.com/nrwl/nx/pull/20668 ))
- **nx-dev:** adjust blog links ([#​20608](https://togithub.com/nrwl/nx/pull/20608 ))
- **nx-dev:** typo on the homepage ([#​20767](https://togithub.com/nrwl/nx/pull/20767 ))
- **nx-dev:** fix plugin stats ([#​20741](https://togithub.com/nrwl/nx/pull/20741 ))
- **nx-dev:** dynamic classes not allowed ([#​20800](https://togithub.com/nrwl/nx/pull/20800 ))
- **nx-dev:** improve styles ([48bcb534fb](https://togithub.com/nrwl/nx/commit/48bcb534fb ))
- **nx-dev:** fix text colors ([69523f1eed](https://togithub.com/nrwl/nx/commit/69523f1eed ))
- **nx-dev:** fix heading size and improve contrast ([#​21057](https://togithub.com/nrwl/nx/pull/21057 ))
- **nx-dev:** standardize nx cloud naming ([#​21059](https://togithub.com/nrwl/nx/pull/21059 ))
- **nx-dev:** increase shorts video size to show volume control ([#​21142](https://togithub.com/nrwl/nx/pull/21142 ))
- **nx-dev:** do not open official plugins in new tab ([#​21179](https://togithub.com/nrwl/nx/pull/21179 ))
- **nx-dev:** align button sizes on hero ([#​21163](https://togithub.com/nrwl/nx/pull/21163 ))
- **nx-dev:** table of contents with code ([#​21173](https://togithub.com/nrwl/nx/pull/21173 ))
- **react:** webpack backwards compat for `@nx/react/plugin/webpack` ([#​20697](https://togithub.com/nrwl/nx/pull/20697 ))
- **react:** skip adding comma to config when adding remote to host if… ([#​20620](https://togithub.com/nrwl/nx/pull/20620 ))
- **react:** remove <base> tag from generated index.html ([#​20750](https://togithub.com/nrwl/nx/pull/20750 ))
- **react:** update default webpack config for component testing ([#​20749](https://togithub.com/nrwl/nx/pull/20749 ))
- **release:** changelog renderer should prefer breaking change explanation text ([#​20798](https://togithub.com/nrwl/nx/pull/20798 ))
- **release:** ensure leading v is stripped from provided semver version ([#​20815](https://togithub.com/nrwl/nx/pull/20815 ))
- **release:** add overall nx release command ([#​20535](https://togithub.com/nrwl/nx/pull/20535 ))
- **release:** publish error handling, dry-run in dependsOn ([#​20889](https://togithub.com/nrwl/nx/pull/20889 ))
- **release:** capture all release titles during parse ([#​20864](https://togithub.com/nrwl/nx/pull/20864 ))
- **release:** do not set extra v on GitHub release, improve GH API error handling ([#​20999](https://togithub.com/nrwl/nx/pull/20999 ))
- **release:** update error message check for npm dist-tags ([#​20995](https://togithub.com/nrwl/nx/pull/20995 ))
- **release:** stage changes when versioning with --projects argument ([#​21054](https://togithub.com/nrwl/nx/pull/21054 ))
- **release:** default changelog git commit and tag true ([#​21129](https://togithub.com/nrwl/nx/pull/21129 ))
- **release:** versionPrefix should default to auto ([#​21256](https://togithub.com/nrwl/nx/pull/21256 ))
- **release:** filtering publish by project or group should exclude task deps ([#​21231](https://togithub.com/nrwl/nx/pull/21231 ))
- **release:** fix --first-release with conventional commits and independent projects ([#​21320](https://togithub.com/nrwl/nx/pull/21320 ))
- **release:** only add nx-release-publish to public packages ([#​21338](https://togithub.com/nrwl/nx/pull/21338 ))
- **release:** disable workspace changelogs in config when not valid ([#​21341](https://togithub.com/nrwl/nx/pull/21341 ))
- **release:** do not restart the daemon when skipLockFileUpdate is set ([#​21389](https://togithub.com/nrwl/nx/pull/21389 ))
- **release:** ensure non-zero exit code is propagated, change missing target handling ([#​21388](https://togithub.com/nrwl/nx/pull/21388 ))
- **remix:** legacy package pointing to incorrect readme ([#​21113](https://togithub.com/nrwl/nx/pull/21113 ))
- **remix:** import of config file should invalidate cache ([#​21121](https://togithub.com/nrwl/nx/pull/21121 ))
- **remix:** required property in schema should be project ([#​21258](https://togithub.com/nrwl/nx/pull/21258 ))
- **remix:** use twStyles as import to prevent conflicts ([#​21276](https://togithub.com/nrwl/nx/pull/21276 ))
- **remix:** tsconfigs were being incorrectly generated causing errors [#​21002](https://togithub.com/nrwl/nx/issues/21002 ) ([#​21387](https://togithub.com/nrwl/nx/pull/21387 ), [#​21002](https://togithub.com/nrwl/nx/issues/21002 ))
- **repo:** add missing packages to nightly ([#​20908](https://togithub.com/nrwl/nx/pull/20908 ))
- **repo:** update nightly matrix with new packages ([#​20911](https://togithub.com/nrwl/nx/pull/20911 ))
- **repo:** fix version calculation on nx-release ([#​21382](https://togithub.com/nrwl/nx/pull/21382 ))
- **storybook:** do not throw for versions >=7 ([#​20770](https://togithub.com/nrwl/nx/pull/20770 ))
- **storybook:** handle output-dir properly for outputs ([#​21168](https://togithub.com/nrwl/nx/pull/21168 ))
- **storybook:** throw if no project name for angular ([#​21308](https://togithub.com/nrwl/nx/pull/21308 ))
- **storybook:** add storybook-static to gitignore for pcv3 ([#​21309](https://togithub.com/nrwl/nx/pull/21309 ))
- **testing:** avoid overwriting environment variables in nx cypress preset ([#​20748](https://togithub.com/nrwl/nx/pull/20748 ))
- **testing:** run playwright with the correct project option for multiple values ([#​20850](https://togithub.com/nrwl/nx/pull/20850 ))
- **testing:** safely handle circular deps in component testing plugin ([#​20852](https://togit
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-01 14:33:25 +00:00
LongYinan
b524564223
chore: bump up react-datepicker version to v6 ( #5777 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [react-datepicker](https://togithub.com/Hacker0x01/react-datepicker ) | [`^5.0.0` -> `^6.0.0`](https://renovatebot.com/diffs/npm/react-datepicker/5.1.0/6.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>Hacker0x01/react-datepicker (react-datepicker)</summary>
### [`v6.0.0`](https://togithub.com/Hacker0x01/react-datepicker/releases/tag/v6.0.0 ): 6.0.0
[Compare Source](https://togithub.com/Hacker0x01/react-datepicker/compare/v5.1.0...v6.0.0 )
#### What's Changed
- Upgrade date-fns to v3 by [@​ethanve](https://togithub.com/ethanve ) in [https://github.com/Hacker0x01/react-datepicker/pull/4481 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4481 )
- Switch workflows to Node 20 by [@​martijnrusschen](https://togithub.com/martijnrusschen ) in [https://github.com/Hacker0x01/react-datepicker/pull/4490 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4490 )
#### New Contributors
- [@​ethanve](https://togithub.com/ethanve ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4481 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4481 )
**Full Changelog**: https://github.com/Hacker0x01/react-datepicker/compare/v5.1.0...v6.0.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-01 14:06:11 +00:00
LongYinan
83e7afeb6b
chore: exclude oxlint from non-major dependencies group ( #5775 )
2024-02-01 10:58:09 +00:00
liuyi
2f3c6f104e
fix(server): doc upsert without row lock ( #5765 )
2024-02-01 09:49:02 +00:00
Peng Xiao
7d951a975f
fix(core): replace most --affine with cssVar ( #5728 )
...
using a [babel plugin](https://gist.github.com/pengx17/49e24ae8a5a609bdaff122ee8c679d1c ) to transform all var(--affine-xxx) to cssVar
Some issues:
- tried ast-grep but it seems to be not easy to add imports conditionally
- current work does not work well with ts with types because babel will strip them out
2024-02-01 09:33:11 +00:00
LongYinan
5612424b85
chore: bump up react-datepicker version to v5 ( #5691 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [react-datepicker](https://togithub.com/Hacker0x01/react-datepicker ) | [`^4.20.0` -> `^5.0.0`](https://renovatebot.com/diffs/npm/react-datepicker/4.23.0/5.1.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>Hacker0x01/react-datepicker (react-datepicker)</summary>
### [`v5.1.0`](https://togithub.com/Hacker0x01/react-datepicker/compare/v5.0.0...v5.1.0 )
[Compare Source](https://togithub.com/Hacker0x01/react-datepicker/compare/v5.0.0...v5.1.0 )
### [`v5.0.0`](https://togithub.com/Hacker0x01/react-datepicker/releases/tag/v5.0.0 ): 5.0.0
[Compare Source](https://togithub.com/Hacker0x01/react-datepicker/compare/v4.25.0...v5.0.0 )
#### Breaking changes
- Migrate from Popper.js to Floating-UI by [@​G07cha](https://togithub.com/G07cha ) in [https://github.com/Hacker0x01/react-datepicker/pull/4393 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4393 )
#### What's Changed
- 🐛 FIX: readability-isMonthinRange by [@​mary139](https://togithub.com/mary139 ) in [https://github.com/Hacker0x01/react-datepicker/pull/4421 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4421 )
- Fix [#​4431](https://togithub.com/Hacker0x01/react-datepicker/issues/4431 ): Update the excludedDate to match the year to check of the isYearDisabled by [@​balajis-qb](https://togithub.com/balajis-qb ) in [https://github.com/Hacker0x01/react-datepicker/pull/4432 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4432 )
- Fix [#​4420](https://togithub.com/Hacker0x01/react-datepicker/issues/4420 ): Update home key and end key navigation in Calendar component by [@​balajis-qb](https://togithub.com/balajis-qb ) in [https://github.com/Hacker0x01/react-datepicker/pull/4430 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4430 )
- Document [#​4420](https://togithub.com/Hacker0x01/react-datepicker/issues/4420 ): 📝 Update the behavior of Home Key and End Key in the README file by [@​balajis-qb](https://togithub.com/balajis-qb ) in [https://github.com/Hacker0x01/react-datepicker/pull/4438 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4438 )
- Fix [#​4076](https://togithub.com/Hacker0x01/react-datepicker/issues/4076 ): Trigger onCalendarClose event and onChange even when the same date is selected as the start and the end date in a date range by [@​balajis-qb](https://togithub.com/balajis-qb ) in [https://github.com/Hacker0x01/react-datepicker/pull/4394 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4394 )
- Excluded dates message by [@​dvelazquez1282](https://togithub.com/dvelazquez1282 ) in [https://github.com/Hacker0x01/react-datepicker/pull/4437 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4437 )
- Fix [#​4456](https://togithub.com/Hacker0x01/react-datepicker/issues/4456 ): Add shift+pageUp key and shift+pageDown key navigation in Calendar component by [@​balajis-qb](https://togithub.com/balajis-qb ) in [https://github.com/Hacker0x01/react-datepicker/pull/4457 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4457 )
- Fix options passed to date-fns/format by [@​emilecantin](https://togithub.com/emilecantin ) in [https://github.com/Hacker0x01/react-datepicker/pull/4469 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4469 )
#### New Contributors
- [@​mary139](https://togithub.com/mary139 ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4421 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4421 )
- [@​G07cha](https://togithub.com/G07cha ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4393 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4393 )
- [@​dvelazquez1282](https://togithub.com/dvelazquez1282 ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4437 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4437 )
- [@​emilecantin](https://togithub.com/emilecantin ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4469 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4469 )
**Full Changelog**: https://github.com/Hacker0x01/react-datepicker/compare/v4.25.0...v5.0.0
### [`v4.25.0`](https://togithub.com/Hacker0x01/react-datepicker/releases/tag/v4.25.0 ): 4.25.0
[Compare Source](https://togithub.com/Hacker0x01/react-datepicker/compare/v4.24.0...v4.25.0 )
#### What's Changed
- feature: Add day parameter to renderMonthContent function by [@​omarhoumz](https://togithub.com/omarhoumz ) in [https://github.com/Hacker0x01/react-datepicker/pull/4405 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4405 )
- Update 'Local Development' instruction of README.md by [@​raceStarter](https://togithub.com/raceStarter ) in [https://github.com/Hacker0x01/react-datepicker/pull/4391 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4391 )
- Feature [#​4091](https://togithub.com/Hacker0x01/react-datepicker/issues/4091 ) - Make the Calendar Icon clickable by [@​balajis-qb](https://togithub.com/balajis-qb ) in [https://github.com/Hacker0x01/react-datepicker/pull/4417 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4417 )
#### New Contributors
- [@​omarhoumz](https://togithub.com/omarhoumz ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4405 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4405 )
- [@​raceStarter](https://togithub.com/raceStarter ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4391 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4391 )
**Full Changelog**: https://github.com/Hacker0x01/react-datepicker/compare/v4.24.0...v4.25.0
### [`v4.24.0`](https://togithub.com/Hacker0x01/react-datepicker/releases/tag/v4.24.0 ): 4.24.0
[Compare Source](https://togithub.com/Hacker0x01/react-datepicker/compare/v4.23.0...v4.24.0 )
#### What's Changed
- containerRef div shouldnt affect styling by [@​joaopaulo-capy](https://togithub.com/joaopaulo-capy ) in [https://github.com/Hacker0x01/react-datepicker/pull/4384 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4384 )
- Fix: reflect the `holidays` prop change by [@​shimech](https://togithub.com/shimech ) in [https://github.com/Hacker0x01/react-datepicker/pull/4373 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4373 )
- Disable clear button when the component is disabled by [@​Rafatcb](https://togithub.com/Rafatcb ) in [https://github.com/Hacker0x01/react-datepicker/pull/4392 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4392 )
#### New Contributors
- [@​joaopaulo-capy](https://togithub.com/joaopaulo-capy ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4384 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4384 )
- [@​shimech](https://togithub.com/shimech ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4373 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4373 )
- [@​Rafatcb](https://togithub.com/Rafatcb ) made their first contribution in [https://github.com/Hacker0x01/react-datepicker/pull/4392 ](https://togithub.com/Hacker0x01/react-datepicker/pull/4392 )
**Full Changelog**: https://github.com/Hacker0x01/react-datepicker/compare/v4.23.0...v4.24.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-01 09:23:45 +00:00
LongYinan
15d32926c3
ci: use free m1 macos runner ( #5766 )
...
https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/
2024-02-01 09:03:07 +00:00
Peng Xiao
df8e8051c3
chore: bump electron dependencies ( #5770 )
...
to include this fix https://github.com/electron/electron/pull/40994
2024-02-01 08:53:20 +00:00
Joooye_34
338c3001b0
feat: support sign-in with subscription coupon ( #5768 )
2024-02-01 08:43:47 +00:00
Yifeng Wang
fec2090de5
feat: bump blocksuite ( #5767 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2024-02-01 16:28:22 +08:00
LongYinan
61677b2ac4
chore: change bump-blocksuite script to js ( #5763 )
...
`./scripts/bump-blocksuite.js`
2024-02-01 07:16:19 +00:00
EYHN
799fa9cfa6
fix(workspace): fix sync stuck ( #5762 )
...
* remove MultipleBatchSyncSender
* add timeout (30 seconds) on socket.emit
2024-02-01 06:58:09 +00:00
Chen
aa33bf60d6
fix: update blocksuite local debug config ( #5742 )
...
Due to the reconstruction of the blocksuite package, the corresponding local debug configuration needs to be updated.
The related commit: https://github.com/toeverything/blocksuite/pull/6133
2024-02-01 06:49:16 +00:00
DarkSky
1db8019292
feat: ignore case for email ( #5754 )
...
fix #5738
2024-02-01 05:05:16 +00:00
LongYinan
349f7c3f15
chore: bump up codecov/codecov-action action to v4 ( #5758 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [codecov/codecov-action](https://togithub.com/codecov/codecov-action ) | action | major | `v3` -> `v4` |
---
### Release Notes
<details>
<summary>codecov/codecov-action (codecov/codecov-action)</summary>
### [`v4`](https://togithub.com/codecov/codecov-action/compare/v3...v4 )
[Compare Source](https://togithub.com/codecov/codecov-action/compare/v3...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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-02-01 02:17:20 +00:00
LongYinan
057796e691
chore: bump up kentaro-m/auto-assign-action action to v2 ( #5757 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [kentaro-m/auto-assign-action](https://togithub.com/kentaro-m/auto-assign-action ) | action | major | `v1.2.5` -> `v2.0.0` |
---
### Release Notes
<details>
<summary>kentaro-m/auto-assign-action (kentaro-m/auto-assign-action)</summary>
### [`v2.0.0`](https://togithub.com/kentaro-m/auto-assign-action/releases/tag/v2.0.0 )
[Compare Source](https://togithub.com/kentaro-m/auto-assign-action/compare/v1.2.6...v2.0.0 )
#### What's Changed
- chore(deps): update dependency prettier to v3.2.4 by [@​renovate](https://togithub.com/renovate ) in [https://github.com/kentaro-m/auto-assign-action/pull/166 ](https://togithub.com/kentaro-m/auto-assign-action/pull/166 )
- fix: update Node.js version and action configuration by [@​kentaro-m](https://togithub.com/kentaro-m ) in [https://github.com/kentaro-m/auto-assign-action/pull/170 ](https://togithub.com/kentaro-m/auto-assign-action/pull/170 )
- fix: update [@​types/node](https://togithub.com/types/node ) version to 20.11.13 by [@​kentaro-m](https://togithub.com/kentaro-m ) in [https://github.com/kentaro-m/auto-assign-action/pull/171 ](https://togithub.com/kentaro-m/auto-assign-action/pull/171 )
**Full Changelog**: https://github.com/kentaro-m/auto-assign-action/compare/v1.2.6...v2.0.0
### [`v1.2.6`](https://togithub.com/kentaro-m/auto-assign-action/releases/tag/v1.2.6 )
[Compare Source](https://togithub.com/kentaro-m/auto-assign-action/compare/v1.2.5...v1.2.6 )
#### Changes
- fix: fix security issue ([#​165](https://togithub.com/kentaro-m/auto-assign-action/issues/165 )) [@​kentaro-m](https://togithub.com/kentaro-m )
- chore(deps): update dependency prettier to v3.1.1 ([#​163](https://togithub.com/kentaro-m/auto-assign-action/issues/163 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update actions/setup-node action to v4 ([#​158](https://togithub.com/kentaro-m/auto-assign-action/issues/158 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update actions/checkout action to v4 ([#​152](https://togithub.com/kentaro-m/auto-assign-action/issues/152 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency typescript to v5.3.3 ([#​162](https://togithub.com/kentaro-m/auto-assign-action/issues/162 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency typescript to v5.3.2 ([#​161](https://togithub.com/kentaro-m/auto-assign-action/issues/161 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency prettier to v3.1.0 ([#​160](https://togithub.com/kentaro-m/auto-assign-action/issues/160 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update unit test packages ([#​138](https://togithub.com/kentaro-m/auto-assign-action/issues/138 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency typescript to v5.2.2 ([#​151](https://togithub.com/kentaro-m/auto-assign-action/issues/151 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency [@​vercel/ncc](https://togithub.com/vercel/ncc ) to v0.38.1 ([#​156](https://togithub.com/kentaro-m/auto-assign-action/issues/156 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency lint-staged to v13.3.0 ([#​150](https://togithub.com/kentaro-m/auto-assign-action/issues/150 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency [@​vercel/ncc](https://togithub.com/vercel/ncc ) to v0.38.0 ([#​149](https://togithub.com/kentaro-m/auto-assign-action/issues/149 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency [@​octokit/webhooks-types](https://togithub.com/octokit/webhooks-types ) to v7.3.1 ([#​143](https://togithub.com/kentaro-m/auto-assign-action/issues/143 )) [@​renovate](https://togithub.com/renovate )
- fix(deps): update dependency [@​actions/core](https://togithub.com/actions/core ) to v1.10.1 ([#​148](https://togithub.com/kentaro-m/auto-assign-action/issues/148 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency prettier to v3.0.3 ([#​147](https://togithub.com/kentaro-m/auto-assign-action/issues/147 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency node to v16.20.2 ([#​142](https://togithub.com/kentaro-m/auto-assign-action/issues/142 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency [@​octokit/webhooks-types](https://togithub.com/octokit/webhooks-types ) to v7 ([#​135](https://togithub.com/kentaro-m/auto-assign-action/issues/135 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency prettier to v3.0.1 ([#​141](https://togithub.com/kentaro-m/auto-assign-action/issues/141 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency prettier to v3 ([#​140](https://togithub.com/kentaro-m/auto-assign-action/issues/140 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency typescript to v5.1.6 ([#​139](https://togithub.com/kentaro-m/auto-assign-action/issues/139 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency lint-staged to v13.2.3 ([#​137](https://togithub.com/kentaro-m/auto-assign-action/issues/137 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update node.js to v16.20.1 ([#​134](https://togithub.com/kentaro-m/auto-assign-action/issues/134 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency typescript to v5.1.3 ([#​132](https://togithub.com/kentaro-m/auto-assign-action/issues/132 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update node.js to v16.20.0 ([#​126](https://togithub.com/kentaro-m/auto-assign-action/issues/126 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency ts-jest to v29.1.0 ([#​130](https://togithub.com/kentaro-m/auto-assign-action/issues/130 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency [@​octokit/webhooks-types](https://togithub.com/octokit/webhooks-types ) to v6.11.0 ([#​129](https://togithub.com/kentaro-m/auto-assign-action/issues/129 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency prettier to v2.8.8 ([#​131](https://togithub.com/kentaro-m/auto-assign-action/issues/131 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency lint-staged to v13.2.2 ([#​127](https://togithub.com/kentaro-m/auto-assign-action/issues/127 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency typescript to v5.0.4 ([#​128](https://togithub.com/kentaro-m/auto-assign-action/issues/128 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency typescript to v5.0.3 ([#​125](https://togithub.com/kentaro-m/auto-assign-action/issues/125 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency prettier to v2.8.7 ([#​123](https://togithub.com/kentaro-m/auto-assign-action/issues/123 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency typescript to v5 ([#​122](https://togithub.com/kentaro-m/auto-assign-action/issues/122 )) [@​renovate](https://togithub.com/renovate )
- fix(deps): update dependency js-yaml to v3.14.1 ([#​121](https://togithub.com/kentaro-m/auto-assign-action/issues/121 )) [@​renovate](https://togithub.com/renovate )
- fix(deps): update dependency [@​actions/github](https://togithub.com/actions/github ) to v5.1.1 ([#​120](https://togithub.com/kentaro-m/auto-assign-action/issues/120 )) [@​renovate](https://togithub.com/renovate )
- fix(deps): update dependency [@​actions/core](https://togithub.com/actions/core ) to v1.10.0 ([#​119](https://togithub.com/kentaro-m/auto-assign-action/issues/119 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update unit test packages to v29.5.0 ([#​118](https://togithub.com/kentaro-m/auto-assign-action/issues/118 )) [@​renovate](https://togithub.com/renovate )
- chore(deps): update dependency lint-staged to v13.2.0 ([#​117](https://togithub.com/kentaro-m/auto-assign-action/issues/117 )) [@​renovate](https://togithub.com/renovate )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-31 15:19:32 +00:00
LongYinan
e26d978b26
fix(server): resolve cherry-pick issue
2024-01-31 22:00:20 +08:00
liuyi
e3b8d0dba4
feat(server): allow pass coupon to checkout session ( #5749 )
2024-01-31 21:34:22 +08:00
liuyi
f1ccc504b5
fix(server): doc upsert race condition ( #5755 )
2024-01-31 21:13:29 +08:00
liuyi
26db1d436d
refactor(server): server errors ( #5741 )
...
standardize the error raising in both GraphQL Resolvers and Controllers.
Now, All user aware errors should be throwed with `HttpException`'s variants, for example `NotFoundException`.
> Directly throwing `GraphQLError` are forbidden.
The GraphQL errorFormatter will handle it automatically and set `code`, `status` in error extensions.
At the same time, the frontend `GraphQLError` should be imported from `@affine/graphql`, which introduce a better error extensions type.
----
controller example:
```js
@Get('/docs/${id}')
doc() {
// ...
// imported from '@nestjs/common'
throw new NotFoundException('Doc is not found.');
// ...
}
```
the above will response as:
```
status: 404 Not Found
{
"message": "Doc is not found.",
"statusCode": 404,
"error": "Not Found"
}
```
resolver example:
```js
@Mutation()
invite() {
// ...
throw new PayloadTooLargeException('Workspace seats is full.')
// ...
}
```
the above will response as:
```
status: 200 Ok
{
"data": null,
"errors": [
{
"message": "Workspace seats is full.",
"extensions": {
"code": 404,
"status": "Not Found"
}
}
]
}
```
for frontend GraphQLError user-friend, a helper function introduced:
```js
import { findGraphQLError } from '@affine/graphql'
fetch(query)
.catch(errOrArr => {
const e = findGraphQLError(errOrArr, e => e.extensions.code === 404)
if (e) {
// handle
}
})
```
2024-01-31 08:43:03 +00:00
liuyi
72d9cc1e5b
chore(storage): bump y-octo ( #5751 )
2024-01-31 06:54:33 +00:00
liuyi
db8e49b046
refactor(server): throw Unauthorized instead if user is not signed in ( #5746 )
2024-01-31 02:12:22 +00:00
Cats Juice
5f3c04b51e
fix(core): set createDate to journal's date when journal created ( #5701 )
2024-01-30 23:11:07 +08:00
Cats Juice
6b350b1735
feat(core): append to today's joruanl via CMDK ( #5692 )
2024-01-30 23:08:25 +08:00
EYHN
329fc19852
refactor(infra): migrate to new infra ( #5565 )
2024-01-30 07:16:39 +00:00
EYHN
1e3499c323
feat(infra): page infra ( #5618 )
2024-01-30 06:31:26 +00:00
EYHN
2e71c980cf
feat(infra): new workspace infra ( #5617 )
...
This PR copying @affine/workspace into common/infra, and adding definitions for services and unit tests.
2024-01-30 06:31:24 +00:00
EYHN
4f7e0d012d
chore: fix vitest error on tinykeys ( #5693 )
2024-01-30 06:31:21 +00:00
EYHN
88cd83fed1
feat(infra): standard lifecycle service ( #5564 )
2024-01-30 06:31:19 +00:00
EYHN
b3a8e62984
feat(infra): standard storage service ( #5563 )
2024-01-30 06:31:15 +00:00
EYHN
48eb6c50e1
feat(infra): di container ( #5497 )
...
docs: https://insider.affine.pro/share/055f9c4b-497a-43ec-a1c9-29d5baf184b9/N785YJ__oLMb2fUaLOv-k
2024-01-30 06:31:13 +00:00
EYHN
c9f8e49f75
feat(infra): livedata ( #5562 )
...
LiveData is a reactive data type.
## basic usage
@example
```ts
const livedata = new LiveData(0); // create livedata with initial value
livedata.next(1); // update value
console.log(livedata.value); // get current value
livedata.subscribe(v => { // subscribe to value changes
console.log(v); // 1
});
```
## observable
LiveData is a rxjs observable, you can use rxjs operators.
@example
```ts
new LiveData(0).pipe(
map(v => v + 1),
filter(v => v > 1),
...
)
```
NOTICE: different from normal observable, LiveData will always emit the latest value when you subscribe to it.
## from observable
LiveData can be created from observable or from other livedata.
@example
```ts
const A = LiveData.from(
of(1, 2, 3, 4), // from observable
0 // initial value
);
const B = LiveData.from(
A.pipe(map(v => 'from a ' + v)), // from other livedata
'' // initial value
);
```
NOTICE: LiveData.from will not complete when the observable completes, you can use `spreadComplete` option to change
this behavior.
## Why is it called LiveData
This API is very similar to LiveData in Android, as both are based on Observable, so I named it LiveData.
2024-01-30 06:31:11 +00:00
LongYinan
588b3bcf33
chore: revert "chore: bump up @reforged/maker-appimage version to v4" ( #5736 )
...
link #5709
This reverts commit 59788aa334 .
2024-01-29 08:41:35 +00:00
Yifeng Wang
1cf902bdb6
feat: bump blocksuite ( #5735 )
2024-01-29 16:40:23 +08:00
DarkSky
fc8a48fb43
feat: add business blob limit ( #5734 )
2024-01-29 08:32:35 +00:00
LongYinan
0044be972f
chore: bump up @blocksuite/icons version to v2.1.44 ( #5732 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.43` -> `2.1.44`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.43/2.1.44 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>toeverything/icons (@​blocksuite/icons)</summary>
### [`v2.1.44`](13299f7ede...bc31d70961 )
[Compare Source](13299f7ede...bc31d70961 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-29 07:39:17 +00:00
LongYinan
5bd339bed7
feat: generate blocksuite changelog ( #5724 )
2024-01-29 07:28:02 +00:00
LongYinan
25e8b8306f
fix: path issue on Windows ( #5725 )
2024-01-29 07:18:25 +00:00
DarkSky
070d5ca471
feat: impl unlimited features ( #5659 )
2024-01-26 08:28:54 +00:00
Yifeng Wang
04b9029d1b
feat: bump blocksuite ( #5720 )
...
Co-authored-by: xiaoxin <hongtao.lye@toeverything.info >
2024-01-26 16:27:58 +08:00
Cats Juice
387e292ed9
fix(core): journal title's day tag may be invalid ( #5703 )
...
Fix [TOV-470](https://linear.app/affine-design/issue/TOV-470/journal-invalid-date )
2024-01-26 07:55:35 +00:00
JimmFly
18068f4ae2
feat(core): add collection and tag filters to all pages ( #5567 )
...
close TOV-69
Added the `filterMode` parameter to the `/all` route.
Abstracted the `PageList` and associated components into more universal ones.
Added the `useTagMetas` hook to get and update the workspace tags.
https://github.com/toeverything/AFFiNE/assets/102217452/7595944d-a056-40c2-8d89-d8df9e901a4b
2024-01-26 07:42:47 +00:00
Peng Xiao
b867dcbdeb
fix: add padding between editor and link panel ( #5713 )
...
Fix [AFF-561](https://linear.app/affine-design/issue/AFF-561/bi-directional-link-与文本编辑区域的-top-padding )
2024-01-26 07:32:22 +00:00
Cats Juice
6ca2043697
feat(component): optimize week-date-picker keyboard navigation ( #5684 )
2024-01-26 07:05:19 +00:00
LongYinan
16ef255f51
chore: upgrade husky to latest ( #5719 )
...
- https://github.com/typicode/husky/pull/1336
2024-01-26 06:37:39 +00:00
LongYinan
1cf182b7ca
ci: add postUpdateOptions to renovate ( #5714 )
2024-01-26 06:19:38 +00:00
Peng Xiao
e8a6b6ad5e
fix(core): bidi links rendering issue ( #5707 )
2024-01-26 06:07:04 +00:00
Joooye_34
fd9a7f6aad
chore: remove unused blocksuite deps in e2e ( #5717 )
2024-01-26 05:55:13 +00:00
LongYinan
af45b93d26
chore: bump up husky version to v9 ( #5694 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [husky](https://togithub.com/typicode/husky ) | [`^8.0.3` -> `^9.0.0`](https://renovatebot.com/diffs/npm/husky/8.0.3/9.0.6 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>typicode/husky (husky)</summary>
### [`v9.0.6`](https://togithub.com/typicode/husky/releases/tag/v9.0.6 )
[Compare Source](https://togithub.com/typicode/husky/compare/v9.0.5...v9.0.6 )
- docs: add favicon by [@​rakleed](https://togithub.com/rakleed ) in [https://github.com/typicode/husky/pull/1354 ](https://togithub.com/typicode/husky/pull/1354 )
- chore: apply editorconfig to code only by [@​typicode](https://togithub.com/typicode ) in [https://github.com/typicode/husky/pull/1355 ](https://togithub.com/typicode/husky/pull/1355 )
- docs: update install script to mjs and fix CI checks by [@​starnayuta](https://togithub.com/starnayuta ) in [https://github.com/typicode/husky/pull/1357 ](https://togithub.com/typicode/husky/pull/1357 )
- Fix unbound variable by [@​typicode](https://togithub.com/typicode ) in [https://github.com/typicode/husky/pull/1359 ](https://togithub.com/typicode/husky/pull/1359 )
### [`v9.0.5`](https://togithub.com/typicode/husky/releases/tag/v9.0.5 )
[Compare Source](https://togithub.com/typicode/husky/compare/v9.0.4...v9.0.5 )
- docs: update path to startup files by [@​ManuelRauber](https://togithub.com/ManuelRauber ) in [https://github.com/typicode/husky/pull/1350 ](https://togithub.com/typicode/husky/pull/1350 )
- fix: init error by [@​typicode](https://togithub.com/typicode ) in [https://github.com/typicode/husky/pull/1353 ](https://togithub.com/typicode/husky/pull/1353 )
### [`v9.0.4`](https://togithub.com/typicode/husky/releases/tag/v9.0.4 )
[Compare Source](https://togithub.com/typicode/husky/compare/v9.0.3...v9.0.4 )
- fix: init create dir before by [@​typicode](https://togithub.com/typicode ) in [https://github.com/typicode/husky/pull/1348 ](https://togithub.com/typicode/husky/pull/1348 )
- refactor: simplify by [@​typicode](https://togithub.com/typicode ) in [https://github.com/typicode/husky/pull/1349 ](https://togithub.com/typicode/husky/pull/1349 )
- fix: init not working on pnpm [#​1334](https://togithub.com/typicode/husky/issues/1334 ) by [@​rozbo](https://togithub.com/rozbo ) in [https://github.com/typicode/husky/pull/1347 ](https://togithub.com/typicode/husky/pull/1347 )
### [`v9.0.3`](https://togithub.com/typicode/husky/releases/tag/v9.0.3 )
[Compare Source](https://togithub.com/typicode/husky/compare/v9.0.2...v9.0.3 )
- docs: fix link by [@​typicode](https://togithub.com/typicode ) in [https://github.com/typicode/husky/pull/1340 ](https://togithub.com/typicode/husky/pull/1340 )
- chore: fix links in issue template by [@​julien-f](https://togithub.com/julien-f ) in [https://github.com/typicode/husky/pull/1341 ](https://togithub.com/typicode/husky/pull/1341 )
- fix: add scripts field if not present by [@​chalkygames123](https://togithub.com/chalkygames123 ) in [https://github.com/typicode/husky/pull/1338 ](https://togithub.com/typicode/husky/pull/1338 )
- docs: changelog link by [@​typicode](https://togithub.com/typicode ) in [https://github.com/typicode/husky/pull/1343 ](https://togithub.com/typicode/husky/pull/1343 )
- fix: insert final newline by [@​chalkygames123](https://togithub.com/chalkygames123 ) in [https://github.com/typicode/husky/pull/1339 ](https://togithub.com/typicode/husky/pull/1339 )
- fix: fix git hooks path on windows by [@​rozbo](https://togithub.com/rozbo ) in [https://github.com/typicode/husky/pull/1346 ](https://togithub.com/typicode/husky/pull/1346 )
### [`v9.0.2`](https://togithub.com/typicode/husky/releases/tag/v9.0.2 )
[Compare Source](https://togithub.com/typicode/husky/compare/v9.0.1...v9.0.2 )
#### What's Changed
- fix: exit code by [@​gergelypap](https://togithub.com/gergelypap ) in [https://github.com/typicode/husky/pull/1336 ](https://togithub.com/typicode/husky/pull/1336 )
- docs: typo by [@​chalkygames123](https://togithub.com/chalkygames123 ) in [https://github.com/typicode/husky/pull/1337 ](https://togithub.com/typicode/husky/pull/1337 )
#### New Contributors
- [@​gergelypap](https://togithub.com/gergelypap ) made their first contribution in [https://github.com/typicode/husky/pull/1336 ](https://togithub.com/typicode/husky/pull/1336 )
**Full Changelog**: https://github.com/typicode/husky/compare/v9.0.1...v9.0.2
### [`v9.0.1`](https://togithub.com/typicode/husky/releases/tag/v9.0.1 )
[Compare Source](https://togithub.com/typicode/husky/compare/v8.0.3...v9.0.1 )
<p align="center">
Kicking off the year with an exciting update!
</p>
<p align="center">
<img src="https://github.com/typicode/husky/assets/5502029/457ab087-e935-4196-b99f-601ecf37f263 " height="400px" alt="" />
</p>
#### TLDR;
Improved user experience and a (even) smaller package size while packing in more features!
#### 👋 By the Way
**I'm available for remote work** (Front-end/Back-end mainly JS/TS but open to other stacks Rails, Go, Elixir). You can contact me at my mail: typicode at gmail 🙂
#### Introducing `husky init`
Adding husky to a project is now easier than ever. Although the installation process was straightforward, it often required consulting the documentation.
##### v8
```shell
npm pkg set scripts.prepare="husky install"
npm run prepare
npx husky add .husky/pre-commit "npm test"
```
##### v9
```shell
npx husky init
```
#### Adding a New Hook
Adding a hook is now as simple as creating a file. This can be accomplished using your favorite editor, a script or a basic `echo` command.
##### v8
```shell
npx husky add .husky/pre-commit "npm test"
git add --chmod=+x .husky/pre-commit # On Windows
```
##### v9
```shell
echo "npm test" > .husky/pre-commit
```
#### Further Size Reduction
`v8` was already the most compact Git hooks manager at approximately `6kB`.
`v9` takes this a step further, reducing the size to just `3kB`, likely making it the smallest devDependency in your toolkit.
**To give you an idea of how small it is, the biggest file in the project is the MIT license 😄 **
#### More to Come
Additional features are in the pipeline for `v9`. Stay tuned 🙌
#### Other Changes
- **Enhanced security** with CI and npm `--provenance` for safer publishing.
- Added **`$XDG_CONFIG_HOME`** support. Move `~/.huskyrc` to `~/.config/husky/init.sh` for centralized configuration.
- **Fixed permission issue for Windows-created hooks**; they no longer need to be executable.
- Removed `husky install`. Use `husky` or `husky some/dir` for the same functionality (deprecation notice to be added).
- Modified behavior when `.git` is missing; it now triggers a warning instead of failure.
- Replaced `HUSKY_DEBUG=1` with `HUSKY=2` for debugging.
- Updated the Husky API for module usage.
- Transitioned to `ESM` for module usage.
- Dropped support for Node 14 and 16.
- Revamped docs.
#### How to Migrate
`v9` is backward compatible with `v8`, allowing you to freely upgrade and migrate your hooks later.
`package.json`
```diff
{
"scripts": {
- "prepare": "husky install"
+ "prepare": "husky"
}
}
```
`.husky/pre-commit`
```diff
- #!/usr/bin/env sh
- . "$(dirname -- "$0")/_/husky.sh"
npm test
```
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-26 02:53:34 +00:00
LongYinan
59788aa334
chore: bump up @reforged/maker-appimage version to v4 ( #5709 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@reforged/maker-appimage](https://togithub.com/SpacingBat3/ReForged ) | [`^3.3.1` -> `^4.0.0`](https://renovatebot.com/diffs/npm/@reforged%2fmaker-appimage/3.3.1/4.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>SpacingBat3/ReForged (@​reforged/maker-appimage)</summary>
### [`v4.0.0`](1657b03766...f829e7a954 )
[Compare Source](1657b03766...f829e7a954 )
### [`v3.3.2`](45d28765c2...1657b03766 )
[Compare Source](45d28765c2...1657b03766 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-26 02:41:08 +00:00
DarkSky
fdffe90892
fix: consume blob stream correctly ( #5706 )
...
- use correctly endpoint in r2
- consume blob stream correctly
2024-01-25 10:59:53 +00:00
LongYinan
db3891ba33
chore: bump up @blocksuite/icons version to v2.1.43 ( #5702 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.42` -> `2.1.43`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.42/2.1.43 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>toeverything/icons (@​blocksuite/icons)</summary>
### [`v2.1.43`](fe902db67e...13299f7ede )
[Compare Source](fe902db67e...13299f7ede )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-25 08:56:39 +00:00
Cats Juice
e7307d969c
chore(core): remove journal experimental flag ( #5698 )
2024-01-25 05:33:57 +00:00
Joooye_34
bd8c7751db
chore: update base version to 0.12.0 ( #5695 )
2024-01-25 05:17:35 +00:00
Cats Juice
9aa421d5e1
fix(core): modify journal page title today style, add weekday tag ( #5687 )
...
fix [TOV-434](https://linear.app/affine-design/issue/TOV-434/修改-journal-中-「today」的字体大小和日期-title-大小 )
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/toeverything/AFFiNE/assets/39363750/ac0ab085-5ff7-4d27-a0b1-11d97fdd8074 ">
<img width="100%" alt="" src="https://github.com/toeverything/AFFiNE/assets/39363750/3b311130-ded2-4651-badd-65dd059b7bc5 ">
</picture>
2024-01-24 13:07:20 +00:00
Cats Juice
3f96b9778f
fix(core): change journal header week-date-picker's max-width ( #5688 )
...
Fix [TOV-444](https://linear.app/affine-design/issue/TOV-444/修改-journal-date-picker-max-width )
2024-01-24 12:54:34 +00:00
JimmFly
ad1521fd81
feat(core): adjust member order ( #5685 )
...
close #5686
`Owner >> Unaccepted > Admin > Write > Read`
This algorithm contains two parts: firstly, it calculates the weight of the Member (calculateWeight), and then, it uses set weights to sort the Members (useMembers).
In the calculateWeight part, the computation of the weight involves three primary factors:
1. **Permission Level**: The `Owner` is given the highest weight of `4`, followed by `Admin` with a weight of `3`, then `Write` with a weight of `2`, and finally, `Read`, with a weight of `1`.
2. **Acceptance Status**: `Unaccepted` members have a higher weight, this weight is `1`.
3. The weight corresponding to the permission level, if the member does not exist, this weight is 0.
These three `factors` are stored in the factors array and then processed through the reduce function for weighted sum calculation. Among them, `factor * Math.pow(10, arr.length - 1 - index)` means the more significant weight factors (i.e., the earlier factors) will be assigned a higher value.
Sorting rules are primarily based on the weight values obtained from the calculateWeight function. If the weights are identical, it then sorts by name, here assuming the weight of the name being `null` is the highest. If the names are not `null`, they are sorted alphabetically.
2024-01-24 12:44:01 +00:00
liuyi
0f67c683c9
fix(server): add metrics missing attributes ( #5682 )
2024-01-24 08:06:34 +00:00
JimmFly
25897dc404
feat(workspace): add blob and storage limit ( #5535 )
...
close TOV-343 AFF-508 TOV-461 TOV-460 TOV-419
Add `isOverCapacity ` status to detect if blob usage exceeds limits.
Add `onCapacityChange` and `onBlobSet` to monitor if the storage or blob exceeds the capacity limit.
Global modals `LocalQuotaModal` and `CloudQuotaModal` have been added, with the upload size of the blob being limited within the modal components.
The notification component has been adjusted, now you can pass in `action` click events and `actionLabel` .
2024-01-24 07:34:51 +00:00
Chen
c566952e09
feat: bump blocksuite ( #5673 )
2024-01-24 15:13:12 +08:00
liuyi
151a53c575
fix(server): disable payment module requirements temporarily ( #5683 )
2024-01-24 03:17:21 +00:00
Peng Xiao
a687e7c0ed
fix(core): workspace feature should be workspace specific ( #5677 )
...
fix TOV-429
2024-01-24 03:07:51 +00:00
Peng Xiao
994ab96688
fix(playground): storybook story load issue ( #5672 )
...
Since the properties adapter now depends on whenLoaded status of the ydoc, we may need to explicitly mark doc as emit if the workspace is created without using a provider.
2024-01-24 02:56:07 +00:00
Peng Xiao
c2a978f0f2
fix: create page button offset issue on non-windows desktop app ( #5669 )
...
fix TOV-428
2024-01-24 02:56:04 +00:00
Peng Xiao
f62b67de61
fix(core): should set lang when locale changes ( #5679 )
...
this + https://github.com/toeverything/design/pull/110 should fix #5591
fix TOV-457
Reason: HTML requires `lang` to be set to render the correct CJK glyphs.
https://heistak.github.io/your-code-displays-japanese-wrong
<img width="692" alt="image" src="https://github.com/toeverything/AFFiNE/assets/584378/1d350219-5157-42cb-8e98-76d92d55b41e ">
2024-01-24 02:43:22 +00:00
Peng Xiao
65b538ee45
chore: bump @toeverything/theme ( #5680 )
2024-01-24 02:43:19 +00:00
Joooye_34
fecf055867
ci: check yarn dedupe in ci lint stage ( #5678 )
2024-01-23 12:41:50 +00:00
DarkSky
8bbe2e3bb1
feat: use custom image/preview link ( #5584 )
...
dep toeverything/blocksuite#5969
2024-01-23 08:53:57 +00:00
liuyi
62169c59c8
fix(server): del staled update count cache if unmatch ( #5674 )
2024-01-23 08:19:29 +00:00
Cats Juice
8300df4a26
fix(core): correct typo in onboarding 'get start' ( #5666 )
2024-01-23 04:54:22 +00:00
Cats Juice
6c8621bdcd
chore(core): bump @toeverything/theme, add cssVar use case ( #5667 )
2024-01-23 04:39:07 +00:00
LongYinan
021105c115
chore: bump up @blocksuite/icons version to v2.1.42 ( #5668 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.41` -> `2.1.42`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.41/2.1.42 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>toeverything/icons (@​blocksuite/icons)</summary>
### [`v2.1.42`](fdca7d8e2e...fe902db67e )
[Compare Source](fdca7d8e2e...fe902db67e )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-23 04:27:58 +00:00
Peng Xiao
ecdb5b3407
fix(core): properties adapter reactivitiy issue ( #5661 )
2024-01-23 01:41:44 +00:00
Peng Xiao
03b60a63cd
fix: remove incorrect commit ( #5660 )
2024-01-23 01:41:39 +00:00
Cats Juice
45cc75a814
ci(component): deploy ui storybook ( #5655 )
2024-01-22 10:25:33 +00:00
Cats Juice
35e7b41ca8
fix(component): adjust the style of Switch to match the design ( #5636 )
...
closes #5635
2024-01-22 10:14:32 +00:00
Joooye_34
fccdf8ede7
feat: bump blocksuite ( #5642 )
...
f0c45fd...4e2c95a
2024-01-22 08:37:32 +00:00
Peng Xiao
0ed26f51af
feat(core): adopt editor features for journal ( #5638 )
2024-01-22 08:25:31 +00:00
Peng Xiao
f41b7d7e71
feat(component): react wrapper for blocksuite editor ( #5606 )
...
A React wrapper for blocksuite editor from title/meta/doc/edgless fragments.
This PR only **clones** the `AffineEditorContainer`'s existing behavior and make it easier for extension in affine later.
fix TOV-315
### Some core issues:
A customized version of `createComponent` from `@lit/react`. The [existing and solutions in the community](https://github.com/lit/lit/issues/4435 ) does not work well in our case.
Alternatively in this PR the approach we have is to create web component instances in React lifecycle and then append them to DOM. However this make it hard to wrap the exported Lit component's using React and therefore we will have an additional wrapper tag for the wrapped web component.
To mitigate the migration issue on using React instead of Lit listed on last day, we now use [a proxy to mimic the wrapped React component](https://github.com/toeverything/AFFiNE/pull/5606/files#diff-5b7f0ae7b52a08739d50e78e9ec803c26ff3d3e5437581c692add0de12d3ede5R142-R183 ) into an `AffineEditorContainer` instance.
2024-01-22 08:25:29 +00:00
Peng Xiao
735e1cb117
feat(core): page info adapter for journal ( #5561 )
...
Page info adapter + schema.
Adapted for journal features.

2024-01-22 08:25:27 +00:00
LongYinan
8b92cc0cae
chore: decrease the instances count on gcp ( #5658 )
2024-01-22 08:02:26 +00:00
LongYinan
3de6424a65
fix(server): missing google oauth in auth providers ( #5656 )
2024-01-22 08:02:24 +00:00
liuyi
e516e0db23
refactor(server): plugin modules ( #5630 )
...
- [x] separates modules into `fundamental`, `core`, `plugins`
- [x] optional modules with `@OptionalModule` decorator to install modules with requirements met(`requires`, `if`)
- [x] `module.contributesTo` defines optional features that will be enabled if module registered
- [x] `AFFiNE.plugins.use('payment', {})` to enable a optional/plugin module
- [x] `PaymentModule` is the first plugin module
- [x] GraphQLSchema will not be generated for non-included modules
- [x] Frontend can use `ServerConfigType` query to detect which features are enabled
- [x] override existing provider globally
2024-01-22 07:40:28 +00:00
DarkSky
ae8401b6f4
feat: skip update quota if same as latest activated quota ( #5631 )
2024-01-22 06:50:05 +00:00
LongYinan
fb93f59aea
chore: bump up vite version to v5.0.12 [SECURITY] ( #5648 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](https://vitejs.dev ) ([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite )) | [`5.0.6` -> `5.0.12`](https://renovatebot.com/diffs/npm/vite/5.0.6/5.0.12 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
### GitHub Vulnerability Alerts
#### [CVE-2024-23331](https://togithub.com/vitejs/vite/security/advisories/GHSA-c24v-8rfc-w8vw )
### Summary
[Vite dev server option](https://vitejs.dev/config/server-options.html#server-fs-deny ) `server.fs.deny` can be bypassed on case-insensitive file systems using case-augmented versions of filenames. Notably this affects servers hosted on Windows.
This bypass is similar to https://nvd.nist.gov/vuln/detail/CVE-2023-34092 -- with surface area reduced to hosts having case-insensitive filesystems.
### Patches
Fixed in vite@5.0.12, vite@4.5.2, vite@3.2.8, vite@2.9.17
### Details
Since `picomatch` defaults to case-sensitive glob matching, but the file server doesn't discriminate; a blacklist bypass is possible.
See `picomatch` usage, where `nocase` is defaulted to `false`: https://github.com/vitejs/vite/blob/v5.1.0-beta.1/packages/vite/src/node/server/index.ts#L632
By requesting raw filesystem paths using augmented casing, the matcher derived from `config.server.fs.deny` fails to block access to sensitive files.
### PoC
**Setup**
1. Created vanilla Vite project using `npm create vite@latest` on a Standard Azure hosted Windows 10 instance.
- `npm run dev -- --host 0.0.0.0`
- Publicly accessible for the time being here: http://20.12.242.81:5173/
2. Created dummy secret files, e.g. `custom.secret` and `production.pem`
3. Populated `vite.config.js` with
```javascript
export default { server: { fs: { deny: ['.env', '.env.*', '*.{crt,pem}', 'custom.secret'] } } }
```
**Reproduction**
1. `curl -s http://20.12.242.81:5173/@​fs// `
- Descriptive error page reveals absolute filesystem path to project root
2. `curl -s http://20.12.242.81:5173/@​fs/C:/Users/darbonzo/Desktop/vite-project/vite.config.js `
- Discoverable configuration file reveals locations of secrets
3. `curl -s http://20.12.242.81:5173/@​fs/C:/Users/darbonzo/Desktop/vite-project/custom.sEcReT `
- Secrets are directly accessible using case-augmented version of filename
**Proof**

### Impact
**Who**
- Users with exposed dev servers on environments with case-insensitive filesystems
**What**
- Files protected by `server.fs.deny` are both discoverable, and accessible
---
### Release Notes
<details>
<summary>vitejs/vite (vite)</summary>
### [`v5.0.12`](https://togithub.com/vitejs/vite/releases/tag/v5.0.12 )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.11...v5.0.12 )
Please refer to [CHANGELOG.md](https://togithub.com/vitejs/vite/blob/v5.0.12/packages/vite/CHANGELOG.md ) for details.
### [`v5.0.11`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small5011-2024-01-05-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.10...v5.0.11 )
- fix: don't pretransform classic script links ([#​15361](https://togithub.com/vitejs/vite/issues/15361 )) ([19e3c9a](https://togithub.com/vitejs/vite/commit/19e3c9a )), closes [#​15361](https://togithub.com/vitejs/vite/issues/15361 )
- fix: inject `__vite__mapDeps` code before sourcemap file comment ([#​15483](https://togithub.com/vitejs/vite/issues/15483 )) ([d2aa096](https://togithub.com/vitejs/vite/commit/d2aa096 )), closes [#​15483](https://togithub.com/vitejs/vite/issues/15483 )
- fix(assets): avoid splitting `,` inside base64 value of `srcset` attribute ([#​15422](https://togithub.com/vitejs/vite/issues/15422 )) ([8de7bd2](https://togithub.com/vitejs/vite/commit/8de7bd2 )), closes [#​15422](https://togithub.com/vitejs/vite/issues/15422 )
- fix(html): handle offset magic-string slice error ([#​15435](https://togithub.com/vitejs/vite/issues/15435 )) ([5ea9edb](https://togithub.com/vitejs/vite/commit/5ea9edb )), closes [#​15435](https://togithub.com/vitejs/vite/issues/15435 )
- chore(deps): update dependency strip-literal to v2 ([#​15475](https://togithub.com/vitejs/vite/issues/15475 )) ([49d21fe](https://togithub.com/vitejs/vite/commit/49d21fe )), closes [#​15475](https://togithub.com/vitejs/vite/issues/15475 )
- chore(deps): update tj-actions/changed-files action to v41 ([#​15476](https://togithub.com/vitejs/vite/issues/15476 )) ([2a540ee](https://togithub.com/vitejs/vite/commit/2a540ee )), closes [#​15476](https://togithub.com/vitejs/vite/issues/15476 )
### [`v5.0.10`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small5010-2023-12-15-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.9...v5.0.10 )
- fix: omit protocol does not require pre-transform ([#​15355](https://togithub.com/vitejs/vite/issues/15355 )) ([d9ae1b2](https://togithub.com/vitejs/vite/commit/d9ae1b2 )), closes [#​15355](https://togithub.com/vitejs/vite/issues/15355 )
- fix(build): use base64 for inline SVG if it contains both single and double quotes ([#​15271](https://togithub.com/vitejs/vite/issues/15271 )) ([1bbff16](https://togithub.com/vitejs/vite/commit/1bbff16 )), closes [#​15271](https://togithub.com/vitejs/vite/issues/15271 )
### [`v5.0.9`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small509-2023-12-14-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.8...v5.0.9 )
- fix: htmlFallbackMiddleware for favicon ([#​15301](https://togithub.com/vitejs/vite/issues/15301 )) ([c902545](https://togithub.com/vitejs/vite/commit/c902545 )), closes [#​15301](https://togithub.com/vitejs/vite/issues/15301 )
- fix: more stable hash calculation for depsOptimize ([#​15337](https://togithub.com/vitejs/vite/issues/15337 )) ([2b39fe6](https://togithub.com/vitejs/vite/commit/2b39fe6 )), closes [#​15337](https://togithub.com/vitejs/vite/issues/15337 )
- fix(scanner): catch all external files for glob imports ([#​15286](https://togithub.com/vitejs/vite/issues/15286 )) ([129d0d0](https://togithub.com/vitejs/vite/commit/129d0d0 )), closes [#​15286](https://togithub.com/vitejs/vite/issues/15286 )
- fix(server): avoid chokidar throttling on startup ([#​15347](https://togithub.com/vitejs/vite/issues/15347 )) ([56a5740](https://togithub.com/vitejs/vite/commit/56a5740 )), closes [#​15347](https://togithub.com/vitejs/vite/issues/15347 )
- fix(worker): replace `import.meta` correctly for IIFE worker ([#​15321](https://togithub.com/vitejs/vite/issues/15321 )) ([08d093c](https://togithub.com/vitejs/vite/commit/08d093c )), closes [#​15321](https://togithub.com/vitejs/vite/issues/15321 )
- feat: log re-optimization reasons ([#​15339](https://togithub.com/vitejs/vite/issues/15339 )) ([b1a6c84](https://togithub.com/vitejs/vite/commit/b1a6c84 )), closes [#​15339](https://togithub.com/vitejs/vite/issues/15339 )
- chore: temporary typo ([#​15329](https://togithub.com/vitejs/vite/issues/15329 )) ([7b71854](https://togithub.com/vitejs/vite/commit/7b71854 )), closes [#​15329](https://togithub.com/vitejs/vite/issues/15329 )
- perf: avoid computing paths on each request ([#​15318](https://togithub.com/vitejs/vite/issues/15318 )) ([0506812](https://togithub.com/vitejs/vite/commit/0506812 )), closes [#​15318](https://togithub.com/vitejs/vite/issues/15318 )
- perf: temporary hack to avoid fs checks for /[@​react-refresh](https://togithub.com/react-refresh ) ([#​15299](https://togithub.com/vitejs/vite/issues/15299 )) ([b1d6211](https://togithub.com/vitejs/vite/commit/b1d6211 )), closes [#​15299](https://togithub.com/vitejs/vite/issues/15299 )
### [`v5.0.8`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small508-2023-12-12-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.7...v5.0.8 )
- perf: cached fs utils ([#​15279](https://togithub.com/vitejs/vite/issues/15279 )) ([c9b61c4](https://togithub.com/vitejs/vite/commit/c9b61c4 )), closes [#​15279](https://togithub.com/vitejs/vite/issues/15279 )
- fix: missing warmupRequest in transformIndexHtml ([#​15303](https://togithub.com/vitejs/vite/issues/15303 )) ([103820f](https://togithub.com/vitejs/vite/commit/103820f )), closes [#​15303](https://togithub.com/vitejs/vite/issues/15303 )
- fix: public files map will be updated on add/unlink in windows ([#​15317](https://togithub.com/vitejs/vite/issues/15317 )) ([921ca41](https://togithub.com/vitejs/vite/commit/921ca41 )), closes [#​15317](https://togithub.com/vitejs/vite/issues/15317 )
- fix(build): decode urls in CSS files (fix [#​15109](https://togithub.com/vitejs/vite/issues/15109 )) ([#​15246](https://togithub.com/vitejs/vite/issues/15246 )) ([ea6a7a6](https://togithub.com/vitejs/vite/commit/ea6a7a6 )), closes [#​15109](https://togithub.com/vitejs/vite/issues/15109 ) [#​15246](https://togithub.com/vitejs/vite/issues/15246 )
- fix(deps): update all non-major dependencies ([#​15304](https://togithub.com/vitejs/vite/issues/15304 )) ([bb07f60](https://togithub.com/vitejs/vite/commit/bb07f60 )), closes [#​15304](https://togithub.com/vitejs/vite/issues/15304 )
- fix(ssr): check esm file with normal file path ([#​15307](https://togithub.com/vitejs/vite/issues/15307 )) ([1597170](https://togithub.com/vitejs/vite/commit/1597170 )), closes [#​15307](https://togithub.com/vitejs/vite/issues/15307 )
### [`v5.0.7`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small507-2023-12-08-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.6...v5.0.7 )
- fix: suppress terser warning if minify disabled ([#​15275](https://togithub.com/vitejs/vite/issues/15275 )) ([3e42611](https://togithub.com/vitejs/vite/commit/3e42611 )), closes [#​15275](https://togithub.com/vitejs/vite/issues/15275 )
- fix: symbolic links in public dir ([#​15264](https://togithub.com/vitejs/vite/issues/15264 )) ([ef2a024](https://togithub.com/vitejs/vite/commit/ef2a024 )), closes [#​15264](https://togithub.com/vitejs/vite/issues/15264 )
- fix(html): skip inlining icon and manifest links ([#​14958](https://togithub.com/vitejs/vite/issues/14958 )) ([8ad81b4](https://togithub.com/vitejs/vite/commit/8ad81b4 )), closes [#​14958](https://togithub.com/vitejs/vite/issues/14958 )
- chore: remove unneeded condition in getRealPath ([#​15267](https://togithub.com/vitejs/vite/issues/15267 )) ([8e4655c](https://togithub.com/vitejs/vite/commit/8e4655c )), closes [#​15267](https://togithub.com/vitejs/vite/issues/15267 )
- perf: cache empty optimizer result ([#​15245](https://togithub.com/vitejs/vite/issues/15245 )) ([8409b66](https://togithub.com/vitejs/vite/commit/8409b66 )), closes [#​15245](https://togithub.com/vitejs/vite/issues/15245 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-20 13:36:05 +00:00
JimmFly
353b27d796
refactor(component): adapt the questionnaire component to the desktop client ( #5514 )
...
close TOV-240
Windows desktop:
<img width="1145" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/6b12a6bd-c020-4d02-a366-e97e1afd1e10 ">
MacOS desktop:
<img width="1187" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/9a3c909c-b283-4ddc-a187-3db12b26a7f5 ">
Web:
<img width="1438" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/e8e04258-9275-470d-a3f8-5d18f5b29eb3 ">
2024-01-19 10:07:18 +00:00
LongYinan
fa8655e43e
style: apply prefer-node-protocol lint rule ( #5627 )
...
it makes it perfectly clear that the package is a Node.js builtin module.
2024-01-19 03:47:08 +00:00
LongYinan
9d28eb530a
feat: upgrade electron and playwright ( #5632 )
2024-01-19 03:16:06 +00:00
LongYinan
cf2ad141ea
chore: upgrade perfsee sdk ( #5629 )
...
packages version info are missing: https://perfsee.com/projects/perfsee/bundle/1346?tab=packages
2024-01-19 10:58:36 +08:00
HeJiachen-PM
dc68ffd127
docs: update readme ( #5637 )
2024-01-19 02:02:25 +00:00
Cats Juice
351f1b73b4
feat(core): add journal entrance for app-sidebar ( #5579 )
2024-01-18 14:40:35 +00:00
Cats Juice
65bcdcafde
feat(core): add experimental flag for journal ( #5578 )
2024-01-18 14:05:17 +00:00
Cats Juice
f4b26a16f8
feat(core): journal sidebar conflict block ( #5574 )
2024-01-18 14:05:15 +00:00
Cats Juice
7aaec3ad51
feat(core): add daily count for journal sidebar ( #5559 )
2024-01-18 12:54:44 +00:00
JimmFly
a7e8664959
fix(core): reserve space for the editor scrollbar ( #5625 )
...
Because the space for the scroll bar on the right is reserved, in order to make the editor symmetrical, padding corresponding to the width of the scroll bar is added to the left.
2024-01-18 12:44:27 +00:00
Cats Juice
70ea1e5ef8
feat(core): journal sidebar dater-picker navigation ( #5558 )
2024-01-18 12:34:23 +00:00
Cats Juice
496dc588be
feat(core): journal extension loader ( #5557 )
2024-01-18 09:27:56 +00:00
regischen
8b1b5b2e93
feat: bump blocksuite ( #5624 )
2024-01-18 17:26:31 +08:00
DarkSky
c3fda80599
feat: use nx cloud runner ( #5626 )
2024-01-18 08:18:37 +00:00
Peng Xiao
9a944048e8
feat(core): experimental features ui ( #5338 )
...
fix TOV-280
experimental features ui
- enabled in the workspace settings for a cloud workspace; only show for workspace owner + early access
- a disclaimer prompt will be shown before going to the next feature setting page
- for now only show the ai poc switch, which controls the display of the ai tab in editor's sidepanel
2024-01-18 07:53:15 +00:00
Cats Juice
cabedef426
feat(core): journal hooks and page header layout ( #5549 )
...
feat(core): split page header items
feat(core): journal page judgment and header layout
feat(core): Add journal today button and style changes to share menu
2024-01-18 07:17:14 +00:00
Cats Juice
a64854319e
feat(core): add document title for shared page ( #5596 )
2024-01-18 07:04:37 +00:00
LongYinan
c5ea6fd2c3
fix(server): selfhost issues ( #5623 )
...
- env name in helm chart
- omit health check controller in selfhost env
2024-01-18 05:55:54 +00:00
liuyi
9fdbb3ac3d
fix(server): should not listen on user defined host ( #5622 )
2024-01-18 04:59:53 +00:00
EYHN
74a3a795bd
fix(workspace): check session before get workspaces ( #5621 )
2024-01-18 04:46:52 +00:00
LongYinan
aa437bcd35
fix(core): remove hash prefix from cdn path ( #5509 )
...
The hash prefix will cause cache invalidate during deployment
It's for debug purpose but I forgot to remove it
2024-01-18 03:50:24 +00:00
Cats Juice
943ede4ffd
feat(component): new inline-edit component ( #5517 )
...
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/toeverything/AFFiNE/assets/39363750/6dad59f0-5e63-4c25-a81c-dff397da1d34 ">
<img height="100" alt="" src="https://github.com/toeverything/AFFiNE/assets/39363750/7c30d7b2-55c9-49eb-82e7-a0882f2e0493 ">
</picture>
2024-01-18 03:33:47 +00:00
liuyi
f419867437
chore(server): remove useless log ( #5620 )
2024-01-18 03:19:20 +00:00
liuyi
d9324286d4
chore(server): add port to host if it is 0.0.0.0 ( #5619 )
2024-01-18 03:04:36 +00:00
LongYinan
5b84366de3
chore: bump up actions/cache action to v4 ( #5616 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://togithub.com/actions/cache ) | action | major | `v3` -> `v4` |
---
### Release Notes
<details>
<summary>actions/cache (actions/cache)</summary>
### [`v4`](https://togithub.com/actions/cache/compare/v3...v4 )
[Compare Source](https://togithub.com/actions/cache/compare/v3...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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-18 02:37:47 +00:00
Cats Juice
2b92b27f8f
feat(component): new week-date-picker component ( #5477 )
...
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/toeverything/AFFiNE/assets/39363750/49d7a1ee-2832-4b61-a427-e627dae92952 ">
<img height="100" alt="" src="https://github.com/toeverything/AFFiNE/assets/39363750/819d6ee9-38e0-4537-ad0f-ec9faf96f505 ">
</picture>
2024-01-18 02:14:27 +00:00
DarkSky
ee8ec47a4f
feat: use SafeInt replace Float ( #5613 )
2024-01-17 12:36:21 +00:00
liuyi
b9f20877d0
feat(core): make password sigin default if user has one ( #5577 )
2024-01-17 11:13:58 +00:00
liuyi
bf88b6edaa
chore(server): remove too verbose logs ( #5555 )
...
chore(server): remove too verbose logs
chore(server): make logs less verbose
2024-01-17 10:37:22 +00:00
liuyi
00acc49342
chore(server): remove octobase storage usage ( #5594 )
...
since all blobs have been successfully migrated to r2, the octobase blob functions are no longer necessary.
2024-01-17 10:22:35 +00:00
Cats Juice
2db3c933fa
refactor(component): move date-picker to ui, add story, support responsive ( #5468 )
...
- move to `component/ui`
- add `AFFiNEDatePicker` & `BlocksuiteDatePicker` story
- inline mode support
- responsive support
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/toeverything/AFFiNE/assets/39363750/320bef49-380f-40a2-b3b2-4b74dd2d8da4 ">
<img alt="" src="https://github.com/toeverything/AFFiNE/assets/39363750/fc9e7808-02fe-49a1-aa78-aea254fb1f9d ">
</picture>
2024-01-17 09:16:46 +00:00
DarkSky
8f80bdb7af
feat: new free plan ( #5604 )
2024-01-17 07:20:18 +00:00
LongYinan
3f87d04481
chore: bump up postcss-loader version to v8 ( #5609 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [postcss-loader](https://togithub.com/webpack-contrib/postcss-loader ) | [`^7.3.3` -> `^8.0.0`](https://renovatebot.com/diffs/npm/postcss-loader/7.3.3/8.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>webpack-contrib/postcss-loader (postcss-loader)</summary>
### [`v8.0.0`](https://togithub.com/webpack-contrib/postcss-loader/blob/HEAD/CHANGELOG.md#800-2024-01-16 )
[Compare Source](https://togithub.com/webpack-contrib/postcss-loader/compare/v7.3.4...v8.0.0 )
##### ⚠ BREAKING CHANGES
- minimum supported Node.js version is `18.12.0` ([#​677](https://togithub.com/webpack-contrib/postcss-loader/issues/677 )) ([8dd0315](8dd0315c03 ))
##### [7.3.4](https://togithub.com/webpack-contrib/postcss-loader/compare/v7.3.3...v7.3.4 ) (2023-12-27)
##### Bug Fixes
- do not crash if pkg.(d|devD)ependencies unset ([#​667](https://togithub.com/webpack-contrib/postcss-loader/issues/667 )) ([8ef0c7e](8ef0c7e5c6 ))
##### [7.3.3](https://togithub.com/webpack-contrib/postcss-loader/compare/v7.3.2...v7.3.3 ) (2023-06-10)
##### Bug Fixes
- **perf:** avoid using `klona` for postcss options ([#​658](https://togithub.com/webpack-contrib/postcss-loader/issues/658 )) ([e754c3f](e754c3f845 ))
- bug with loading configurations after updating `cosmiconfig` to version 8.2 ([684d265](684d265439 ))
##### [7.3.2](https://togithub.com/webpack-contrib/postcss-loader/compare/v7.3.1...v7.3.2 ) (2023-05-28)
##### Bug Fixes
- use `cause` to keep original errors and warnings ([#​655](https://togithub.com/webpack-contrib/postcss-loader/issues/655 )) ([e8873f4](e8873f46b4 ))
##### [7.3.1](https://togithub.com/webpack-contrib/postcss-loader/compare/v7.3.0...v7.3.1 ) (2023-05-26)
##### Bug Fixes
- warning and error serialization ([65748ec](65748ece39 ))
### [`v7.3.4`](https://togithub.com/webpack-contrib/postcss-loader/blob/HEAD/CHANGELOG.md#734-2023-12-27 )
[Compare Source](https://togithub.com/webpack-contrib/postcss-loader/compare/v7.3.3...v7.3.4 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-17 02:56:58 +00:00
LongYinan
41083b7fec
chore: bump up copy-webpack-plugin version to v12 ( #5568 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [copy-webpack-plugin](https://togithub.com/webpack-contrib/copy-webpack-plugin ) | [`^11.0.0` -> `^12.0.0`](https://renovatebot.com/diffs/npm/copy-webpack-plugin/11.0.0/12.0.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>webpack-contrib/copy-webpack-plugin (copy-webpack-plugin)</summary>
### [`v12.0.1`](https://togithub.com/webpack-contrib/copy-webpack-plugin/blob/HEAD/CHANGELOG.md#1201-2024-01-11 )
[Compare Source](https://togithub.com/webpack-contrib/copy-webpack-plugin/compare/v12.0.0...v12.0.1 )
### [`v12.0.0`](https://togithub.com/webpack-contrib/copy-webpack-plugin/blob/HEAD/CHANGELOG.md#1200-2024-01-10 )
[Compare Source](https://togithub.com/webpack-contrib/copy-webpack-plugin/compare/v11.0.0...v12.0.0 )
##### ⚠ BREAKING CHANGES
- update `globby` to `14.0.0`
- minimum supported `Node.js` version is `18.12.0` ([#​759](https://togithub.com/webpack-contrib/copy-webpack-plugin/issues/759 )) ([a5b7d06](a5b7d06a05 ))
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-16 15:44:18 +00:00
LongYinan
823ea92f62
chore: bump up happy-dom version to v13 ( #5569 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [happy-dom](https://togithub.com/capricorn86/happy-dom ) | [`^12.10.3` -> `^13.0.0`](https://renovatebot.com/diffs/npm/happy-dom/12.10.3/13.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>capricorn86/happy-dom (happy-dom)</summary>
### [`v13.0.0`](https://togithub.com/capricorn86/happy-dom/releases/tag/v13.0.0 )
[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v12.10.3...v13.0.0 )
##### 💣 Breaking Changes
- This is a big release where a lot of the code has been refactored to improve security and to be able to support the new Browser API. A big release is always a potential risk for bugs and therefore it make sense to make this a major release to avoid that consumers automatically updates to it. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
##### 🎨 Features
- Adds support for a Browser API similar to [Puppeteer](https://pptr.dev/ ) and [Playwright](https://playwright.dev/ ). With the Browser API, it is for example possible to create new pages and navigate in them. You can read more about it in the [Happy DOM Wiki](https://togithub.com/capricorn86/happy-dom/wiki ). ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Improves security by not exposing sensitive internal logic to scripts running within the Happy DOM Browser. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Improves support for CORS management. It now supports "OPTIONS" requests to detect if the client is allowed to proceed with a cross origin request. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Adds support for HTTP response cache. The cache is in memory, but the plan is to add support for storing it on disk in the future. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Improves support for `XMLHttpRequest`. It now supports the GZip, Deflate and Brotli encodings. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Adds support for adding a process level error event listener for capturing errors. This is useful when using the Browser API, but will not work in environments such as [Jest](https://jestjs.io/ ) and [Vitest](https://vitest.dev/ ), as it collides with their error listener. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Adds support for `Ẁindow.open()`. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Adds support for `Ẁindow.close()`. This function should now be used when tearing down the environment. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Improves support for cookies. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Improves support for `HTMLIFrameElement`. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Changes export of types to use "import type" and "export type" in "index.js". This will allow transpilers/compilers to optimize better. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Adds support for navigating when clicking on an anchor link. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Adds support for navigating when setting `Location.href`. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Improves support for `MutationObserver`. It will not collect multiple records with a microtask. It now also supports `MutationObserver.takeRecords()` for records that has not yet been published. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Deprecates "[@​happy-dom/uncaught-exception-observer](https://togithub.com/happy-dom/uncaught-exception-observer )" as the functionality is supported by "happy-dom" out of the box now. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Uses Symbol for public internal properties instead of using "\_" as a prefix, so that internal properties won't be enumerable. This will also make sure that these properties won't clash with properties defined by the consumer. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
##### 👷♂️ Patch fixes
- Improves the check for if the property is a class to avoid that it gets bound in "[@​happy-dom/global-registrator](https://togithub.com/happy-dom/global-registrator )". We only want functions to get bound to the global context. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Fixes bug where `new Document()` did'nt work according to spec. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Fixes bug where several Element classes wheren't available as properties on `Window`. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Fixes bug in `Document.importNode()` where it didn't change `ownerDocument` on child nodes. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
- Resets static `ownerDocument` state used when creating Node instances, so that it can be garbage collected if not used anymore. ([#​466](https://togithub.com/capricorn86/happy-dom/issues/466 ))
***
Merry Christmas and a Happy New Year! 🎅 ✨
This release took some time as I didn't want to release the Browser API without applying security fixes. I've also stumbled across a few other issues along the way that I felt I needed to address.
I hope you will enjoy the release!
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-16 15:27:24 +00:00
LongYinan
880588ad11
chore: bump up @blocksuite/icons version to v2.1.41 ( #5580 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.40` -> `2.1.41`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.40/2.1.41 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>toeverything/icons (@​blocksuite/icons)</summary>
### [`v2.1.41`](2b42f403fb...fdca7d8e2e )
[Compare Source](2b42f403fb...fdca7d8e2e )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-16 15:11:36 +00:00
DarkSky
ee2520ec18
feat: add query quota of workspace ( #5603 )
2024-01-16 09:45:55 +00:00
JimmFly
4f4d057aad
refactor(core): replace WorkspaceSubPath in env package with the one in core package ( #5537 )
2024-01-16 08:26:11 +00:00
Peng Xiao
238d1ad44e
fix(component): add back lottie color hack for dark mode ( #5576 )
...
Not sure why but it seems the changes in https://github.com/toeverything/AFFiNE/pull/4953 are lost
2024-01-16 08:11:51 +00:00
JimmFly
baeb5cc732
feat(core): get cloud workspace usage limit from user quota ( #5518 )
2024-01-16 07:57:23 +00:00
Joooye_34
d6dd837bdb
chore: update favicon ( #5566 )
2024-01-16 07:42:32 +00:00
DarkSky
dea0aab5e3
feat: update nx config ( #5597 )
2024-01-16 06:41:46 +00:00
Lewis Liu
94e24d1b82
style: import from './index' instead of '.' ( #5590 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2024-01-16 14:39:08 +08:00
liuyi
75fb0a9f1a
fix(server): standalone early access users detection ( #5601 )
2024-01-16 03:27:44 +00:00
LongYinan
2fb0e3ef15
chore: bump up source-map-loader version to v5 ( #5599 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [source-map-loader](https://togithub.com/webpack-contrib/source-map-loader ) | [`^4.0.1` -> `^5.0.0`](https://renovatebot.com/diffs/npm/source-map-loader/4.0.1/5.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>webpack-contrib/source-map-loader (source-map-loader)</summary>
### [`v5.0.0`](https://togithub.com/webpack-contrib/source-map-loader/blob/HEAD/CHANGELOG.md#500-2024-01-15 )
[Compare Source](https://togithub.com/webpack-contrib/source-map-loader/compare/v4.0.2...v5.0.0 )
##### ⚠ BREAKING CHANGES
- minimum supported Node.js version is `18.12.0` ([#​230](https://togithub.com/webpack-contrib/source-map-loader/issues/230 )) ([7fcab17](7fcab17805 ))
##### [4.0.2](https://togithub.com/webpack-contrib/source-map-loader/compare/v4.0.1...v4.0.2 ) (2023-12-27)
##### Bug Fixes
- avoid deprecation message of `abab` package ([#​228](https://togithub.com/webpack-contrib/source-map-loader/issues/228 )) ([9daafb3](9daafb3662 ))
##### [4.0.1](https://togithub.com/webpack-contrib/source-map-loader/compare/v4.0.0...v4.0.1 ) (2022-10-07)
##### Bug Fixes
- logic when sourceRoot contains absolute URL ([e724a1f](e724a1ffbf ))
### [`v4.0.2`](https://togithub.com/webpack-contrib/source-map-loader/blob/HEAD/CHANGELOG.md#402-2023-12-27 )
[Compare Source](https://togithub.com/webpack-contrib/source-map-loader/compare/v4.0.1...v4.0.2 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-16 03:14:57 +00:00
liuyi
24e18dd475
fix: improve self-host convenience ( #5582 )
2024-01-15 09:24:53 +00:00
DarkSky
2f9b4fd0cf
fix: add field polyfill for old feature ( #5586 )
2024-01-15 08:33:06 +00:00
liuyi
4c49b62ab7
fix(server): node imports order ( #5583 )
2024-01-14 05:47:56 +00:00
DarkSky
18907ebe57
fix: return empty resp if user not exists in login preflight ( #5588 )
2024-01-13 15:26:55 +00:00
Peng Xiao
5aea84af8f
fix(electron): remove cors headers hack ( #5581 )
2024-01-12 16:48:55 +08:00
regischen
3602f1cac0
feat: bump blocksuite ( #5575 )
2024-01-12 12:41:27 +08:00
liuyi
89b5c96d25
refactor(server): folder structure ( #5573 )
2024-01-12 04:18:39 +00:00
DarkSky
d6f65ea414
feat: blob size limit with quota ( #5524 )
...
fix AFF-506 TOV-342
2024-01-11 10:21:40 +00:00
EYHN
d1c2b2a7b0
fix(core): workspace not found after import ( #5571 )
...
close TOV-393
2024-01-11 09:47:24 +00:00
liuyi
12fdb18a80
test(server): make server testing utils ( #5544 )
2024-01-11 06:40:55 +00:00
liuyi
9253e522aa
test(server): avoid progress get hold after tests finished ( #5522 )
2024-01-11 06:40:53 +00:00
EYHN
5aee480c50
refactor(core): move page list to core ( #5556 )
2024-01-10 11:09:39 +00:00
LongYinan
237722f7f9
feat: support self-host docker build ( #5506 )
...
Test command: `docker compose -f ./.github/deployment/self-host/compose.yaml up`
2024-01-10 08:35:21 +00:00
DarkSky
0d7ffb0511
feat: add unlimited workspace support ( #5523 )
...
fix AFF-505
2024-01-10 07:28:53 +00:00
DarkSky
a59fe1b49e
feat: adapted user quota for member api ( #5521 )
...
fix AFF-494 TOV-337
2024-01-10 07:28:46 +00:00
Peng Xiao
275ea74772
chore(core): remove affine/cmdk package ( #5552 )
...
patch cmdk based on https://github.com/pengx17/cmdk/tree/patch-1
fix https://github.com/toeverything/AFFiNE/issues/5548
2024-01-10 05:25:37 +00:00
Joooye_34
dd671c8764
build: change space replacement when set version to fix client upgrade always problem ( #5554 )
2024-01-10 10:57:52 +08:00
liuyi
ddbb5e1121
fix(server): better error handling and logging for storage ( #5553 )
2024-01-09 10:37:24 +00:00
NavyStack
af245315c2
chore: update Korean translation ( #5551 )
2024-01-09 15:59:02 +08:00
Cats Juice
611c6e85bb
fix(component): app sidebar will never float when menu not opened ( #5529 )
2024-01-09 06:46:09 +00:00
LongYinan
d376ea441d
chore(deps): bump follow-redirects from 1.15.3 to 1.15.4 ( #5546 )
...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects ) from 1.15.3 to 1.15.4.
<details>
<summary>Commits</summary>
<ul>
<li><a href="65858205e5 "><code>6585820</code></a> Release version 1.15.4 of the npm package.</li>
<li><a href="7a6567e16d "><code>7a6567e</code></a> Disallow bracketed hostnames.</li>
<li><a href="05629af696 "><code>05629af</code></a> Prefer native URL instead of deprecated url.parse.</li>
<li><a href="1cba8e85fa "><code>1cba8e8</code></a> Prefer native URL instead of legacy url.resolve.</li>
<li><a href="72bc2a4229 "><code>72bc2a4</code></a> Simplify _processResponse error handling.</li>
<li><a href="3d42aecdca "><code>3d42aec</code></a> Add bracket tests.</li>
<li><a href="bcbb096b32 "><code>bcbb096</code></a> Do not directly set Error properties.</li>
<li>See full diff in <a href="https://github.com/follow-redirects/follow-redirects/compare/v1.15.3...v1.15.4 ">compare view</a></li>
</ul>
</details>
<br />
[](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-01-09 04:27:11 +00:00
DarkSky
eecba240d3
chore: downgrade oxlint to avoid commiting freeze ( #5545 )
2024-01-09 04:11:54 +00:00
LongYinan
e95126a146
dedupe lockfile
2024-01-09 11:28:01 +08:00
Lewis Liu
389ee18e42
Move vanilla extract back
2024-01-09 11:26:42 +08:00
Lewis Liu
911efcdff1
Drop unused
2024-01-09 11:26:41 +08:00
Lewis Liu
a87055754e
Properly split dep and dev deps, fix phantom deps
2024-01-09 11:26:26 +08:00
NavyStack
7c71c5457a
fix: add missing Korean translations for updated English text ( #5534 )
2024-01-09 11:19:43 +08:00
LongYinan
aaab159a53
chore: bump up @napi-rs/cli version to v3.0.0-alpha.33 ( #5542 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.31` -> `3.0.0-alpha.33`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.31/3.0.0-alpha.33 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.33`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.33 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.32...@napi-rs/cli@3.0.0-alpha.33 )
##### What's Changed
- fix(cli): artifacts wasi worker name by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1895 ](https://togithub.com/napi-rs/napi-rs/pull/1895 )
**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.32...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.33
### [`v3.0.0-alpha.32`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.32 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.31...@napi-rs/cli@3.0.0-alpha.32 )
#### What's Changed
- fix(cli): missing files in created wasi package by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1894 ](https://togithub.com/napi-rs/napi-rs/pull/1894 )
**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.31...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.32
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-09 03:07:28 +00:00
LongYinan
af0243d1a9
chore: bump up @napi-rs/cli version to v3.0.0-alpha.31 ( #5539 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.30` -> `3.0.0-alpha.31`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.30/3.0.0-alpha.31 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.31`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.31 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.30...@napi-rs/cli@3.0.0-alpha.31 )
##### What's Changed
- chore(deps): update dependency c8 to v9 by [@​renovate](https://togithub.com/renovate ) in [https://github.com/napi-rs/napi-rs/pull/1889 ](https://togithub.com/napi-rs/napi-rs/pull/1889 )
- fix(deps): update dependency [@​tybys/wasm-util](https://togithub.com/tybys/wasm-util ) to v0.8.1 by [@​renovate](https://togithub.com/renovate ) in [https://github.com/napi-rs/napi-rs/pull/1892 ](https://togithub.com/napi-rs/napi-rs/pull/1892 )
- feat(cli): support generate browser compatible codes by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1891 ](https://togithub.com/napi-rs/napi-rs/pull/1891 )
**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.30...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.31
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-08 16:35:08 +00:00
Joooye_34
1e28fd73b4
docs: replace CLA.md contributor list by online url to reduce noise ( #5538 )
2024-01-08 09:21:14 +00:00
DarkSky
b9fa002e67
fix: only return activated features ( #5536 )
2024-01-08 15:58:59 +08:00
liuyi
d7b9462d1c
fix(server): backward compatibility for beta+stable envs ( #5510 )
2024-01-08 05:15:32 +00:00
LongYinan
b23c092953
chore: bump up file-type version to v19 ( #5533 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [file-type](https://togithub.com/sindresorhus/file-type ) | [`^18.7.0` -> `^19.0.0`](https://renovatebot.com/diffs/npm/file-type/18.7.0/19.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>sindresorhus/file-type (file-type)</summary>
### [`v19.0.0`](https://togithub.com/sindresorhus/file-type/releases/tag/v19.0.0 )
[Compare Source](https://togithub.com/sindresorhus/file-type/compare/v18.7.0...v19.0.0 )
##### Breaking
- Require Node.js 18 [`7f4b30b`](https://togithub.com/sindresorhus/file-type/commit/7f4b30b )
- Use mime type `audio/wav` instead of `audio/vnd.wave` for .wav files ([#​620](https://togithub.com/sindresorhus/file-type/issues/620 )) [`c7c923c`](https://togithub.com/sindresorhus/file-type/commit/c7c923c )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-08 03:06:25 +00:00
LongYinan
e5db566ef0
chore: bump up oxlint version to v0.1.2 ( #5528 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [oxlint](https://oxc-project.github.io ) ([source](https://togithub.com/oxc-project/oxc/tree/HEAD/npm/oxlint )) | [`0.0.22` -> `0.1.2`](https://renovatebot.com/diffs/npm/oxlint/0.0.22/0.1.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>oxc-project/oxc (oxlint)</summary>
### [`v0.1.2`](https://togithub.com/oxc-project/oxc/releases/tag/oxlint_v0.1.2 ): oxlint v0.1.2
[Compare Source](821cc8e9c7...4a9e0c4bf4 )
#### Try it out!
- Run `npx --yes oxlint@latest` from your terminal
- Install the Vscode extension https://marketplace.visualstudio.com/items?itemName=oxc.oxc-vscode
- Read the [usage guide](https://oxc-project.github.io/docs/guide/usage/linter.html )
#### Svelte support
`<script>` tag is linted by default.
#### Features
- feat(linter): <script> part of svelte file by [@​Boshen](https://togithub.com/Boshen ) in [https://github.com/oxc-project/oxc/pull/1918 ](https://togithub.com/oxc-project/oxc/pull/1918 )
- feat(linter): disable no-unused-labels for svelte by [@​Boshen](https://togithub.com/Boshen ) in [https://github.com/oxc-project/oxc/pull/1919 ](https://togithub.com/oxc-project/oxc/pull/1919 )
### Fixes
- fix(linter): change no-var to restriction [`bb6128b`](https://togithub.com/oxc-project/oxc/commit/bb6128b )
- chore: add some useful informantion log by [@​IWANABETHATGUY](https://togithub.com/IWANABETHATGUY ) in [https://github.com/oxc-project/oxc/pull/1912 ](https://togithub.com/oxc-project/oxc/pull/1912 )
- fix(linter) fix eslint config for filename case by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1913 ](https://togithub.com/oxc-project/oxc/pull/1913 )
**Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.1.1...oxlint_v0.1.2
### [`v0.1.1`](https://togithub.com/oxc-project/oxc/releases/tag/oxlint_v0.1.1 ): oxlint v0.1.1
[Compare Source](https://togithub.com/oxc-project/oxc/compare/v0.1.0...821cc8e9c7cfb326ff546483bb2a32d12e018e4c )
#### Try it out!
- Run `npx --yes oxlint@latest` from your terminal
- Install the Vscode extension https://marketplace.visualstudio.com/items?itemName=oxc.oxc-vscode
- Read the [usage guide](https://oxc-project.github.io/docs/guide/usage/linter.html )
#### Vue support
`<script>` and `<script setup>` are linted by default.
#### Astro support
Frontmatter component script `---` and all `<script>` tags are linted by default.
#### Configuration files (experimental)
`-c ./eslintrc.json` will use the `rules` field for rule configuration, as documented in [ESLint's documentation](https://eslint.org/docs/latest/use/configure/rules#using-configuration-files ).
Unfortunately, only the `json` format is supported right now.
The `extends` field will not take effect; normal `-D` and `-A` flags still apply.
#### New Rules
##### Correctness
- deepscan: bad object literal comparison by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1844 ](https://togithub.com/oxc-project/oxc/pull/1844 )
- oxc: erasing op by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1834 ](https://togithub.com/oxc-project/oxc/pull/1834 )
- oxc: only used in recursion by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1833 ](https://togithub.com/oxc-project/oxc/pull/1833 )
- eslint: no irregular whitespace by [@​DeividAlmeida](https://togithub.com/DeividAlmeida ) in [https://github.com/oxc-project/oxc/pull/1877 ](https://togithub.com/oxc-project/oxc/pull/1877 )
- eslint: no-unused-private-class-members rule by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/oxc-project/oxc/pull/1820 ](https://togithub.com/oxc-project/oxc/pull/1820 )
- eslint: no-var by [@​zhangrunzhao](https://togithub.com/zhangrunzhao ) in [https://github.com/oxc-project/oxc/pull/1890 ](https://togithub.com/oxc-project/oxc/pull/1890 )
- eslint-plugin-react: jsx-no-undef for by [@​XantreGodlike](https://togithub.com/XantreGodlike ) in [https://github.com/oxc-project/oxc/pull/1862 ](https://togithub.com/oxc-project/oxc/pull/1862 )
- eslint-plugin-jsx-a11y: aria-role by [@​msdlisper](https://togithub.com/msdlisper ) in [https://github.com/oxc-project/oxc/pull/1849 ](https://togithub.com/oxc-project/oxc/pull/1849 )
- eslint-plugin-jsx-a11y: lang by [@​msdlisper](https://togithub.com/msdlisper ) in [https://github.com/oxc-project/oxc/pull/1812 ](https://togithub.com/oxc-project/oxc/pull/1812 )
- eslint-plugin-jsx-a11y: media-has-caption by [@​poteboy](https://togithub.com/poteboy ) in [https://github.com/oxc-project/oxc/pull/1822 ](https://togithub.com/oxc-project/oxc/pull/1822 )
- eslint-plugin-jsx-a11y: mouse-events-have-key-events(correctness) by [@​Ken-HH24](https://togithub.com/Ken-HH24 ) in [https://github.com/oxc-project/oxc/pull/1867 ](https://togithub.com/oxc-project/oxc/pull/1867 )
- eslint-plugin-jsx-a11y: prefer-tag-over-role rule by [@​yossydev](https://togithub.com/yossydev ) in [https://github.com/oxc-project/oxc/pull/1831 ](https://togithub.com/oxc-project/oxc/pull/1831 )
- eslint-plugin-jsx-a11y: aria-unsupported-elements by [@​re-taro](https://togithub.com/re-taro ) in [https://github.com/oxc-project/oxc/pull/1855 ](https://togithub.com/oxc-project/oxc/pull/1855 )
- eslint-plugin-jsx-a11y: html_has_lang by [@​msdlisper](https://togithub.com/msdlisper ) in [https://github.com/oxc-project/oxc/pull/1843 ](https://togithub.com/oxc-project/oxc/pull/1843 )
##### Suspicious
- oxc: approx constant by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1818 ](https://togithub.com/oxc-project/oxc/pull/1818 )
- oxc: misrefactored assign op by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1832 ](https://togithub.com/oxc-project/oxc/pull/1832 )
##### Restriction
- react: button has type by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1785 ](https://togithub.com/oxc-project/oxc/pull/1785 )
- unicorn: prefer modern math apis by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1620 ](https://togithub.com/oxc-project/oxc/pull/1620 )
#### Fixes
- fix(linter): ignore anonymous functional components in arrays for eslint-plugin-react(jsx-key) by [@​maurice](https://togithub.com/maurice ) in [https://github.com/oxc-project/oxc/pull/1858 ](https://togithub.com/oxc-project/oxc/pull/1858 )
- Prioritize ignored paths when linting by [@​clarkf](https://togithub.com/clarkf ) in [https://github.com/oxc-project/oxc/pull/1878 ](https://togithub.com/oxc-project/oxc/pull/1878 )
- feat(linter): handle more cases for `const-comparisons` by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1817 ](https://togithub.com/oxc-project/oxc/pull/1817 )
- feat(semantic): allow reserved keyword defined in ts module block by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/oxc-project/oxc/pull/1907 ](https://togithub.com/oxc-project/oxc/pull/1907 )
- fix(parser): error on source larger than 4 GiB by [@​overlookmotel](https://togithub.com/overlookmotel ) in [https://github.com/oxc-project/oxc/pull/1860 ](https://togithub.com/oxc-project/oxc/pull/1860 )
- fix(parser): fix incorrectly identified directives by [@​overlookmotel](https://togithub.com/overlookmotel ) in [https://github.com/oxc-project/oxc/pull/1885 ](https://togithub.com/oxc-project/oxc/pull/1885 )
- fix(parser): terminate parsing if an EmptyParenthesizedExpression error occurs by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/oxc-project/oxc/pull/1874 ](https://togithub.com/oxc-project/oxc/pull/1874 )
- fix(semantic): remove duplicate errors in ModuleDeclaration::ImportDeclaration by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/oxc-project/oxc/pull/1846 ](https://togithub.com/oxc-project/oxc/pull/1846 )
- perf(linter): reduce the number of diagnostics for no_sparse_arrays by [@​camc314](https://togithub.com/camc314 ) in [https://github.com/oxc-project/oxc/pull/1895 ](https://togithub.com/oxc-project/oxc/pull/1895 )
#### New Contributors
- [@​maurice](https://togithub.com/maurice ) made their first contribution in [https://github.com/oxc-project/oxc/pull/1858 ](https://togithub.com/oxc-project/oxc/pull/1858 )
- [@​re-taro](https://togithub.com/re-taro ) made their first contribution in [https://github.com/oxc-project/oxc/pull/1855 ](https://togithub.com/oxc-project/oxc/pull/1855 )
- [@​DeividAlmeida](https://togithub.com/DeividAlmeida ) made their first contribution in [https://github.com/oxc-project/oxc/pull/1835 ](https://togithub.com/oxc-project/oxc/pull/1835 )
- [@​XantreGodlike](https://togithub.com/XantreGodlike ) made their first contribution in [https://github.com/oxc-project/oxc/pull/1862 ](https://togithub.com/oxc-project/oxc/pull/1862 )
- [@​Qix-](https://togithub.com/Qix- ) made their first contribution in [https://github.com/oxc-project/oxc/pull/1861 ](https://togithub.com/oxc-project/oxc/pull/1861 )
- [@​yossydev](https://togithub.com/yossydev ) made their first contribution in [https://github.com/oxc-project/oxc/pull/1831 ](https://togithub.com/oxc-project/oxc/pull/1831 )
- [@​clarkf](https://togithub.com/clarkf ) made their first contribution in [https://github.com/oxc-project/oxc/pull/1878 ](https://togithub.com/oxc-project/oxc/pull/1878 )
- [@​zhangrunzhao](https://togithub.com/zhangrunzhao ) made their first contribution in [https://github.com/oxc-project/oxc/pull/1890 ](https://togithub.com/oxc-project/oxc/pull/1890 )
**Full Changelog**: https://github.com/oxc-project/oxc/compare/oxlint_v0.0.22...oxlint_v0.1.1
### [`v0.1.0`](https://togithub.com/oxc-project/oxc/releases/tag/v0.1.0 ): CLI v0.1.0 Ezno Type Checker
[Compare Source](a1accdca7f ...v0.1.0)
`npx oxidation-compiler@latest check ./test.ts`

#### New Contributors
- [@​anonrig](https://togithub.com/anonrig ) made their first contribution in [https://github.com/Boshen/oxc/pull/388 ](https://togithub.com/Boshen/oxc/pull/388 )
- [@​kaleidawave](https://togithub.com/kaleidawave ) made their first contribution in [https://github.com/Boshen/oxc/pull/413 ](https://togithub.com/Boshen/oxc/pull/413 )
**Full Changelog**: https://github.com/Boshen/oxc/compare/v0.0.7 ...
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-07 09:11:49 +00:00
DarkSky
443908da22
feat: add workspace experimental features api ( #5525 )
2024-01-06 11:04:49 +00:00
DarkSky
9650a5a6a1
feat: use relative path for api ( #5520 )
2024-01-05 14:01:25 +00:00
Peng Xiao
b86a5a2830
fix(core): sidebar extension sometimes not show ( #5513 )
2024-01-05 13:17:02 +00:00
LongYinan
b0716ae721
chore: bump up all non-major dependencies to v1.1.3 ( #5519 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | 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.1.2` -> `1.1.3`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-istanbul/1.1.2/1.1.3 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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.1.2` -> `1.1.3`](https://renovatebot.com/diffs/npm/@vitest%2fui/1.1.2/1.1.3 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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.1.2` -> `1.1.3`](https://renovatebot.com/diffs/npm/vitest/1.1.2/1.1.3 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>vitest-dev/vitest (@​vitest/coverage-istanbul)</summary>
### [`v1.1.3`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.1.3 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.1.2...v1.1.3 )
##### 🐞 Bug Fixes
- **vitest**:
- Vi.mock breaks tests when using imported variables inside the factory - by [@​sheremet-va](https://togithub.com/sheremet-va ) and **Dunqing** in [https://github.com/vitest-dev/vitest/issues/4873 ](https://togithub.com/vitest-dev/vitest/issues/4873 ) [<samp>(7719e)</samp>](https://togithub.com/vitest-dev/vitest/commit/7719e79e )
- Apply `slowTestThreshold` to all reporters - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4876 ](https://togithub.com/vitest-dev/vitest/issues/4876 ) [<samp>(1769c)</samp>](https://togithub.com/vitest-dev/vitest/commit/1769c796 )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.1.2...v1.1.3 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-05 09:53:28 +00:00
LongYinan
1dae488863
chore: bump up @blocksuite/icons version to v2.1.40 ( #5516 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.39` -> `2.1.40`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.39/2.1.40 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>toeverything/icons (@​blocksuite/icons)</summary>
### [`v2.1.40`](e255947e4e...2b42f403fb )
[Compare Source](e255947e4e...2b42f403fb )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-05 09:29:40 +00:00
LongYinan
b166f5dbf2
feat: upgrade to rust 1.75.0 ( #5515 )
2024-01-05 08:19:14 +00:00
LongYinan
3cdfa8ca22
chore: bump up all non-major dependencies ( #5499 )
...
[](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.484.0` -> `3.485.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.484.0/3.485.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.29` -> `3.0.0-alpha.30`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.29/3.0.0-alpha.30 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@node-rs/jsonwebtoken](https://togithub.com/napi-rs/node-rs ) | [`^0.2.3` -> `^0.3.0`](https://renovatebot.com/diffs/npm/@node-rs%2fjsonwebtoken/0.2.3/0.3.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@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.34.4` -> `^0.35.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-socket.io/0.34.4/0.35.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@storybook/test-runner](https://togithub.com/storybookjs/test-runner ) | [`^0.15.2` -> `^0.16.0`](https://renovatebot.com/diffs/npm/@storybook%2ftest-runner/0.15.2/0.16.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@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.1.1` -> `1.1.2`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-istanbul/1.1.1/1.1.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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.1.1` -> `1.1.2`](https://renovatebot.com/diffs/npm/@vitest%2fui/1.1.1/1.1.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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.1.1` -> `1.1.2`](https://renovatebot.com/diffs/npm/vitest/1.1.1/1.1.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.485.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34850-2024-01-03 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.484.0...v3.485.0 )
##### Features
- **credential-providers:** add credentialScope field ([#​5606](https://togithub.com/aws/aws-sdk-js-v3/issues/5606 )) ([04c1459](04c1459289 ))
</details>
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.30`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.30 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.29...@napi-rs/cli@3.0.0-alpha.30 )
##### What's Changed
- chore(deps): lock file maintenance by [@​renovate](https://togithub.com/renovate ) in [https://github.com/napi-rs/napi-rs/pull/1882 ](https://togithub.com/napi-rs/napi-rs/pull/1882 )
- fix(cli): wasi fallback package load logic by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1887 ](https://togithub.com/napi-rs/napi-rs/pull/1887 )
- fix(cli): upload to github releases issue by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1888 ](https://togithub.com/napi-rs/napi-rs/pull/1888 )
**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.29...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.30
</details>
<details>
<summary>napi-rs/node-rs (@​node-rs/jsonwebtoken)</summary>
### [`v0.3.1`](https://togithub.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@0.3.0...@node-rs/jsonwebtoken@0.3.1 )
[Compare Source](https://togithub.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@0.3.0...@node-rs/jsonwebtoken@0.3.1 )
### [`v0.3.0`](https://togithub.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@0.2.3...@node-rs/jsonwebtoken@0.3.0 )
[Compare Source](https://togithub.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@0.2.3...@node-rs/jsonwebtoken@0.3.0 )
</details>
<details>
<summary>open-telemetry/opentelemetry-js-contrib (@​opentelemetry/instrumentation-socket.io)</summary>
### [`v0.35.0`](efdfc727a4...f81f8a76a8 )
[Compare Source](a757b5e443...9092823125 )
</details>
<details>
<summary>storybookjs/test-runner (@​storybook/test-runner)</summary>
### [`v0.16.0`](https://togithub.com/storybookjs/test-runner/releases/tag/v0.16.0 )
[Compare Source](https://togithub.com/storybookjs/test-runner/compare/v0.15.2...v0.16.0 )
##### 🚀 Enhancement
- Introduce logLevel configuration [#​406](https://togithub.com/storybookjs/test-runner/pull/406 ) ([@​yannbf](https://togithub.com/yannbf ))
##### 🐛 Bug Fix
- Filter duplicated error messages in browser logs [#​405](https://togithub.com/storybookjs/test-runner/pull/405 ) ([@​yannbf](https://togithub.com/yannbf ))
- Fix sync issues between tests [#​404](https://togithub.com/storybookjs/test-runner/pull/404 ) ([@​yannbf](https://togithub.com/yannbf ))
- Refactor: Extract the setup page scripts into a separate file [#​403](https://togithub.com/storybookjs/test-runner/pull/403 ) ([@​yannbf](https://togithub.com/yannbf ))
- Docs: Adds feedback form to migration documentation [#​402](https://togithub.com/storybookjs/test-runner/pull/402 ) ([@​jonniebigodes](https://togithub.com/jonniebigodes ))
- Bump `jest-playwright-preset` from `v3.0.1` to `v4.0.0` [#​400](https://togithub.com/storybookjs/test-runner/pull/400 ) ([@​kemuridama](https://togithub.com/kemuridama ))
- Improve type safety and code quality [#​383](https://togithub.com/storybookjs/test-runner/pull/383 ) ([@​bryanjtc](https://togithub.com/bryanjtc ) [@​yannbf](https://togithub.com/yannbf ))
- Refactor: Improve internal code [#​378](https://togithub.com/storybookjs/test-runner/pull/378 ) ([@​bryanjtc](https://togithub.com/bryanjtc ) [@​yannbf](https://togithub.com/yannbf ))
##### Authors: 4
- [@​jonniebigodes](https://togithub.com/jonniebigodes )
- Bryan Thomas ([@​bryanjtc](https://togithub.com/bryanjtc ))
- Ryo Ochiai ([@​kemuridama](https://togithub.com/kemuridama ))
- Yann Braga ([@​yannbf](https://togithub.com/yannbf ))
</details>
<details>
<summary>vitest-dev/vitest (@​vitest/coverage-istanbul)</summary>
### [`v1.1.2`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.1.2 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.1.1...v1.1.2 )
##### 🐞 Bug Fixes
- Remove internal flag from UI option in the config - by [@​sheremet-va](https://togithub.com/sheremet-va ) [<samp>(7b4a2)</samp>](https://togithub.com/vitest-dev/vitest/commit/7b4a2fce )
- **browser**:
- Avoid safaridriver collision - by [@​mbland](https://togithub.com/mbland ) in [https://github.com/vitest-dev/vitest/issues/4863 ](https://togithub.com/vitest-dev/vitest/issues/4863 ) [<samp>(345a2)</samp>](https://togithub.com/vitest-dev/vitest/commit/345a25d6 )
- Resolved failure to find arbitrarily-named snapshot files when using `expect(...).toMatchFileSnapshot()` matcher. - by [@​zmullett](https://togithub.com/zmullett ), **Zac Mullett** and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4839 ](https://togithub.com/vitest-dev/vitest/issues/4839 ) [<samp>(b8140)</samp>](https://togithub.com/vitest-dev/vitest/commit/b8140fca )
- Handle config.base - by [@​mbland](https://togithub.com/mbland ) and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4686 ](https://togithub.com/vitest-dev/vitest/issues/4686 ) and [https://github.com/vitest-dev/vitest/issues/4692 ](https://togithub.com/vitest-dev/vitest/issues/4692 ) [<samp>(9e345)</samp>](https://togithub.com/vitest-dev/vitest/commit/9e34557e )
- **deps**:
- Update dependency acorn-walk to ^8.3.1 - by [@​renovate](https://togithub.com/renovate )\[bot] in[https://github.com/vitest-dev/vitest/issues/4837 ](https://togithub.com/vitest-dev/vitest/issues/4837 )7 [<samp>(47bc2)</samp>](https://togithub.com/vitest-dev/vitest/commit/47bc233d )
- Update dependency sirv to ^2.0.4 - by [@​renovate](https://togithub.com/renovate )\[bot] in[https://github.com/vitest-dev/vitest/issues/4838 ](https://togithub.com/vitest-dev/vitest/issues/4838 )8 [<samp>(df261)</samp>](https://togithub.com/vitest-dev/vitest/commit/df261ae1 )
- **runner**:
- Fix fixture cleanup for concurrent tests - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4827 ](https://togithub.com/vitest-dev/vitest/issues/4827 ) [<samp>(1fee6)</samp>](https://togithub.com/vitest-dev/vitest/commit/1fee63f2 )
- **spy**:
- Don't allow `Promise` in `mockImplementation` if it's not in the function signature - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4859 ](https://togithub.com/vitest-dev/vitest/issues/4859 ) [<samp>(072e0)</samp>](https://togithub.com/vitest-dev/vitest/commit/072e02bf )
- **vite-node**:
- Correctly return cached result - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4870 ](https://togithub.com/vitest-dev/vitest/issues/4870 ) [<samp>(15bbb)</samp>](https://togithub.com/vitest-dev/vitest/commit/15bbbf81 )
- **vitest**:
- Throw an error if mock was already loaded when `vi.mock` is called - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4862 ](https://togithub.com/vitest-dev/vitest/issues/4862 ) [<samp>(e12a5)</samp>](https://togithub.com/vitest-dev/vitest/commit/e12a5a36 )
- Correctly rerun test files on change if server was restarted - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4871 ](https://togithub.com/vitest-dev/vitest/issues/4871 ) [<samp>(6088b)</samp>](https://togithub.com/vitest-dev/vitest/commit/6088b372 )
- **vm-threads**:
- Don't crash on percentage based `memoryLimit` - by [@​inottn](https://togithub.com/inottn ) and [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4802 ](https://togithub.com/vitest-dev/vitest/issues/4802 ) [<samp>(70e8a)</samp>](https://togithub.com/vitest-dev/vitest/commit/70e8a389 )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.1.1...v1.1.2 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-05 07:23:22 +00:00
DarkSky
f6ec786ef9
feat: add workspace level feature apis ( #5503 )
2024-01-05 04:13:49 +00:00
DarkSky
04ca554525
feat: add workspace feature tests ( #5501 )
2024-01-05 04:13:47 +00:00
DarkSky
97f8927c21
feat: workspace level feature schema ( #5466 )
2024-01-05 04:13:44 +00:00
LongYinan
7b6430ebc3
chore: bump up @blocksuite/icons version to v2.1.39 ( #5511 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.36` -> `2.1.39`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.36/2.1.39 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>toeverything/icons (@​blocksuite/icons)</summary>
### [`v2.1.39`](83cf4ea106...e255947e4e )
[Compare Source](83cf4ea106...e255947e4e )
### [`v2.1.38`](1c26e8f533...83cf4ea106 )
[Compare Source](1c26e8f533...83cf4ea106 )
### [`v2.1.37`](310adb0b9f...1c26e8f533 )
[Compare Source](310adb0b9f...1c26e8f533 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-04 14:13:26 +00:00
LongYinan
e4b9f01186
chore: bump up chromatic version to v10 ( #5512 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [chromatic](https://www.chromatic.com ) ([source](https://togithub.com/chromaui/chromatic-cli )) | [`^9.1.0` -> `^10.0.0`](https://renovatebot.com/diffs/npm/chromatic/9.1.0/10.2.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>chromaui/chromatic-cli (chromatic)</summary>
### [`v10.2.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1020-Thu-Dec-21-2023 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.1.0...v10.2.0 )
##### 🚀 Enhancement
- Replace `getUploadUrls` with `uploadBuild` mutation [#​876](https://togithub.com/chromaui/chromatic-cli/pull/876 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Implement file hashing for to-be-uploaded files [#​870](https://togithub.com/chromaui/chromatic-cli/pull/870 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### 🐛 Bug Fix
- Allow overriding `NODE_ENV` with `STORYBOOK_NODE_ENV` [#​879](https://togithub.com/chromaui/chromatic-cli/pull/879 ) ([@​tmeasday](https://togithub.com/tmeasday ))
- Use code splitting in tsup CJS output [#​873](https://togithub.com/chromaui/chromatic-cli/pull/873 ) ([@​tmeasday](https://togithub.com/tmeasday ))
##### Authors: 2
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Tom Coleman ([@​tmeasday](https://togithub.com/tmeasday ))
***
### [`v10.1.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1010-Thu-Dec-07-2023 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.0.0...v10.1.0 )
##### 🚀 Enhancement
- Increase number of commits checked for squash merge [#​866](https://togithub.com/chromaui/chromatic-cli/pull/866 ) ([@​tmeasday](https://togithub.com/tmeasday ) [@​tevanoff](https://togithub.com/tevanoff ))
##### Authors: 2
- Todd Evanoff ([@​tevanoff](https://togithub.com/tevanoff ))
- Tom Coleman ([@​tmeasday](https://togithub.com/tmeasday ))
***
### [`v10.0.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1000-Fri-Dec-01-2023 )
[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v9.1.0...v10.0.0 )
##### 💥 Breaking Change
- Force `NODE_ENV=production` for Storybook builds through the CLI [#​865](https://togithub.com/chromaui/chromatic-cli/pull/865 ) ([@​tmeasday](https://togithub.com/tmeasday ))
##### 🐛 Bug Fix
- Support pinning GitHub Action to major or patch version [#​863](https://togithub.com/chromaui/chromatic-cli/pull/863 ) ([@​ghengeveld](https://togithub.com/ghengeveld ))
##### Authors: 2
- Gert Hengeveld ([@​ghengeveld](https://togithub.com/ghengeveld ))
- Tom Coleman ([@​tmeasday](https://togithub.com/tmeasday ))
***
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-04 14:00:45 +00:00
JimmFly
971f2beed1
fix(core): disable quick search when the link-popup is visitable ( #5409 )
...
close AFF-471
2024-01-04 11:36:50 +00:00
DarkSky
f5b74ca8a9
feat: add copilot feature type ( #5465 )
2024-01-04 10:36:34 +00:00
LongYinan
df09dac389
fix: renovate ignorePaths should not include tests
2024-01-04 18:34:54 +08:00
LongYinan
6789da163d
chore: workspaces config in package.json ( #5502 )
...
This will affect the dependency detection feature of renovate.
2024-01-04 07:36:36 +00:00
Joooye_34
36fde20b7d
fix(electron): client always update cause by version not update correctly ( #5507 )
...
close #5475
2024-01-04 07:25:20 +00:00
LongYinan
400488980f
chore: bump up c8 version to v9 ( #5505 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [c8](https://togithub.com/bcoe/c8 ) | [`^8.0.1` -> `^9.0.0`](https://renovatebot.com/diffs/npm/c8/8.0.1/9.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>bcoe/c8 (c8)</summary>
### [`v9.0.0`](https://togithub.com/bcoe/c8/blob/HEAD/CHANGELOG.md#900-2024-01-03 )
[Compare Source](https://togithub.com/bcoe/c8/compare/v8.0.1...v9.0.0 )
##### ⚠ BREAKING CHANGES
- **build:** minimum Node.js version is now 14.14.0
##### Features
- **build:** minimum Node.js version is now 14.14.0 ([2cdc86b](2cdc86bd0a ))
- **deps:** update foreground-child to promise API ([#​512](https://togithub.com/bcoe/c8/issues/512 )) ([b46b640](b46b640127 ))
- **deps:** use Node.js built in rm ([2cdc86b](2cdc86bd0a ))
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-04 03:50:24 +00:00
JimmFly
7d886e44a6
feat(core): add cloud workspace member limit ( #5500 )
...
<img width="521" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/2cac78ef-07ed-4e06-b739-1279f913d0e1 ">
<img width="514" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/eed0db08-8550-4686-8ea1-251f1c4c7fee ">
2024-01-03 14:57:27 +00:00
liuyi
760d900f99
feat(server): blob data migration ( #5461 )
2024-01-03 10:56:57 +00:00
liuyi
0d34805375
refactor(server): use new storage providers ( #5433 )
2024-01-03 10:56:55 +00:00
Peng Xiao
a709624ebf
feat(core): page preview ui optimize ( #5442 )
...

fix TOV-92
No animations right now.
2024-01-03 03:30:43 +00:00
Peng Xiao
6cb62ed25d
feat: bump blocksuite ( #5453 )
...
Change history: https://github.com/toeverything/blocksuite/compare/e3abcbb...master
2024-01-03 02:10:19 +00:00
Peng Xiao
8dc3e3d65c
fix(core): add free plan prompt ( #5441 )
...
fix TOV-91

2024-01-03 01:50:32 +00:00
Peng Xiao
444de6d4ac
fix(core): adjust error boundary level ( #5493 )
...
Allowing showing page title for page detail when page throws error.

2024-01-02 22:48:19 +08:00
Peng Xiao
922bc11f16
test(core): fix selectMonthFromMonthPicker logic ( #5498 )
2024-01-02 14:21:14 +00:00
LongYinan
53c76ae2e2
chore: bump up vitest version to v1.1.1 ( #5495 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vitest](https://togithub.com/vitest-dev/vitest ) ([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/vitest )) | [`1.1.0` -> `1.1.1`](https://renovatebot.com/diffs/npm/vitest/1.1.0/1.1.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>vitest-dev/vitest (vitest)</summary>
### [`v1.1.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.1.1 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.1.0...v1.1.1 )
##### 🐞 Bug Fixes
- Don't crash when using happy-dom or jsdom environment on Yarn PnP workspaces - by [@​wojtekmaj](https://togithub.com/wojtekmaj ) and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4698 ](https://togithub.com/vitest-dev/vitest/issues/4698 ) [<samp>(ee8b4)</samp>](https://togithub.com/vitest-dev/vitest/commit/ee8b46db )
- Don't fail if `inline: true` is set - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4815 ](https://togithub.com/vitest-dev/vitest/issues/4815 ) [<samp>(8f622)</samp>](https://togithub.com/vitest-dev/vitest/commit/8f6225b8 )
- Correct option name `--no-parallelism` - by [@​bonyuta0204](https://togithub.com/bonyuta0204 ) in [https://github.com/vitest-dev/vitest/issues/4831 ](https://togithub.com/vitest-dev/vitest/issues/4831 ) [<samp>(5053a)</samp>](https://togithub.com/vitest-dev/vitest/commit/5053a5dd )
- Match jest json output by making json reporter output ndjson-compatible - by [@​bard](https://togithub.com/bard ) in [https://github.com/vitest-dev/vitest/issues/4824 ](https://togithub.com/vitest-dev/vitest/issues/4824 ) [<samp>(7e6a6)</samp>](https://togithub.com/vitest-dev/vitest/commit/7e6a62af )
- **runner**:
- Reset "current test" state on dynamic `skip` - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4814 ](https://togithub.com/vitest-dev/vitest/issues/4814 ) [<samp>(19faf)</samp>](https://togithub.com/vitest-dev/vitest/commit/19faf00e )
- **vitest**:
- Don't hang when mocking files with cyclic dependencies - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4811 ](https://togithub.com/vitest-dev/vitest/issues/4811 ) [<samp>(e8ca6)</samp>](https://togithub.com/vitest-dev/vitest/commit/e8ca6437 )
- Initialize snapshot state only once for each file suite - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4796 ](https://togithub.com/vitest-dev/vitest/issues/4796 ) [<samp>(957da)</samp>](https://togithub.com/vitest-dev/vitest/commit/957daa32 )
- Fix file snapshots in skipped suites considered obsolete - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4795 ](https://togithub.com/vitest-dev/vitest/issues/4795 ) [<samp>(06c14)</samp>](https://togithub.com/vitest-dev/vitest/commit/06c14f7d )
- Show `beforeAll/afterAll` errors in junit reporter - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4819 ](https://togithub.com/vitest-dev/vitest/issues/4819 ) [<samp>(2baea)</samp>](https://togithub.com/vitest-dev/vitest/commit/2baea35e )
- **vm-threads**:
- Tests not cancelled on key press, cancelled tests shown twice - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4781 ](https://togithub.com/vitest-dev/vitest/issues/4781 ) [<samp>(cf53d)</samp>](https://togithub.com/vitest-dev/vitest/commit/cf53d4be )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.1.0...v1.1.1 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-02 13:46:17 +00:00
EYHN
4aae3cbba3
docs: initial api reference docs ( #5352 )
2024-01-02 12:46:27 +00:00
DarkSky
44eb7b97f4
chore: bump vulnerable deps ( #5494 )
2024-01-02 12:32:47 +00:00
EYHN
54c6b445ea
fix(workspace): make ci stable ( #5496 )
2024-01-02 12:21:35 +00:00
EYHN
104c21d84c
refactor(workspace): split workspace interface and implementation ( #5463 )
...
@affine/workspace -> (@affine/workspace, @affine/workspace-impl)
2024-01-02 10:58:01 +00:00
EYHN
9d0b3b4947
refactor(core): move workspace atoms to core ( #5459 )
...
@affine/workspace/atom -> @affine/core/modules/workspace
2024-01-02 10:06:48 +00:00
EYHN
4b217e6b89
refactor(core): move hooks to core ( #5458 )
...
* move @toeverything/hooks -> @affine/core/hooks
* delete @toeverything/hooks
hooks are all business-related logic and are deeply coupled with other parts.
Move them into the core and then reconstruct them by feature.
2024-01-02 08:05:46 +00:00
LongYinan
6862b7deaf
chore: bump up @napi-rs/cli version to v3.0.0-alpha.29 ( #5492 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.28` -> `3.0.0-alpha.29`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.28/3.0.0-alpha.29 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.29`](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.28...@napi-rs/cli@3.0.0-alpha.29 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.28...@napi-rs/cli@3.0.0-alpha.29 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-02 07:39:44 +00:00
EYHN
6844b282ac
refactor(component): adjust active editor atom ( #5457 )
...
before:
set global `blocksuiteEditorAtom` state in `<BlocksuiteEditorImpl />`
after:
Rename `blocksuiteEditorAtom` to `activeBlocksuiteEditorAtom`
And move the logic of setting this atom to `<PageDetailEditor />`.
benefit:
* make BlocksuiteEditor pure
* keep @toeverything/component clear
* Clarify the purpose of `activeBlocksuiteEditorAtom`
2024-01-02 07:30:09 +00:00
liuyi
1eefd712dd
feat(server): new storage provider ( #5410 )
2024-01-02 07:21:01 +00:00
liuyi
abcca8b09e
refactor(server): object storages ( #5405 )
2024-01-02 07:01:25 +00:00
Peng Xiao
b84494ef86
feat(core): optimize history list item ui ( #5440 )
...

fix TOV-90
2024-01-02 05:46:56 +00:00
LongYinan
b92f2cb29a
chore: bump up all non-major dependencies ( #5488 )
...
[](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.481.0` -> `3.484.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.481.0/3.484.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.25` -> `3.0.0-alpha.28`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.25/3.0.0-alpha.28 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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.1.0` -> `1.1.1`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-istanbul/1.1.0/1.1.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@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.1.0` -> `1.1.1`](https://renovatebot.com/diffs/npm/@vitest%2fui/1.1.0/1.1.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [fake-indexeddb](https://togithub.com/dumbmatter/fakeIndexedDB ) | [`5.0.1` -> `5.0.2`](https://renovatebot.com/diffs/npm/fake-indexeddb/5.0.1/5.0.2 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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.1.0` -> `1.1.1`](https://renovatebot.com/diffs/npm/vitest/1.1.0/1.1.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.484.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34840-2023-12-29 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.481.0...v3.484.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
</details>
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.28`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.28 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.27...@napi-rs/cli@3.0.0-alpha.28 )
##### What's Changed
- fix(cli): copy binding files into wasi packages by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1881 ](https://togithub.com/napi-rs/napi-rs/pull/1881 )
**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.27...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.28
### [`v3.0.0-alpha.27`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.27 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.25...@napi-rs/cli@3.0.0-alpha.27 )
##### What's Changed
- fix(deps): update dependency emnapi to v0.45.0 by [@​renovate](https://togithub.com/renovate ) in [https://github.com/napi-rs/napi-rs/pull/1879 ](https://togithub.com/napi-rs/napi-rs/pull/1879 )
**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.26...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.27
</details>
<details>
<summary>vitest-dev/vitest (@​vitest/coverage-istanbul)</summary>
### [`v1.1.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.1.1 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.1.0...v1.1.1 )
##### 🐞 Bug Fixes
- Don't crash when using happy-dom or jsdom environment on Yarn PnP workspaces - by [@​wojtekmaj](https://togithub.com/wojtekmaj ) and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4698 ](https://togithub.com/vitest-dev/vitest/issues/4698 ) [<samp>(ee8b4)</samp>](https://togithub.com/vitest-dev/vitest/commit/ee8b46db )
- Don't fail if `inline: true` is set - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4815 ](https://togithub.com/vitest-dev/vitest/issues/4815 ) [<samp>(8f622)</samp>](https://togithub.com/vitest-dev/vitest/commit/8f6225b8 )
- Correct option name `--no-parallelism` - by [@​bonyuta0204](https://togithub.com/bonyuta0204 ) in [https://github.com/vitest-dev/vitest/issues/4831 ](https://togithub.com/vitest-dev/vitest/issues/4831 ) [<samp>(5053a)</samp>](https://togithub.com/vitest-dev/vitest/commit/5053a5dd )
- Match jest json output by making json reporter output ndjson-compatible - by [@​bard](https://togithub.com/bard ) in [https://github.com/vitest-dev/vitest/issues/4824 ](https://togithub.com/vitest-dev/vitest/issues/4824 ) [<samp>(7e6a6)</samp>](https://togithub.com/vitest-dev/vitest/commit/7e6a62af )
- **runner**:
- Reset "current test" state on dynamic `skip` - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4814 ](https://togithub.com/vitest-dev/vitest/issues/4814 ) [<samp>(19faf)</samp>](https://togithub.com/vitest-dev/vitest/commit/19faf00e )
- **vitest**:
- Don't hang when mocking files with cyclic dependencies - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4811 ](https://togithub.com/vitest-dev/vitest/issues/4811 ) [<samp>(e8ca6)</samp>](https://togithub.com/vitest-dev/vitest/commit/e8ca6437 )
- Initialize snapshot state only once for each file suite - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4796 ](https://togithub.com/vitest-dev/vitest/issues/4796 ) [<samp>(957da)</samp>](https://togithub.com/vitest-dev/vitest/commit/957daa32 )
- Fix file snapshots in skipped suites considered obsolete - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4795 ](https://togithub.com/vitest-dev/vitest/issues/4795 ) [<samp>(06c14)</samp>](https://togithub.com/vitest-dev/vitest/commit/06c14f7d )
- Show `beforeAll/afterAll` errors in junit reporter - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4819 ](https://togithub.com/vitest-dev/vitest/issues/4819 ) [<samp>(2baea)</samp>](https://togithub.com/vitest-dev/vitest/commit/2baea35e )
- **vm-threads**:
- Tests not cancelled on key press, cancelled tests shown twice - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4781 ](https://togithub.com/vitest-dev/vitest/issues/4781 ) [<samp>(cf53d)</samp>](https://togithub.com/vitest-dev/vitest/commit/cf53d4be )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.1.0...v1.1.1 )
</details>
<details>
<summary>dumbmatter/fakeIndexedDB (fake-indexeddb)</summary>
### [`v5.0.2`](https://togithub.com/dumbmatter/fakeIndexedDB/blob/HEAD/CHANGELOG.md#502-2023-12-30 )
[Compare Source](https://togithub.com/dumbmatter/fakeIndexedDB/compare/v5.0.1...v5.0.2 )
- [#​94](https://togithub.com/dumbmatter/fakeIndexedDB/issues/94 ) - Improved performance of `IDBObjectStore.count` and `IDBIndex.count`.
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2024-01-02 04:51:44 +00:00
LongYinan
986860070b
fix: renovate preserveSemverRanges rule should not be in group
2024-01-02 12:19:55 +08:00
LongYinan
ae3afccdb2
fix: renovate config
2024-01-02 12:13:37 +08:00
LongYinan
b0d90c26d3
ci: fix invalid renovate config ( #5470 )
...
- Close https://github.com/toeverything/AFFiNE/issues/5469
2024-01-02 03:37:22 +00:00
Peng Xiao
da5ac224ca
test(core): select monthpicker issue when crossing different years ( #5478 )
2024-01-02 03:28:38 +00:00
LongYinan
10aeefe36d
ci: prevent @blocksuite/* packages upgraded without group ( #5467 )
2023-12-29 10:23:56 +00:00
LongYinan
8eda42c57f
chore: remove abbey-wood helm chart ( #5464 )
2023-12-29 17:51:23 +08:00
Joooye_34
d668016e4c
feat(electron): use release api to filter draft release ( #5443 )
2023-12-29 09:01:35 +00:00
Joooye_34
3341295fc1
ci: temporarily save release from branch to affine-releases ( #5455 )
2023-12-29 17:00:10 +08:00
Peng Xiao
9e092b9c15
fix(core): long page title issue in page history ( #5436 )
...

2023-12-29 07:27:02 +00:00
Peng Xiao
f65c5dbfa7
fix(core): upgrade page when previewing/reverting page snapshot ( #5435 )
2023-12-29 07:26:58 +00:00
DarkSky
3082d63948
fix: use absolute path in gql client ( #5454 )
2023-12-29 06:48:04 +00:00
Joooye_34
5a1065c646
test(electron): add unit tests for updater ( #5439 )
2023-12-29 04:39:29 +00:00
LongYinan
15566d8507
chore: bump up @nx/vite version to v17.2.8 ( #5425 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@nx/vite](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/vite )) | [`17.2.7` -> `17.2.8`](https://renovatebot.com/diffs/npm/@nx%2fvite/17.2.7/17.2.8 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>nrwl/nx (@​nx/vite)</summary>
### [`v17.2.8`](https://togithub.com/nrwl/nx/releases/tag/17.2.8 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.7...17.2.8 )
#### 17.2.8
##### 🚀 Features
- **remix:** add remix
##### 🩹 Fixes
- **linter:** flat config should always set path to config when using API
- **nextjs:** update migration to handle projects without eslintrc
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2023-12-29 04:10:19 +00:00
Peng Xiao
3978b2dfd2
refactor(core): onboarding using new transformer api ( #5412 )
...
Use new `transformer` to import onboarding json templates.
The json files are generated via this gist
https://gist.github.com/pengx17/ef92c305ac23123803a1a6a20e31f822
Not using the all-in-one `ZipTransformer` to import onboarding via a zip file.
1. The main concerns is that we still need to serve the blob resources via CDN to reduce user's blob usage. Otherwise the user will get the onboarding images being uploaded to cloud server every time he creates a new workspace. In this PR we extracted parts of the code from `ZipTransformer` in blocksuite and mute some code for uploading blobs.
2. it maybe not necessary to use zip for loading snapshots.
This PR is a short term solution. whether or not to tune the transformer api design may need further discussions.
fix TOV-264
2023-12-28 13:59:21 +00:00
JimmFly
954b751e7c
chore: adjust side bar empty item color ( #5422 )
2023-12-28 13:49:14 +00:00
DarkSky
b3dbac3d4c
feat: add migration for rename unamed accounts ( #5434 )
...
fix TOV-130
2023-12-28 12:20:00 +00:00
Peng Xiao
6fefe4ec71
fix(storybook): storybook flaky ( #5430 )
...
should add additional wait timeout for every story.play
I think this is a storybook issue. It seems that it starts to run the plays as soon as the following shows up:

2023-12-28 10:07:05 +00:00
EYHN
9d51f9596f
refactor(component): make component pure ( #5427 )
2023-12-28 09:57:26 +00:00
JimmFly
e11e8277ca
feat: add useBlocksuiteEditor hooks ( #5366 )
2023-12-28 08:36:36 +00:00
LongYinan
431f7cfac9
ci: exclude blocksuite from auto update group ( #5424 )
2023-12-28 08:22:20 +00:00
LongYinan
2f45200542
feat(server): upgrade prisma to use native relation joins and distinct ( #5420 )
...
https://github.com/prisma/prisma/releases/tag/5.7.0
2023-12-28 08:09:11 +00:00
LongYinan
07c63703b1
chore: bump up all non-major dependencies ( #5187 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence | Type | Update |
|---|---|---|---|---|---|---|---|
| [@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.433.0` -> `3.481.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.433.0/3.481.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [@blocksuite/block-std](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fblock-std/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@blocksuite/block-std](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fblock-std/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | patch |
| [@blocksuite/blocks](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fblocks/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@blocksuite/blocks](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fblocks/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | patch |
| [@blocksuite/global](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fglobal/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@blocksuite/global](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fglobal/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | patch |
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.36` -> `2.1.39`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.36/2.1.39 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | patch |
| [@blocksuite/icons](https://togithub.com/toeverything/icons ) | [`2.1.36` -> `2.1.39`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.36/2.1.39 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@blocksuite/inline](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2finline/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | patch |
| [@blocksuite/lit](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2flit/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@blocksuite/lit](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2flit/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | patch |
| [@blocksuite/presets](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fpresets/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@blocksuite/presets](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fpresets/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | patch |
| [@blocksuite/store](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fstore/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@blocksuite/store](https://togithub.com/toeverything/blocksuite ) | [`0.11.0-nightly-202312220916-e3abcbb` -> `0.11.0-nightly-202312270831-214616d`](https://renovatebot.com/diffs/npm/@blocksuite%2fstore/0.11.0-nightly-202312220916-e3abcbb/0.11.0-nightly-202312270831-214616d ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | patch |
| [@electron/remote](https://togithub.com/electron/remote ) | [`2.1.0` -> `2.1.1`](https://renovatebot.com/diffs/npm/@electron%2fremote/2.1.0/2.1.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@marsidev/react-turnstile](https://togithub.com/marsidev/react-turnstile ) | [`^0.3.1` -> `^0.4.0`](https://renovatebot.com/diffs/npm/@marsidev%2freact-turnstile/0.3.2/0.4.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [@napi-rs/cli](https://togithub.com/napi-rs/napi-rs ) | [`3.0.0-alpha.15` -> `3.0.0-alpha.25`](https://renovatebot.com/diffs/npm/@napi-rs%2fcli/3.0.0-alpha.15/3.0.0-alpha.25 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | patch |
| [@nx/vite](https://nx.dev ) ([source](https://togithub.com/nrwl/nx/tree/HEAD/packages/vite )) | [`17.1.3` -> `17.2.7`](https://renovatebot.com/diffs/npm/@nx%2fvite/17.1.3/17.2.7 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [@storybook/test-runner](https://togithub.com/storybookjs/test-runner ) | [`^0.15.2` -> `^0.16.0`](https://renovatebot.com/diffs/npm/@storybook%2ftest-runner/0.15.2/0.16.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [@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.0.4` -> `1.1.0`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-istanbul/1.0.4/1.1.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [@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.0.4` -> `1.1.0`](https://renovatebot.com/diffs/npm/@vitest%2fui/1.0.4/1.1.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [cloudflare/wrangler-action](https://togithub.com/cloudflare/wrangler-action ) | `v3.3.2` -> `v3.4.0` | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | action | minor |
| openresty/openresty | `1.21.4.1-0-buster` -> `1.21.4.3-0-buster` | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | final | patch |
| [postgresql](https://bitnami.com ) ([source](https://togithub.com/bitnami/charts/tree/HEAD/bitnami/postgresql )) | `13.2.23` -> `13.2.26` | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | | patch |
| [reflect-metadata](http://rbuckton.github.io/reflect-metadata ) ([source](https://togithub.com/rbuckton/reflect-metadata )) | [`^0.1.13` -> `^0.2.0`](https://renovatebot.com/diffs/npm/reflect-metadata/0.1.13/0.2.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | dependencies | minor |
| [vite-plugin-dts](https://togithub.com/qmhc/vite-plugin-dts ) | [`3.6.0` -> `3.7.0`](https://renovatebot.com/diffs/npm/vite-plugin-dts/3.6.0/3.7.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
| [vitest](https://togithub.com/vitest-dev/vitest ) ([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/vitest )) | [`1.0.4` -> `1.1.0`](https://renovatebot.com/diffs/npm/vitest/1.0.4/1.1.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | devDependencies | minor |
---
### Release Notes
<details>
<summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary>
### [`v3.481.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34810-2023-12-26 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.478.0...v3.481.0 )
##### Features
- codegen for command class builder ([#​5604](https://togithub.com/aws/aws-sdk-js-v3/issues/5604 )) ([4835de4](4835de4ebb ))
### [`v3.478.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34780-2023-12-20 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.477.0...v3.478.0 )
##### Features
- codegen for paginator factory ([#​5590](https://togithub.com/aws/aws-sdk-js-v3/issues/5590 )) ([e54099b](e54099b7c1 ))
### [`v3.477.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34770-2023-12-19 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.476.0...v3.477.0 )
##### Features
- xml codegen reduction ([#​5566](https://togithub.com/aws/aws-sdk-js-v3/issues/5566 )) ([3ed7c81](3ed7c81f91 ))
### [`v3.476.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34760-2023-12-18 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.474.0...v3.476.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.474.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34740-2023-12-14 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.473.0...v3.474.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.473.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34730-2023-12-13 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.472.0...v3.473.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.472.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34720-2023-12-12 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.470.0...v3.472.0 )
##### Bug Fixes
- **codegen:** dedupe `[@aws](https://togithub.com/aws ).protocols#restXml` serialization ([#​5568](https://togithub.com/aws/aws-sdk-js-v3/issues/5568 )) ([7df7325](7df73259b6 ))
### [`v3.470.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34700-2023-12-08 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.468.0...v3.470.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.468.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34680-2023-12-06 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.465.0...v3.468.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.465.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34650-2023-12-01 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.462.0...v3.465.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.462.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34620-2023-11-29 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.461.0...v3.462.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.461.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34610-2023-11-28 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.460.0...v3.461.0 )
##### Features
- **client-s3:** Adds support for S3 Express One Zone. ([1dcc776](1dcc776322 ))
### [`v3.460.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34600-2023-11-28 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.458.0...v3.460.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.458.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34580-2023-11-27 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.456.0...v3.458.0 )
##### Features
- **client-s3:** Adding new params - Key and Prefix, to S3 API operations for supporting S3 Access Grants. Note - These updates will not change any of the existing S3 API functionality. ([ba36517](ba365170a0 ))
### [`v3.456.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34560-2023-11-21 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.454.0...v3.456.0 )
##### Features
- **client-s3:** Add support for automatic date based partitioning in S3 Server Access Logs. ([06ee66a](06ee66ae3b ))
### [`v3.454.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34540-2023-11-17 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.451.0...v3.454.0 )
##### Features
- **client-s3:** Removes all default 0 values for numbers and false values for booleans ([61b32fe](61b32fe67a ))
### [`v3.451.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34510-2023-11-14 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.450.0...v3.451.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.450.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34500-2023-11-13 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.449.0...v3.450.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.449.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34490-2023-11-10 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.445.0...v3.449.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.445.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34450-2023-11-07 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.441.0...v3.445.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.441.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34410-2023-11-01 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.440.0...v3.441.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.440.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34400-2023-10-31 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.438.0...v3.440.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.438.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34380-2023-10-27 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.437.0...v3.438.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.437.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34370-2023-10-26 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.436.0...v3.437.0 )
##### Bug Fixes
- **signature-v4-crt:** remove dynamic imports (!) ([#​5225](https://togithub.com/aws/aws-sdk-js-v3/issues/5225 )) ([89f97b5](89f97b5cea ))
### [`v3.436.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34360-2023-10-25 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.435.0...v3.436.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
### [`v3.435.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#34350-2023-10-24 )
[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.433.0...v3.435.0 )
**Note:** Version bump only for package [@​aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3 )
</details>
<details>
<summary>toeverything/icons (@​blocksuite/icons)</summary>
### [`v2.1.39`](83cf4ea106...e255947e4e )
[Compare Source](83cf4ea106...e255947e4e )
### [`v2.1.38`](1c26e8f533...83cf4ea106 )
[Compare Source](1c26e8f533...83cf4ea106 )
### [`v2.1.37`](310adb0b9f...1c26e8f533 )
[Compare Source](310adb0b9f...1c26e8f533 )
</details>
<details>
<summary>electron/remote (@​electron/remote)</summary>
### [`v2.1.1`](https://togithub.com/electron/remote/releases/tag/v2.1.1 )
[Compare Source](https://togithub.com/electron/remote/compare/v2.1.0...v2.1.1 )
##### Bug Fixes
- senderId removed in Electron 28 ([#​171](https://togithub.com/electron/remote/issues/171 )) ([51ff1b4](51ff1b432f ))
</details>
<details>
<summary>marsidev/react-turnstile (@​marsidev/react-turnstile)</summary>
### [`v0.4.0`](https://togithub.com/marsidev/react-turnstile/releases/tag/v0.4.0 )
[Compare Source](https://togithub.com/marsidev/react-turnstile/compare/v0.3.2...v0.4.0 )
##### 🚀 Features
- Add `crossOrigin` to `scriptOptions` - by [@​kaichii](https://togithub.com/kaichii ) [<samp>(a588b)</samp>](https://togithub.com/marsidev/react-turnstile/commit/a588b72 )
- Add `onLoadScript` callback - by [@​marsidev](https://togithub.com/marsidev ) [<samp>(4e5bc)</samp>](https://togithub.com/marsidev/react-turnstile/commit/4e5bcc3 )
- Add support for `isExpired()` method - by [@​marsidev](https://togithub.com/marsidev ) [<samp>(7daca)</samp>](https://togithub.com/marsidev/react-turnstile/commit/7daca97 )
##### [View changes on GitHub](https://togithub.com/marsidev/react-turnstile/compare/v0.3.2...v0.4.0 )
</details>
<details>
<summary>napi-rs/napi-rs (@​napi-rs/cli)</summary>
### [`v3.0.0-alpha.25`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.25 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.24...@napi-rs/cli@3.0.0-alpha.25 )
##### What's Changed
- fix(cli): compatible with napi artifacts -d option by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1872 ](https://togithub.com/napi-rs/napi-rs/pull/1872 )
**Full Changelog**: https://github.com/napi-rs/napi-rs/compare/napi-derive@2.14.6...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.25
### [`v3.0.0-alpha.24`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.24 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.23...@napi-rs/cli@3.0.0-alpha.24 )
##### What's Changed
- fix(cli): prepublish tagstyle flag by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1863 ](https://togithub.com/napi-rs/napi-rs/pull/1863 )
- chore(cli): root directory access permissions by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1864 ](https://togithub.com/napi-rs/napi-rs/pull/1864 )
- feat(cli): support wasi target test & release workflow by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1867 ](https://togithub.com/napi-rs/napi-rs/pull/1867 )
**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.20...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.24
### [`v3.0.0-alpha.23`](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.22...@napi-rs/cli@3.0.0-alpha.23 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.22...@napi-rs/cli@3.0.0-alpha.23 )
### [`v3.0.0-alpha.22`](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.21...@napi-rs/cli@3.0.0-alpha.22 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.21...@napi-rs/cli@3.0.0-alpha.22 )
### [`v3.0.0-alpha.21`](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.20...@napi-rs/cli@3.0.0-alpha.21 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.20...@napi-rs/cli@3.0.0-alpha.21 )
### [`v3.0.0-alpha.20`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.20 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.19...@napi-rs/cli@3.0.0-alpha.20 )
#### What's Changed
- chore(deps): update actions/download-artifact action to v4 by [@​renovate](https://togithub.com/renovate ) in [https://github.com/napi-rs/napi-rs/pull/1856 ](https://togithub.com/napi-rs/napi-rs/pull/1856 )
- fix(cli): make prepublish as pre-publish alias by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1861 ](https://togithub.com/napi-rs/napi-rs/pull/1861 )
**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.19...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.20
### [`v3.0.0-alpha.19`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.19 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.18...@napi-rs/cli@3.0.0-alpha.19 )
##### What's Changed
- fix(cli): artifacts default option value by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1853 ](https://togithub.com/napi-rs/napi-rs/pull/1853 )
- fix: more accurate napi expanding error by [@​forehalo](https://togithub.com/forehalo ) in [https://github.com/napi-rs/napi-rs/pull/1854 ](https://togithub.com/napi-rs/napi-rs/pull/1854 )
- feat(cli): support read config from the given config file by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1859 ](https://togithub.com/napi-rs/napi-rs/pull/1859 )
- fix(cli): prepublish command by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1860 ](https://togithub.com/napi-rs/napi-rs/pull/1860 )
**Full Changelog**: https://github.com/napi-rs/napi-rs/compare/napi-derive@2.14.4...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.19
### [`v3.0.0-alpha.18`](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.17...@napi-rs/cli@3.0.0-alpha.18 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.17...@napi-rs/cli@3.0.0-alpha.18 )
### [`v3.0.0-alpha.17`](https://togithub.com/napi-rs/napi-rs/releases/tag/%40napi-rs/cli%403.0.0-alpha.17 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.16...@napi-rs/cli@3.0.0-alpha.17 )
##### What's Changed
- fix(cli): make outputDir option of artifacts command compatible with v2 by [@​Brooooooklyn](https://togithub.com/Brooooooklyn ) in [https://github.com/napi-rs/napi-rs/pull/1850 ](https://togithub.com/napi-rs/napi-rs/pull/1850 )
- fix(binding): add riscv64 linux binding by [@​kxxt](https://togithub.com/kxxt ) in [https://github.com/napi-rs/napi-rs/pull/1851 ](https://togithub.com/napi-rs/napi-rs/pull/1851 )
**Full Changelog**: https://github.com/napi-rs/napi-rs/compare/napi-derive@2.14.3...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​3](https://togithub.com/3).0.0-alpha.17
### [`v3.0.0-alpha.16`](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.15...@napi-rs/cli@3.0.0-alpha.16 )
[Compare Source](https://togithub.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.0.0-alpha.15...@napi-rs/cli@3.0.0-alpha.16 )
</details>
<details>
<summary>nrwl/nx (@​nx/vite)</summary>
### [`v17.2.7`](https://togithub.com/nrwl/nx/releases/tag/17.2.7 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.6...17.2.7 )
##### 17.2.7
##### 🩹 Fixes
- **angular:** fix standalone eslint config generation
- **bundling:** added back code to handle skipTypeField option of rollup executor options + tests
- **linter:** ensure angular entry point checks are correct
- **nextjs:** enhance page generator to work when --project is not supplied
- **nextjs:** remove temporary patch for next eslint rules
- **nextjs:** correct inferred outputs for root Next.js projects
- **node:** E2E test port conflicts
- **release:** add overall nx release command
- **release:** publish error handling, dry-run in dependsOn
- **release:** capture all release titles during parse
- **testing:** run playwright with the correct project option for multiple values
- **testing:** safely handle circular deps in component testing plugin
- **testing:** set correct type for ignoreTestFiles option in cypress executor
- **vite:** vitest migration add reporters
- **vite:** more properly resolve arguments from configurations
- **vite:** dist and coverage paths for root projects
### [`v17.2.6`](https://togithub.com/nrwl/nx/releases/tag/17.2.6 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.5...17.2.6 )
##### 17.2.6
##### 🚀 Features
- **release:** support Revert commits in changelog renderer ([#​20663](https://togithub.com/nrwl/nx/pull/20663 ))
##### 🩹 Fixes
- **js:** fixing output based on test runner selection ([#​20788](https://togithub.com/nrwl/nx/pull/20788 ))
- **linter:** fix workspace-rule naming with flat config ([#​20782](https://togithub.com/nrwl/nx/pull/20782 ))
- **module-federation:** support buildable libs ([#​20786](https://togithub.com/nrwl/nx/pull/20786 ))
- **nextjs:** Page generator should work out of the box ([#​20775](https://togithub.com/nrwl/nx/pull/20775 ))
- **nx-dev:** dynamic classes not allowed ([#​20800](https://togithub.com/nrwl/nx/pull/20800 ))
- **release:** changelog renderer should prefer breaking change explanation text ([#​20798](https://togithub.com/nrwl/nx/pull/20798 ))
- **release:** ensure leading v is stripped from provided semver version ([#​20815](https://togithub.com/nrwl/nx/pull/20815 ))
- **vite:** only dynamically import vite ([#​20774](https://togithub.com/nrwl/nx/pull/20774 ))
##### ❤️ Thank You
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Isaac Mann [@​isaacplmann](https://togithub.com/isaacplmann )
- James Henry [@​JamesHenry](https://togithub.com/JamesHenry )
- Katerina Skroumpelou [@​mandarini](https://togithub.com/mandarini )
- Miroslav Jonaš [@​meeroslav](https://togithub.com/meeroslav )
- Nicholas Cunningham [@​ndcunningham](https://togithub.com/ndcunningham )
### [`v17.2.5`](https://togithub.com/nrwl/nx/releases/tag/17.2.5 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.4...17.2.5 )
#### 17.2.5
##### 🩹 Fixes
- **angular:** safely update task runner cacheable operations when setting up ssr ([#​20736](https://togithub.com/nrwl/nx/pull/20736 ))
- **core:** fallback to checking stderr if stdout is empty on publish executor ([#​20737](https://togithub.com/nrwl/nx/pull/20737 ))
- **core:** correctly move project and target strings ([#​20726](https://togithub.com/nrwl/nx/pull/20726 ))
- **linter:** move should migrate all eslint configs ([#​20709](https://togithub.com/nrwl/nx/pull/20709 ))
- **misc:** disallow path segments and allow scoped package name in --newProjectName option of move generator ([#​20768](https://togithub.com/nrwl/nx/pull/20768 ))
- **module-federation:** allow relative remote paths ([#​20763](https://togithub.com/nrwl/nx/pull/20763 ))
- **nextjs:** empty port should not overwrite env port ([#​20751](https://togithub.com/nrwl/nx/pull/20751 ))
- **nextjs:** Add missing setParserOptionProject ([#​20754](https://togithub.com/nrwl/nx/pull/20754 ))
- **react:** remove <base> tag from generated index.html ([#​20750](https://togithub.com/nrwl/nx/pull/20750 ))
- **react:** update default webpack config for component testing ([#​20749](https://togithub.com/nrwl/nx/pull/20749 ))
- **storybook:** do not throw for versions >=7 ([#​20770](https://togithub.com/nrwl/nx/pull/20770 ))
- **testing:** avoid overwriting environment variables in nx cypress preset ([#​20748](https://togithub.com/nrwl/nx/pull/20748 ))
- **vite:** allow vitest to be v1 ([#​20760](https://togithub.com/nrwl/nx/pull/20760 ))
##### ❤️ Thank You
- Colum Ferry [@​Coly010](https://togithub.com/Coly010 )
- Craigory Coppola [@​AgentEnder](https://togithub.com/AgentEnder )
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
- 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 )
### [`v17.2.4`](https://togithub.com/nrwl/nx/releases/tag/17.2.4 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.3...17.2.4 )
#### 17.2.4
##### 🩹 Fixes
- **webpack:** fix check for standardWebpackConfigFunction ([#​20728](https://togithub.com/nrwl/nx/pull/20728 ))
##### ❤️ Thank You
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
### [`v17.2.3`](https://togithub.com/nrwl/nx/releases/tag/17.2.3 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.2...17.2.3 )
#### 17.2.3
##### 🩹 Fixes
- **react:** skip adding comma to config when adding remote to host if… ([#​20620](https://togithub.com/nrwl/nx/pull/20620 ))
##### ❤️ Thank You
- Tórur Zachariasen [@​torurz](https://togithub.com/torurz )
### [`v17.2.2`](https://togithub.com/nrwl/nx/releases/tag/17.2.2 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.1...17.2.2 )
#### 17.2.2
##### 🩹 Fixes
- **core:** show warning if workspaceRoot starts with ! ([#​20705](https://togithub.com/nrwl/nx/pull/20705 ))
- **core:** properly handle negated paths in cache outputs ([#​20661](https://togithub.com/nrwl/nx/pull/20661 ))
- **react:** skip adding comma to config when adding remote to host if… ([#​20620](https://togithub.com/nrwl/nx/pull/20620 ))
- **vite:** ignore CJS build deprecated warning ([#​20719](https://togithub.com/nrwl/nx/pull/20719 ))
- **vite:** better extra args resolution ([#​20708](https://togithub.com/nrwl/nx/pull/20708 ))
- **webpack:** add standardWebpackConfigFunction option when users opts for a standard config function ([#​20702](https://togithub.com/nrwl/nx/pull/20702 ))
- **webpack:** handle both nx and nrwl scoped executors when migrating config ([#​20714](https://togithub.com/nrwl/nx/pull/20714 ))
##### ❤️ Thank You
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
- Jonathan Cammisuli
- Katerina Skroumpelou [@​mandarini](https://togithub.com/mandarini )
- Tórur Zachariasen [@​torurz](https://togithub.com/torurz )
### [`v17.2.1`](https://togithub.com/nrwl/nx/releases/tag/17.2.1 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.2.0...17.2.1 )
#### 17.2.1
##### 🩹 Fixes
- **angular:** add missing package update for [@​angular/pwa](https://togithub.com/angular/pwa ) ([#​20690](https://togithub.com/nrwl/nx/pull/20690 ))
- **react:** webpack backwards compat for `@nx/react/plugin/webpack` ([#​20697](https://togithub.com/nrwl/nx/pull/20697 ))
- **vite:** config migration account for other syntaxes ([#​20693](https://togithub.com/nrwl/nx/pull/20693 ))
- **webpack:** migrate projects without webpackConfig to use webpack.config.js ([#​20699](https://togithub.com/nrwl/nx/pull/20699 ))
- **webpack:** fixed `isolatedConfig: false` option not composing plugins ([#​20678](https://togithub.com/nrwl/nx/pull/20678 ))
##### ❤️ Thank You
- Jack Hsu [@​jaysoo](https://togithub.com/jaysoo )
- Katerina Skroumpelou [@​mandarini](https://togithub.com/mandarini )
- Leosvel Pérez Espinosa [@​leosvelperez](https://togithub.com/leosvelperez )
- Tycho Bokdam [@​TriPSs](https://togithub.com/TriPSs )
### [`v17.2.0`](https://togithub.com/nrwl/nx/releases/tag/17.2.0 )
[Compare Source](https://togithub.com/nrwl/nx/compare/17.1.3...17.2.0 )
#### 17.2.0
##### 🚀 Features
- **angular:** update component generator to use a single string `styles` or `styleUrl` property ([#​20146](https://togithub.com/nrwl/nx/pull/20146 ))
- **angular:** support application builder for cypress component testing ([#​20214](https://togithub.com/nrwl/nx/pull/20214 ))
- **angular:** update ngrx to v17 ([#​20247](https://togithub.com/nrwl/nx/pull/20247 ))
- **angular:** support esbuild-based executors/builders in [@​nx/angular](https://togithub.com/nx/angular ):dev-server ([#​20311](https://togithub.com/nrwl/nx/pull/20311 ))
- **angular:** convert module-federation-dev-server to executor ([#​20252](https://togithub.com/nrwl/nx/pull/20252 ))
- **angular:** support providing esbuild plugins to [@​nx/angular](https://togithub.com/nx/angular ):browser-esbuild ([#​20504](https://togithub.com/nrwl/nx/pull/20504 ))
- **angular:** add application executor ([#​20529](https://togithub.com/nrwl/nx/pull/20529 ))
- **core:** extglob to standard glob parser ([#​20089](https://togithub.com/nrwl/nx/pull/20089 ))
- **core:** make createNodes async ([#​20195](https://togithub.com/nrwl/nx/pull/20195 ))
- **core:** track project changes in source map when applying plugins ([#​19955](https://togithub.com/nrwl/nx/pull/19955 ))
- **core:** independent nx releases and automated git operations ([#​20191](https://togithub.com/nrwl/nx/pull/20191 ))
- **core:** rust task hasher ([#​19617](https://togithub.com/nrwl/nx/pull/19617 ))
- **core:** programmatic API for nx release ([#​20371](https://togithub.com/nrwl/nx/pull/20371 ))
- **core:** allow setting true for changelog config to enable with defaults ([#​20376](https://togithub.com/nrwl/nx/pull/20376 ))
- **core:** add env parameter to run-commands ([#​20440](https://togithub.com/nrwl/nx/pull/20440 ))
- **core:** introduce workspace file archive ([#​20471](https://togithub.com/nrwl/nx/pull/20471 ))
- **core:** targets inferred from plugins override targetDefaults ([#​20586](https://togithub.com/nrwl/nx/pull/20586 ))
- **core:** add task plans to `--graph=file.json` argument ([#​20643](https://togithub.com/nrwl/nx/pull/20643 ))
- **graph:** add project details view ([#​20466](https://togithub.com/nrwl/nx/pull/20466 ))
- **linter:** update eslint to next minor version ([#​20351](https://togithub.com/nrwl/nx/pull/20351 ))
- **linter:** support yaml for flat config conversion ([#​20022](https://togithub.com/nrwl/nx/pull/20022 ))
- **linter:** default lintFilePatterns to {projectRoot} ([#​20313](https://togithub.com/nrwl/nx/pull/20313 ))
- **linter:** add create-nodes plugin ([#​20264](https://togithub.com/nrwl/nx/pull/20264 ))
- **misc:** allow providing a path in the name option of project generators ([#​20274](https://togithub.com/nrwl/nx/pull/20274 ))
- **module-federation:** use single file-server for static remotes ([#​20006](https://togithub.com/nrwl/nx/pull/20006 ))
- **module-federation:** add comment to generated module federation config explaining usage of external remotes ([#​20177](https://togithub.com/nrwl/nx/pull/20177 ))
- **module-federation:** Add react support for dynamic federation ([#​20024](https://togithub.com/nrwl/nx/pull/20024 ))
- **nextjs:** Add support for create nodes for nextjs ([#​20193](https://togithub.com/nrwl/nx/pull/20193 ))
- **nuxt:** load nuxt config programmatically ([#​20185](https://togithub.com/nrwl/nx/pull/20185 ))
- **nuxt:** nodes for build, serve, test targets ([#​20145](https://togithub.com/nrwl/nx/pull/20145 ))
- **nx-dev:** call to action button ([b9e02d152b](https://togithub.com/nrwl/nx/commit/b9e02d152b ))
- **nx-dev:** move Twitter pixel to site-level ([059b061bfe](https://togithub.com/nrwl/nx/commit/059b061bfe ))
- **nx-dev:** allow ranges in fences highlighting ([#​20202](https://togithub.com/nrwl/nx/pull/20202 ))
- **nx-dev:** rename nx-cloud tab to CI ([#​20476](https://togithub.com/nrwl/nx/pull/20476 ))
- **nx-dev:** improve advent of code page ([#​20517](https://togithub.com/nrwl/nx/pull/20517 ))
- **nx-dev:** allow custom media images ([#​20561](https://togithub.com/nrwl/nx/pull/20561 ))
- **release:** update dist-tags when publishing a package version that already exists ([#​20316](
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuMTAzLjEiLCJ0YXJnZXRCcmFuY2giOiJjYW5hcnkifQ==-->
2023-12-28 08:00:13 +00:00
EYHN
0b9cd00fd3
refactor(core): adjust graphql hook ( #5339 )
2023-12-28 07:43:25 +00:00
Cats Juice
7e75e19d04
style(core): add font smoothing and optimize legibility globally ( #5417 )
...

2023-12-28 07:34:20 +00:00
LongYinan
3148f93ee7
style: add perf rules ( #5413 )
2023-12-28 05:09:30 +00:00
LongYinan
4fcf589fe7
chore: bump up opentelemetry to ^0.46.0 ( #5305 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | 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.45.1` -> `^0.46.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fexporter-prometheus/0.45.1/0.46.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@opentelemetry/instrumentation](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation ) ([source](https://togithub.com/open-telemetry/opentelemetry-js )) | [`^0.45.1` -> `^0.46.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation/0.45.1/0.46.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@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.45.1` -> `^0.46.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-http/0.45.1/0.46.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [@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.45.1` -> `^0.46.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fsdk-node/0.45.1/0.46.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>open-telemetry/opentelemetry-js (@​opentelemetry/exporter-prometheus)</summary>
### [`v0.46.0`](f665499096...d3c311aec2 )
[Compare Source](f665499096...d3c311aec2 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-27 15:35:17 +00:00
Joooye_34
6b9f77f511
feat(core): set document title when detail page render ( #5418 )
2023-12-27 15:25:26 +00:00
DarkSky
a6f5a03b8a
docs: update guide for build in windows ( #5416 )
2023-12-27 09:21:32 +00:00
Peng Xiao
0c64535e41
fix(infra): remove unused svg loader ( #5398 )
2023-12-27 09:00:37 +00:00
EYHN
86bd2a7d72
refactor(infra): no bundle infra ( #5414 )
2023-12-27 06:54:24 +00:00
EYHN
4e861d8118
refactor(electron): create electron api package ( #5334 )
2023-12-27 06:38:37 +00:00
Peng Xiao
ce17daba42
fix(core): enable page history for beta/stable ( #5415 )
2023-12-27 06:30:29 +00:00
EYHN
7a770f9672
fix(component): fix font display on safari ( #5393 )
...
before

after

2023-12-27 04:37:30 +00:00
EYHN
265ee81666
refactor(infra): remove old plugin system ( #5411 )
...
plugin system need redesign
2023-12-27 02:49:59 +00:00
LongYinan
3903a1c1d6
ci: update actions/upload-artifact and actions/download-artifact ( #5408 )
2023-12-26 12:40:10 +00:00
Peng Xiao
c02ec5f7b9
fix(infra): workaround for self-referencing in storybook ( #5406 )
2023-12-26 20:27:20 +08:00
JimmFly
62fbab4f78
fix(core): avatars are not aligned ( #5404 )
2023-12-26 20:23:28 +08:00
LongYinan
cb4f6d30af
chore: bump up react-i18next version to v14 ( #5375 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [react-i18next](https://togithub.com/i18next/react-i18next ) | [`^13.3.0` -> `^14.0.0`](https://renovatebot.com/diffs/npm/react-i18next/13.5.0/14.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>i18next/react-i18next (react-i18next)</summary>
### [`v14.0.0`](https://togithub.com/i18next/react-i18next/blob/HEAD/CHANGELOG.md#1400 )
[Compare Source](https://togithub.com/i18next/react-i18next/compare/v13.5.0...v14.0.0 )
- types: reportNamespaces is now optional, should fix [1693](https://togithub.com/i18next/react-i18next/issues/1693 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2023-12-26 08:32:07 +00:00
LongYinan
8042140fe8
chore: bump up @types/supertest version to v6 ( #5376 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@types/supertest](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/supertest ) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/supertest )) | [`^2.0.16` -> `^6.0.0`](https://renovatebot.com/diffs/npm/@types%2fsupertest/2.0.16/6.0.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2023-12-26 08:20:35 +00:00
Peng Xiao
285d2a7219
fix(core): trash page footer display issue ( #5402 )
...
Before

After

2023-12-26 08:07:17 +00:00
Joooye_34
60fe5f0e87
fix(electron): set stable base url to app.affine.pro ( #5401 )
...
close TOV-282
2023-12-26 07:57:03 +00:00
Peng Xiao
fafcfbce6d
fix(core): about setting blink issue ( #5399 )
2023-12-26 07:47:11 +00:00
Peng Xiao
c59a6a833c
fix(core): workpace list blink issue on open ( #5400 )
2023-12-26 07:37:41 +00:00
Joooye_34
3024b5cc63
ci: define tag name to fix nightly release failing ( #5397 )
2023-12-26 07:24:30 +00:00
JimmFly
f25814b31c
chore(core): add background color to questionnaire ( #5396 )
2023-12-26 07:13:44 +00:00
Cats Juice
080f636c1f
fix(core): correct title of onboarding article-2 ( #5387 )
2023-12-26 07:01:34 +00:00
LongYinan
03b68e2654
chore: bump up @vitejs/plugin-vue version to v5 ( #5394 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@vitejs/plugin-vue](https://togithub.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme ) ([source](https://togithub.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue )) | [`^4.4.0` -> `^5.0.0`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.5.0/5.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>vitejs/vite-plugin-vue (@​vitejs/plugin-vue)</summary>
### [`v5.0.0`](https://togithub.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#500-2023-12-25 )
- **Breaking:** drop `reactivityTransform` support
- **Breaking:** drop Node 14/16 support
- **Breaking:** drop Vite 4.x support
- Vue 3.4 template AST reuse support
- Vue 3.4 compile-time flag `__VUE_PROD_HYDRATION_MISMATCH_DETAILS__` support
- Added `customElement` option
- Deprecated `defineModel` option
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2023-12-26 06:50:27 +00:00
Peng Xiao
972de52833
fix(core): remove plugins settings ( #5337 )
...
depend on https://github.com/toeverything/AFFiNE/pull/5324
2023-12-26 06:21:59 +00:00
DarkSky
555d40c3da
fix: use prefix in electron to prevent formdata bug ( #5395 )
2023-12-25 15:14:08 +00:00
EYHN
7fcdb7a153
fix(core): fix flickering workspace list ( #5391 )
2023-12-25 07:09:49 +00:00
EYHN
56f0580382
fix(workspace): fix svg file with xml header ( #5388 )
2023-12-25 06:58:11 +00:00
EYHN
9493bd99f9
refactor(infra): move currentPageAtom to core ( #5332 )
...
Remove `currentPageAtom` from `infra` to `frontend/core.`
2023-12-25 03:34:28 +00:00
EYHN
e1bd13a018
refactor(core): remove adapter ( #5324 )
...
workspace adapter is no longer used.
2023-12-25 03:34:22 +00:00
EYHN
05025bf59a
refactor(core): remove outline plugin and layout atom ( #5326 )
...
@affine/outline is no longer used, this PR deletes this plugin and deletes the code that is no longer used
2023-12-25 03:24:13 +00:00
regischen
a10aeca820
feat: bump blocksuite ( #5386 )
2023-12-22 18:04:05 +08:00
EYHN
8b28761a8a
fix(component): fix workspace input ( #5381 )
2023-12-22 08:26:14 +00:00
EYHN
77d239ff81
fix(workspace): leave workspace correctly ( #5379 )
2023-12-22 16:17:59 +08:00
Cats Juice
1ce4dd0497
fix(core): hide onboarding paper segments gap ( #5384 )
2023-12-22 15:49:43 +08:00
EYHN
aa74b0617c
fix(workspace): dont upgrade subdoc on cloud ( #5382 )
2023-12-22 15:48:54 +08:00
Joooye_34
46f824c4e9
fix: input style priority ( #5383 )
2023-12-22 15:48:28 +08:00
EYHN
f11ea7570a
fix(core): maxWait for sync progress debounce ( #5377 )
2023-12-22 03:28:24 +00:00
Flrande
a08edfd6d9
feat: bump blocksuite ( #5374 )
2023-12-22 03:17:57 +00:00
DarkSky
06912c6885
fix: websocket prefix ( #5372 )
2023-12-21 15:52:05 +00:00
Joooye_34
ec7f73f168
chore: catch and ignore page upgrade error ( #5373 )
2023-12-21 14:27:07 +00:00
Joooye_34
cfb77e8243
chore: fix about version in client ( #5371 )
2023-12-21 14:15:22 +00:00
DarkSky
aa4d42b36c
feat: use baseurl from server config ( #5369 )
2023-12-21 12:52:38 +00:00
Joooye_34
9fbd9b39d6
ci: set version correctly and remove nightly build workflow ( #5367 )
2023-12-21 10:00:12 +00:00
Cats Juice
aeec68b0d7
fix(core): onboading tooltip next button always shows ( #5363 )
2023-12-21 08:09:37 +00:00
Joooye_34
fb1ed90ecc
ci: use setup version action to init version ( #5365 )
...
1. Create setup version action to unify version initialization
2. Split tag event from release desktop
3. Add schedule to daily deploy and desktop release
2023-12-21 07:58:16 +00:00
LongYinan
cc73124259
chore: bump up @react-hookz/web version to v24 ( #5359 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@react-hookz/web](https://togithub.com/react-hookz/web ) | [`^23.1.0` -> `^24.0.0`](https://renovatebot.com/diffs/npm/@react-hookz%2fweb/23.1.0/24.0.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>react-hookz/web (@​react-hookz/web)</summary>
### [`v24.0.1`](https://togithub.com/react-hookz/web/blob/HEAD/CHANGELOG.md#2401-2023-12-20 )
[Compare Source](https://togithub.com/react-hookz/web/compare/v24.0.0...v24.0.1 )
##### Bug Fixes
- change build so development and distributed imports match ([6383cdd](6383cdd558 ))
### [`v24.0.0`](https://togithub.com/react-hookz/web/blob/HEAD/CHANGELOG.md#2400-2023-12-20 )
[Compare Source](https://togithub.com/react-hookz/web/compare/v23.1.0...v24.0.0 )
##### Features
- switch package to module type ([#​1472](https://togithub.com/react-hookz/web/issues/1472 )) ([50921ef](50921efda5 ))
##### BREAKING CHANGES
- Hooks are now distrubutes as JS built form TS with target ESNext and ESM module resolution. There is no more sense to distribute CJS version as package is ESM-only.
Consequent of above - no more esm and cjs subfolders - hooks are importable from index.js or its own directory which don't have a prefix anymore, thanks to exports directive. All of below examples will lead to same result, choose any on your taste:
import { useFirstMountState } from '[@​react-hookz/web](https://togithub.com/react-hookz/web )';
import { useFirstMountState } from '@​react-hookz/web/';
import { useFirstMountState } from '@​react-hookz/web/useFirstMountState/';
import { useFirstMountState } from '@​react-hookz/web/useFirstMountState/index.js';
Thought is seems not to have subfolder, it is only due to exports directive, in real it is
@​react-hookz/web/dist/useFirstMountState/index.js.
Pakage uses imports directive to define path alias #root - it stays so even in distributed code, thus, some may be affected in case their bundler configured to somehow handle such alias. Those developer shoud configure import rewriter not to handle node_modules or [@​react-hookz/web](https://togithub.com/react-hookz/web ) package exclusively.
Side-effect for current PR - documentation is broken, as storybook 6 is not working within ESM packages and I'm planning to switch to another domenting engine anyway.
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2023-12-21 07:45:32 +00:00
Cats Juice
c2db8b356c
feat(electron): handle onboarding-window moved between screens ( #5345 )
2023-12-21 15:44:21 +08:00
LongYinan
eaa62df2dd
chore: bump up eslint-plugin-unicorn version to v50 ( #5362 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint-plugin-unicorn](https://togithub.com/sindresorhus/eslint-plugin-unicorn ) | [`^49.0.0` -> `^50.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-unicorn/49.0.0/50.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>sindresorhus/eslint-plugin-unicorn (eslint-plugin-unicorn)</summary>
### [`v50.0.0`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/releases/tag/v50.0.0 )
[Compare Source](https://togithub.com/sindresorhus/eslint-plugin-unicorn/compare/v49.0.0...v50.0.0 )
##### New rules
- [`no-unnecessary-polyfills`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-unnecessary-polyfills.md ) ([#​1717](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/1717 )) [`6788d86`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/6788d86 )
##### Improvements
- Support ESLint's new config system ([#​1886](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/1886 )) [`65711f9`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/65711f9 )
- `no-useless-undefined`: Add `checkArrowFunctionBody` option ([#​2232](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2232 )) [`9d7048c`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/9d7048c )
- `prefer-negative-index`: Check `TypedArray#subarray()` ([#​2237](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2237 )) [`6708a30`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/6708a30 )
- `no-useless-undefined`: Ignore React state setters ([#​2223](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2223 )) [`42881ba`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/42881ba )
- `prefer-module`: Allow `module` as TSTypeParameter name ([#​2213](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2213 )) [`8f61f7c`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/8f61f7c )
##### Fixes
- `string-content`: Fix JSX autofix for newlines, etc. ([#​2222](https://togithub.com/sindresorhus/eslint-plugin-unicorn/issues/2222 )) [`b95e75e`](https://togithub.com/sindresorhus/eslint-plugin-unicorn/commit/b95e75e )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5In0=-->
2023-12-21 07:23:11 +00:00
JimmFly
332a5c6685
chore(core): temporarily hide export png and pdf in edgeless ( #5364 )
2023-12-21 07:13:05 +00:00
Cats Juice
34c1d2a674
feat(core): responsive for onboarding ( #5361 )
...
fix(core): use light-theme for onboarding back button
feat(core): responsive for onboarding
2023-12-21 04:27:49 +00:00
Chen
4dc41fcd09
feat: bump blocksuite ( #5357 )
2023-12-21 12:22:39 +08:00
Peng Xiao
bfbdde212f
fix(storybook): disable onboarding for storybook ( #5351 )
2023-12-21 03:11:44 +00:00
EYHN
fcc3e9e069
feat(core): add syncing progress ( #5356 )
...

2023-12-20 09:25:06 +00:00
JimmFly
9981c24120
fix(core): escape special characters for cmdk item values ( #5353 )
...

2023-12-20 08:20:21 +00:00
Joooye_34
a4f31df192
chore: update basic version to 0.11.0 ( #5355 )
2023-12-20 08:10:42 +00:00
Joooye_34
80eeb2ddc7
feat: only follow serverUrlPrefix at redirect to client ( #5295 ) ( #5354 )
...
feat: only follow `serverUrlPrefix` at redirect to client (#5295 )
fix: use secure websocket (#5297 )
2023-12-20 07:52:57 +00:00
LongYinan
800ea0abf1
fix(core): remove ses lockdown ( #5350 )
2023-12-20 04:11:34 +00:00
Joooye_34
e3882f9648
feat: bump bs ( #5346 )
...
Change history: a781985...8254dc9
2023-12-20 02:43:01 +00:00
LongYinan
30e62bd2c6
fix(core): downgrade ses ( #5347 )
...
ses@1 makes [this line](https://github.com/lit/lit/blob/lit-html%403.1.0/packages/reactive-element/src/reactive-element.ts#L406 ) throw an error: `TypeError: Cannot add property metadata, object is not extensible.`
2023-12-20 02:28:58 +00:00
DarkSky
33a589a8ba
feat: onboarding electron redirect ( #5327 )
2023-12-19 13:54:43 +00:00
DarkSky
8ea910a2bb
feat: onboarding page ( #5277 )
2023-12-19 13:54:41 +00:00
Yifeng Wang
31b1b2dade
feat: bump blocksuite ( #5343 )
2023-12-19 21:53:57 +08:00
LongYinan
36653e79d2
fix(core): dedupe ses versions ( #5342 )
2023-12-19 13:31:37 +00:00
Cats Juice
197d1d4136
feat(core): adjust ui for new design ( #5322 )
...
feat(core): add bg and hover state for onboarding
feat(core): adjust onboarding styles for web
feat(core): add get started page for onboarding
2023-12-19 10:28:11 +00:00
LongYinan
07f10f55bf
fix: cargo deps security alert ( #5340 )
...
- Close https://github.com/toeverything/AFFiNE/security/dependabot/55
2023-12-19 10:17:03 +00:00
LongYinan
6ca725343a
chore: bump up ses version to v1 ( #5282 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ses](https://togithub.com/Agoric/SES-shim/tree/master/packages/ses#readme ) ([source](https://togithub.com/endojs/endo )) | [`^0.18.8` -> `^1.0.0`](https://renovatebot.com/diffs/npm/ses/0.18.8/1.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>endojs/endo (ses)</summary>
### [`v1.0.0`](https://togithub.com/endojs/endo/compare/ses@0.18.8...ses@1.0.0 )
[Compare Source](https://togithub.com/endojs/endo/compare/ses@0.18.8...ses@1.0.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-19 09:41:44 +00:00
Peng Xiao
d03567f689
fix(electron): onboarding display issue on Windows ( #5320 )
2023-12-19 09:32:12 +00:00
Peng Xiao
128f8066c3
fix(electron): main window should be opened first before destroying onboard window ( #5319 )
...
The issue listed on the title will prevent main window from showing on windows.
2023-12-19 09:22:44 +00:00
Cats Juice
e10609276d
feat(core): add toggle workspace dialog ( #5312 )
2023-12-19 09:12:26 +00:00
3720
b9345e8d21
fix(core): collections initialized logic ( #5310 )
...
Collections YArray should be initialized only when the user operates on it, local state can't be trusted
2023-12-19 09:02:01 +00:00
Cats Juice
55818539af
feat(core): basic page/edgeless toggle animation ( #5283 )
2023-12-19 08:48:54 +00:00
JimmFly
4b0ca06d80
feat(core): adjust empty favourites style ( #5323 )
...
close TOV-147
2023-12-19 08:37:35 +00:00
JimmFly
38617abc17
fix(component): fix incorrect input component width and height styling ( #5292 )
...
after:
https://github.com/toeverything/AFFiNE/assets/102217452/5d8f51c5-c7a6-4ec8-b2b0-7f1391f045c7
2023-12-19 08:27:46 +00:00
Cats Juice
d9f1cc60b9
feat(core): onboarding paper unfolding animation ( #5264 )
2023-12-19 07:18:06 +00:00
Cats Juice
841385666e
feat(core): onboarding paper enter animation ( #5248 )
2023-12-19 07:18:00 +00:00
Cats Juice
15dd20ef48
feat(electron): onboarding at first launch logic for client and web ( #5183 )
...
- Added a simple abstraction of persistent storage class.
- Different persistence solutions are provided for web and client.
- web: stored in localStorage
- client: stored in the application directory as `.json` file
- Define persistent app-config schema
- Add a new hook that can interactive with persistent-app-config reactively
2023-12-19 07:17:54 +00:00
DarkSky
e0d328676d
feat: add quota for old users ( #5318 )
2023-12-19 07:06:26 +00:00
JimmFly
6748e7ba42
chore(server): remove early access tips from invitation emails ( #5314 )
...
close TOV-177
2023-12-19 06:56:22 +00:00
Peng Xiao
a815fd6b9a
feat(core): ai poc ( #5317 )
2023-12-19 05:13:29 +00:00
Peng Xiao
408b84109b
fix(storybook): disable cloud for storybook ( #5330 )
2023-12-19 02:07:17 +00:00
EYHN
c7fe42a5b9
chore: bump up vitest monorepo to v1 (major) ( #5217 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | 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 )) | [`0.34.6` -> `1.0.4`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-istanbul/0.34.6/1.0.4 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](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 )) | [`0.34.6` -> `1.0.4`](https://renovatebot.com/diffs/npm/@vitest%2fui/0.34.6/1.0.4 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [vitest](https://togithub.com/vitest-dev/vitest ) ([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/vitest )) | [`0.34.6` -> `1.0.4`](https://renovatebot.com/diffs/npm/vitest/0.34.6/1.0.4 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>vitest-dev/vitest (@​vitest/coverage-istanbul)</summary>
### [`v1.0.4`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.0.4 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.0.3...v1.0.4 )
The previous release was built incorrectly and didn't include the performance fix. This release fixes that.
##### 🐞 Bug Fixes
- **cli**: `--coverage.all=false` resolved incorrectly - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4697 ](https://togithub.com/vitest-dev/vitest/issues/4697 ) [<samp>(a7931)</samp>](https://togithub.com/vitest-dev/vitest/commit/a7931bbf )
##### 🏎 Performance
- **reporters**: Downgrade `log-update` to v5 - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4711 ](https://togithub.com/vitest-dev/vitest/issues/4711 ) [<samp>(13ff9)</samp>](https://togithub.com/vitest-dev/vitest/commit/13ff97a3 )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.0.3...v1.0.4 )
### [`v1.0.3`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.0.3 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.0.2...v1.0.3 )
##### 🐞 Bug Fixes
- Correct package exports - by [@​userquin](https://togithub.com/userquin ) in [https://github.com/vitest-dev/vitest/issues/4707 ](https://togithub.com/vitest-dev/vitest/issues/4707 ) [<samp>(37388)</samp>](https://togithub.com/vitest-dev/vitest/commit/37388d69 )
- **runner**: Fix async fixture teardown - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4700 ](https://togithub.com/vitest-dev/vitest/issues/4700 ) [<samp>(92afd)</samp>](https://togithub.com/vitest-dev/vitest/commit/92afd54c )
- **vitest**: Correctly filter changed files when Vitest workspace is used - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4693 ](https://togithub.com/vitest-dev/vitest/issues/4693 ) [<samp>(34135)</samp>](https://togithub.com/vitest-dev/vitest/commit/3413518b )
##### 🏎 Performance
- **reporters**: Downgrade `log-update` to v5 - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4711 ](https://togithub.com/vitest-dev/vitest/issues/4711 ) [<samp>(13ff9)</samp>](https://togithub.com/vitest-dev/vitest/commit/13ff97a3 )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.0.2...v1.0.3 )
### [`v1.0.2`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.0.2 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.0.1...v1.0.2 )
##### 🐞 Bug Fixes
- Don't check if vite is installed - by [@​wojtekmaj](https://togithub.com/wojtekmaj ) in [https://github.com/vitest-dev/vitest/issues/4659 ](https://togithub.com/vitest-dev/vitest/issues/4659 ) [<samp>(775e2)</samp>](https://togithub.com/vitest-dev/vitest/commit/775e2014 )
- Fix ensurePackageInstalled on Yarn PnP - by [@​wojtekmaj](https://togithub.com/wojtekmaj ) in [https://github.com/vitest-dev/vitest/issues/4657 ](https://togithub.com/vitest-dev/vitest/issues/4657 ) [<samp>(574cc)</samp>](https://togithub.com/vitest-dev/vitest/commit/574cc7d0 )
- Apply `stripSnapshotIndentation` for thrown snapshot - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4663 ](https://togithub.com/vitest-dev/vitest/issues/4663 ) [<samp>(74820)</samp>](https://togithub.com/vitest-dev/vitest/commit/748205dc )
- **cli**:
- Prompted packages fail to install - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4593 ](https://togithub.com/vitest-dev/vitest/issues/4593 ) [<samp>(a9908)</samp>](https://togithub.com/vitest-dev/vitest/commit/a9908453 )
- **expect**:
- Apply `URL` equality check only when `URL` is available - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4670 ](https://togithub.com/vitest-dev/vitest/issues/4670 ) [<samp>(43783)</samp>](https://togithub.com/vitest-dev/vitest/commit/43783cfe )
- **runner**:
- Improve fixture error messages - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4673 ](https://togithub.com/vitest-dev/vitest/issues/4673 ) [<samp>(1e4aa)</samp>](https://togithub.com/vitest-dev/vitest/commit/1e4aa8e4 )
- Fix fixture cleanup when test times out - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4679 ](https://togithub.com/vitest-dev/vitest/issues/4679 ) [<samp>(e7c5e)</samp>](https://togithub.com/vitest-dev/vitest/commit/e7c5e1f7 )
- **vitest**:
- Support new Request('/api') in happy-dom - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4671 ](https://togithub.com/vitest-dev/vitest/issues/4671 ) [<samp>(6e6ee)</samp>](https://togithub.com/vitest-dev/vitest/commit/6e6ee10e )
- Skip processing getter in auto-mocked constructor call - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4677 ](https://togithub.com/vitest-dev/vitest/issues/4677 ) [<samp>(cb786)</samp>](https://togithub.com/vitest-dev/vitest/commit/cb7864aa )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.0.1...v1.0.2 )
### [`v1.0.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.0.1 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.0.0...v1.0.1 )
##### 🐞 Bug Fixes
- Bump vitest packages `peerDependencies` versions - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4654 ](https://togithub.com/vitest-dev/vitest/issues/4654 ) [<samp>(42070)</samp>](https://togithub.com/vitest-dev/vitest/commit/420707fc )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.0.0...v1.0.1 )
### [`v1.0.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.0.0 )
[Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.34.6...v1.0.0 )
Vitest 1.0 is here! This release page lists all changes made to the project during the beta. For the migration guide, please refer to the [documentation](https://vitest.dev/guide/migration.html#migrating-from-vitest-0-34-6 ).
##### 🚨 Breaking Changes
- Add support for `pool` and `poolOptions`, remove old flags - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4172 ](https://togithub.com/vitest-dev/vitest/issues/4172 ) [<samp>(114a9)</samp>](https://togithub.com/vitest-dev/vitest/commit/114a993c )
- Support multiple parallel `child_process` - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/3925 ](https://togithub.com/vitest-dev/vitest/issues/3925 ) [<samp>(8b4a4)</samp>](https://togithub.com/vitest-dev/vitest/commit/8b4a44ad )
- Make snapshots more visually pleasing by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/pull/3961 ](https://togithub.com/vitest-dev/vitest/pull/3961 )
- Set `vitest` peer dependency range for sub packages - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4299 ](https://togithub.com/vitest-dev/vitest/issues/4299 ) [<samp>(cd03c)</samp>](https://togithub.com/vitest-dev/vitest/commit/cd03cb51 )
- Bump minimum node version to 18 and match Vite 5 requirement - by [@​ghiscoding](https://togithub.com/ghiscoding ) in [https://github.com/vitest-dev/vitest/issues/4296 ](https://togithub.com/vitest-dev/vitest/issues/4296 ) [<samp>(263b7)</samp>](https://togithub.com/vitest-dev/vitest/commit/263b7167 )
- Remove deprecated node loader - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4371 ](https://togithub.com/vitest-dev/vitest/issues/4371 ) [<samp>(29299)</samp>](https://togithub.com/vitest-dev/vitest/commit/29299f3c )
- Move browser providers to [@​vitest/browser](https://togithub.com/vitest/browser ) package - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4364 ](https://togithub.com/vitest-dev/vitest/issues/4364 ) [<samp>(5cdeb)</samp>](https://togithub.com/vitest-dev/vitest/commit/5cdeb558 )
- Remove EnhancedSpy type, deprecate SpyInstance, improve mocks and vi documentation - by [@​sheremet-va](https://togithub.com/sheremet-va ) and [@​dammy001](https://togithub.com/dammy001 ) in [https://github.com/vitest-dev/vitest/issues/4400 ](https://togithub.com/vitest-dev/vitest/issues/4400 ) [<samp>(d40b3)</samp>](https://togithub.com/vitest-dev/vitest/commit/d40b3a58 )
- `expect().toContain()` can handle classList, Node.contains, and any array-like structure. This means you cannot use it to check if one object is a subset of another - use `expect().toMatchObject()` in that case - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4239 ](https://togithub.com/vitest-dev/vitest/issues/4239 ) [<samp>(ce84f)</samp>](https://togithub.com/vitest-dev/vitest/commit/ce84f069 )
- **runner**: Correctly process custom tasks, update runner hooks naming by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/pull/4076 ](https://togithub.com/vitest-dev/vitest/pull/4076 )
- **coverage**:
- glob based coverage thresholds by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/pull/4442 ](https://togithub.com/vitest-dev/vitest/pull/4442 ) [<samp>(18300)</samp>](4953410e8d )
- Use `transformMode` and workspace project based source maps - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4309 ](https://togithub.com/vitest-dev/vitest/issues/4309 ) [<samp>(28109cc)</samp>](https://togithub.com/vitest-dev/vitest/commit/28109cc )
- Enable `coverage.all` by default - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4265 ](https://togithub.com/vitest-dev/vitest/issues/4265 ) [<samp>(5a741)</samp>](https://togithub.com/vitest-dev/vitest/commit/5a741ca2 )
##### 🚀 Features
- Add Marko example and include code coverage for Marko files - by [@​DylanPiercey](https://togithub.com/DylanPiercey ) in [https://github.com/vitest-dev/vitest/issues/4263 ](https://togithub.com/vitest-dev/vitest/issues/4263 ) [<samp>(eac77)</samp>](https://togithub.com/vitest-dev/vitest/commit/eac77765 )
- Update magic-string - by [@​bluwy](https://togithub.com/bluwy ) in [https://github.com/vitest-dev/vitest/issues/4345 ](https://togithub.com/vitest-dev/vitest/issues/4345 ) [<samp>(fde18)</samp>](https://togithub.com/vitest-dev/vitest/commit/fde1843e )
- Implement provide/inject API to transfer data from the main thread - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4422 ](https://togithub.com/vitest-dev/vitest/issues/4422 ) [<samp>(a7522)</samp>](https://togithub.com/vitest-dev/vitest/commit/a75228f1 )
- Improve expectTypeOf error messages - by [@​mmkal](https://togithub.com/mmkal ), **Misha Kaletsky** and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4206 ](https://togithub.com/vitest-dev/vitest/issues/4206 ) [<samp>(18300)</samp>](https://togithub.com/vitest-dev/vitest/commit/183005e9 )
- Add test.sequential() api - by [@​dsyddall](https://togithub.com/dsyddall ) in [https://github.com/vitest-dev/vitest/issues/4512 ](https://togithub.com/vitest-dev/vitest/issues/4512 ) [<samp>(c3619)</samp>](https://togithub.com/vitest-dev/vitest/commit/c3619c78 )
- Allow custom pools - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4417 ](https://togithub.com/vitest-dev/vitest/issues/4417 ) [<samp>(a3fd5)</samp>](https://togithub.com/vitest-dev/vitest/commit/a3fd5f85 )
- Add --project option to limit what projects are running - by [@​sheremet-va](https://togithub.com/sheremet-va ), [@​dammy001](https://togithub.com/dammy001 ) and [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4561 ](https://togithub.com/vitest-dev/vitest/issues/4561 ) [<samp>(58ef5)</samp>](https://togithub.com/vitest-dev/vitest/commit/58ef51a9 )
- **benchmark**:
- Move importTinybench to runner - by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/vitest-dev/vitest/issues/4376 ](https://togithub.com/vitest-dev/vitest/issues/4376 ) [<samp>(c36d2)</samp>](https://togithub.com/vitest-dev/vitest/commit/c36d2b97 )
- **browser**:
- Support "none" provider and update lit example to use it - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4427 ](https://togithub.com/vitest-dev/vitest/issues/4427 ) [<samp>(d03a2)</samp>](https://togithub.com/vitest-dev/vitest/commit/d03a2a21 )
- **coverage**:
- Support `/* v8 ignore...` ignore hints - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4573 ](https://togithub.com/vitest-dev/vitest/issues/4573 ) [<samp>(f9e4a)</samp>](https://togithub.com/vitest-dev/vitest/commit/f9e4ad83 )
- **expect**:
- Support `expect.closeTo` api - by [@​Dunqing](https://togithub.com/Dunqing ) and **golebiowskib** in [https://github.com/vitest-dev/vitest/issues/4260 ](https://togithub.com/vitest-dev/vitest/issues/4260 ) [<samp>(7f91c)</samp>](https://togithub.com/vitest-dev/vitest/commit/7f91c6f6 )
- Compare URL objects by href - by [@​kleinfreund](https://togithub.com/kleinfreund ) and [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4615 ](https://togithub.com/vitest-dev/vitest/issues/4615 ) [<samp>(f7a73)</samp>](https://togithub.com/vitest-dev/vitest/commit/f7a73338 )
- **snapshot**:
- Add option to configure snapshot directory - by [@​d3lm](https://togithub.com/d3lm ) in [https://github.com/vitest-dev/vitest/issues/4651 ](https://togithub.com/vitest-dev/vitest/issues/4651 ) [<samp>(20b2a)</samp>](https://togithub.com/vitest-dev/vitest/commit/20b2a857 )
- **vite-node**:
- Support import.meta.hot.off for vite 5 - by [@​bluwy](https://togithub.com/bluwy ) in [https://github.com/vitest-dev/vitest/issues/4315 ](https://togithub.com/vitest-dev/vitest/issues/4315 ) [<samp>(01b1c)</samp>](https://togithub.com/vitest-dev/vitest/commit/01b1c55c )
- **vitest**:
- Expose getBenchFn, getBenchOptions - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4208 ](https://togithub.com/vitest-dev/vitest/issues/4208 ) [<samp>(8e5e4)</samp>](https://togithub.com/vitest-dev/vitest/commit/8e5e42dc )
- Run typecheck during tests - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4324 ](https://togithub.com/vitest-dev/vitest/issues/4324 ) [<samp>(a1aad)</samp>](https://togithub.com/vitest-dev/vitest/commit/a1aadd71 )
- Filter stacktraces - by [@​clarkf](https://togithub.com/clarkf ) in [https://github.com/vitest-dev/vitest/issues/1999 ](https://togithub.com/vitest-dev/vitest/issues/1999 ) and [https://github.com/vitest-dev/vitest/issues/4338 ](https://togithub.com/vitest-dev/vitest/issues/4338 ) [<samp>(6b734)</samp>](https://togithub.com/vitest-dev/vitest/commit/6b73473f )
- Expose execArgv to the different pools - by [@​adriencaccia](https://togithub.com/adriencaccia ) in [https://github.com/vitest-dev/vitest/issues/4383 ](https://togithub.com/vitest-dev/vitest/issues/4383 ) [<samp>(9021e)</samp>](https://togithub.com/vitest-dev/vitest/commit/9021e8b8 )
##### 🐞 Bug Fixes
- Add multiple globals in VM+JSDOM - by [@​nstepien](https://togithub.com/nstepien ) in [https://github.com/vitest-dev/vitest/issues/4199 ](https://togithub.com/vitest-dev/vitest/issues/4199 ) and [https://github.com/vitest-dev/vitest/issues/4202 ](https://togithub.com/vitest-dev/vitest/issues/4202 ) [<samp>(fc947)</samp>](https://togithub.com/vitest-dev/vitest/commit/fc947ce6 )
- Ignore "plugins" field in snapshotFormat option - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4204 ](https://togithub.com/vitest-dev/vitest/issues/4204 ) [<samp>(db1ff)</samp>](https://togithub.com/vitest-dev/vitest/commit/db1ff438 )
- `nextTick` mocking error message to mention correct config option - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4215 ](https://togithub.com/vitest-dev/vitest/issues/4215 ) [<samp>(98fe3)</samp>](https://togithub.com/vitest-dev/vitest/commit/98fe3d55 )
- Export VitestUtils interface - by [@​fbritoferreira](https://togithub.com/fbritoferreira ) in [https://github.com/vitest-dev/vitest/issues/4301 ](https://togithub.com/vitest-dev/vitest/issues/4301 ) [<samp>(b1439)</samp>](https://togithub.com/vitest-dev/vitest/commit/b1439852 )
- Assertion diff message handle non-writable sub-properties - by [@​bfamchon](https://togithub.com/bfamchon ) in [https://github.com/vitest-dev/vitest/issues/4278 ](https://togithub.com/vitest-dev/vitest/issues/4278 ) [<samp>(7e1a0)</samp>](https://togithub.com/vitest-dev/vitest/commit/7e1a0f83 )
- Don't bundle import from rollup - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4392 ](https://togithub.com/vitest-dev/vitest/issues/4392 ) [<samp>(3b584)</samp>](https://togithub.com/vitest-dev/vitest/commit/3b58487b )
- Support accessing fixture at same index of dependency fixture - by [@​dsyddall](https://togithub.com/dsyddall ) in [https://github.com/vitest-dev/vitest/issues/4387 ](https://togithub.com/vitest-dev/vitest/issues/4387 ) [<samp>(4cd1d)</samp>](https://togithub.com/vitest-dev/vitest/commit/4cd1d3ce )
- Make asynchronous fixtures work concurrently - by [@​dsyddall](https://togithub.com/dsyddall ) in [https://github.com/vitest-dev/vitest/issues/4403 ](https://togithub.com/vitest-dev/vitest/issues/4403 ) [<samp>(3c9f9)</samp>](https://togithub.com/vitest-dev/vitest/commit/3c9f920a )
- Coverage.100 crash when using as an cli argument - by [@​marcelobotega](https://togithub.com/marcelobotega ) in [https://github.com/vitest-dev/vitest/issues/4346 ](https://togithub.com/vitest-dev/vitest/issues/4346 ) [<samp>(0db38)</samp>](https://togithub.com/vitest-dev/vitest/commit/0db386dc )
- Support typechecking with Yarn PnP - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4412 ](https://togithub.com/vitest-dev/vitest/issues/4412 ) [<samp>(1ecbe)</samp>](https://togithub.com/vitest-dev/vitest/commit/1ecbe74d )
- Support accessing task from test context without accessing fixtures - by [@​dsyddall](https://togithub.com/dsyddall ) in [https://github.com/vitest-dev/vitest/issues/4419 ](https://togithub.com/vitest-dev/vitest/issues/4419 ) [<samp>(3397f)</samp>](https://togithub.com/vitest-dev/vitest/commit/3397fdc4 )
- Copy custom asymmetric matchers to local `expect` - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4405 ](https://togithub.com/vitest-dev/vitest/issues/4405 ) [<samp>(9fe38)</samp>](https://togithub.com/vitest-dev/vitest/commit/9fe38737 )
- Apply serializer to `Error` instance for thrown snapshot - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4396 ](https://togithub.com/vitest-dev/vitest/issues/4396 ) [<samp>(ac309)</samp>](https://togithub.com/vitest-dev/vitest/commit/ac309726 )
- Throw an error when running "vitest typecheck" - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4439 ](https://togithub.com/vitest-dev/vitest/issues/4439 ) [<samp>(7f502)</samp>](https://togithub.com/vitest-dev/vitest/commit/7f502299 )
- Don't expand snapshot diff by default - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4430 ](https://togithub.com/vitest-dev/vitest/issues/4430 ) [<samp>(8983c)</samp>](https://togithub.com/vitest-dev/vitest/commit/8983cd48 )
- Handle errors thrown in fixtures - by [@​dsyddall](https://togithub.com/dsyddall ) [<samp>(f6844)</samp>](https://togithub.com/vitest-dev/vitest/commit/f6844ad6 )
- Default --open to !process.env.CI - by [@​collinstevens](https://togithub.com/collinstevens ) in [https://github.com/vitest-dev/vitest/issues/4477 ](https://togithub.com/vitest-dev/vitest/issues/4477 ) [<samp>(088a0)</samp>](https://togithub.com/vitest-dev/vitest/commit/088a047d )
- Disable ESBuild when user config disables it - by [@​Namchee](https://togithub.com/Namchee ) in [https://github.com/vitest-dev/vitest/issues/4492 ](https://togithub.com/vitest-dev/vitest/issues/4492 ) [<samp>(9abde)</samp>](https://togithub.com/vitest-dev/vitest/commit/9abde204 )
- Inherit concurrent/sequential in nested suites - by [@​dsyddall](https://togithub.com/dsyddall ) in [https://github.com/vitest-dev/vitest/issues/4482 ](https://togithub.com/vitest-dev/vitest/issues/4482 ) [<samp>(ca168)</samp>](https://togithub.com/vitest-dev/vitest/commit/ca168a14 )
- Provide customTesters to asymmetric matchers - by [@​sheremet-va](https://togithub.com/sheremet-va ) [<samp>(ac665)</samp>](https://togithub.com/vitest-dev/vitest/commit/ac665c96 )
- Apply `retry` and `bail` from test config file - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4530 ](https://togithub.com/vitest-dev/vitest/issues/4530 ) [<samp>(94f9a)</samp>](https://togithub.com/vitest-dev/vitest/commit/94f9a3ca )
- Respect trailing slash when filtering by file path - by [@​ibuibu](https://togithub.com/ibuibu ) in [https://github.com/vitest-dev/vitest/issues/4538 ](https://togithub.com/vitest-dev/vitest/issues/4538 ) [<samp>(f377a)</samp>](https://togithub.com/vitest-dev/vitest/commit/f377a3bf )
- Date prototype when using setSystemTime - by [@​spiroka](https://togithub.com/spiroka ) in [https://github.com/vitest-dev/vitest/issues/4584 ](https://togithub.com/vitest-dev/vitest/issues/4584 ) [<samp>(3f8c3)</samp>](https://togithub.com/vitest-dev/vitest/commit/3f8c3fb1 )
- BrowserTestRunner called incorrect super methods - by [@​samthor](https://togithub.com/samthor ) in [https://github.com/vitest-dev/vitest/issues/4632 ](https://togithub.com/vitest-dev/vitest/issues/4632 ) [<samp>(8385c)</samp>](https://togithub.com/vitest-dev/vitest/commit/8385c981 )
- Set process name for idle workers - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4641 ](https://togithub.com/vitest-dev/vitest/issues/4641 ) [<samp>(eca25)</samp>](https://togithub.com/vitest-dev/vitest/commit/eca25dc9 )
- **bench**:
- Extract ChainableBenchmarkAPI type - by [@​dsyddall](https://togithub.com/dsyddall ) in [https://github.com/vitest-dev/vitest/issues/4537 ](https://togithub.com/vitest-dev/vitest/issues/4537 ) [<samp>(79e9b)</samp>](https://togithub.com/vitest-dev/vitest/commit/79e9bfaa )
- **browser**:
- Improve error handling and don't rely on Node.js builtin modules in browser mode - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4244 ](https://togithub.com/vitest-dev/vitest/issues/4244 ) [<samp>(e7e8c)</samp>](https://togithub.com/vitest-dev/vitest/commit/e7e8c3cc )
- Disable hijacking ES modules until vi.mock is implemented - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4414 ](https://togithub.com/vitest-dev/vitest/issues/4414 ) [<samp>(ab556)</samp>](https://togithub.com/vitest-dev/vitest/commit/ab556376 )
- Add vitest/ imports to entries - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4514 ](https://togithub.com/vitest-dev/vitest/issues/4514 ) [<samp>(648bc)</samp>](https://togithub.com/vitest-dev/vitest/commit/648bccb9 )
- Wait until vite finishes prebundling of vitest dependencies - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4518 ](https://togithub.com/vitest-dev/vitest/issues/4518 ) [<samp>(56ee7)</samp>](https://togithub.com/vitest-dev/vitest/commit/56ee7026 )
- Allow for `pretty-format` as a sibling dependency - by [@​nicojs](https://togithub.com/nicojs ) in [https://github.com/vitest-dev/vitest/issues/4590 ](https://togithub.com/vitest-dev/vitest/issues/4590 ) [<samp>(ed50a)</samp>](https://togithub.com/vitest-dev/vitest/commit/ed50a944 )
- Don't go into an infinite reload loop, don't fail if "error" event is caught - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4618 ](https://togithub.com/vitest-dev/vitest/issues/4618 ) [<samp>(ec3d6)</samp>](https://togithub.com/vitest-dev/vitest/commit/ec3d6949 )
- Respect "server" option in vite config - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4627 ](https://togithub.com/vitest-dev/vitest/issues/4627 ) [<samp>(723f6)</samp>](https://togithub.com/vitest-dev/vitest/commit/723f65b9 )
- **cli**:
- Do not capture `stdin` when in run mode - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4310 ](https://togithub.com/vitest-dev/vitest/issues/4310 ) [<samp>(fc51a)</samp>](https://togithub.com/vitest-dev/vitest/commit/fc51ad04 )
- **config**:
- Type issue of `pool` and `poolMatchGlobs` in defineConfig - by [@​InfiniteXyy](https://togithub.com/InfiniteXyy ) in [https://github.com/vitest-dev/vitest/issues/4282 ](https://togithub.com/vitest-dev/vitest/issues/4282 ) [<samp>(9112c)</samp>](https://togithub.com/vitest-dev/vitest/commit/9112cc96 )
- **coverage**:
- `thresholdAutoUpdate` to detect zero limits - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4287 ](https://togithub.com/vitest-dev/vitest/issues/4287 ) [<samp>(a29fe)</samp>](https://togithub.com/vitest-dev/vitest/commit/a29fecee )
- Exclude files and directories starting with dot by default - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4428 ](https://togithub.com/vitest-dev/vitest/issues/4428 ) [<samp>(b3327)</samp>](https://togithub.com/vitest-dev/vitest/commit/b3327a64 )
- Improve memory usage by writing temporary files on file system - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4603 ](https://togithub.com/vitest-dev/vitest/issues/4603 ) [<samp>(4166c)</samp>](https://togithub.com/vitest-dev/vitest/commit/4166c413 )
- **deps**:
- Update dependency v8-to-istanbul to ^9.2.0 - by [@​renovate](https://togithub.com/renovate )\[bot] in[https://github.com/vitest-dev/vitest/issues/4583 ](https://togithub.com/vitest-dev/vitest/issues/4583 )3 [<samp>(a70f2)</samp>](https://togithub.com/vitest-dev/vitest/commit/a70f216d )
- Update dependency std-env to ^3.5.0 - by [@​renovate](https://togithub.com/renovate )\[bot] in[https://github.com/vitest-dev/vitest/issues/4582 ](https://togithub.com/vitest-dev/vitest/issues/4582 )2 [<samp>(1fdd6)</samp>](https://togithub.com/vitest-dev/vitest/commit/1fdd6fe2 )
- **example**:
- Resolve type error - by [@​jqkk](https://togithub.com/jqkk ) in [https://github.com/vitest-dev/vitest/issues/4515 ](https://togithub.com/vitest-dev/vitest/issues/4515 ) [<samp>(2d1b4)</samp>](https://togithub.com/vitest-dev/vitest/commit/2d1b4785 )
- **expect**:
- Publish types file - by [@​sheremet-va](https://togithub.com/sheremet-va ) [<samp>(5996c)</samp>](https://togithub.com/vitest-dev/vitest/commit/5996c8c0 )
- `Object.freeze` breaks `toEqual` - by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/vitest-dev/vitest/issues/4303 ](https://togithub.com/vitest-dev/vitest/issues/4303 ) [<samp>(a4501)</samp>](https://togithub.com/vitest-dev/vitest/commit/a4501d6b )
- Publish semantically correct chai types - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4322 ](https://togithub.com/vitest-dev/vitest/issues/4322 ) [<samp>(80a70)</samp>](https://togithub.com/vitest-dev/vitest/commit/80a706a1 )
- Print full error if promise is rejected - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4467 ](https://togithub.com/vitest-dev/vitest/issues/4467 ) [<samp>(cadb9)</samp>](https://togithub.com/vitest-dev/vitest/commit/cadb9cd3 )
- Don't fail when using jest expect - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4517 ](https://togithub.com/vitest-dev/vitest/issues/4517 ) [<samp>(60d6d)</samp>](https://togithub.com/vitest-dev/vitest/commit/60d6d173 )
- **happy-dom**:
- Don't crash when calling useFakeTimers with empty config - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4214 ](https://togithub.com/vitest-dev/vitest/issues/4214 ) [<samp>(2e1a1)</samp>](https://togithub.com/vitest-dev/vitest/commit/2e1a1bd4 )
- **jsdom**:
- Don't go into an infinite recusion when calling atob - by [@​sheremet-va](https://togithub.com/sheremet-va ) [<samp>(da794)</samp>](https://togithub.com/vitest-dev/vitest/commit/da7949dc )
- **runner**:
- Fixture needs to be initialized for each test - by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/vitest-dev/vitest/issues/4250 ](https://togithub.com/vitest-dev/vitest/issues/4250 ) [<samp>(76a93)</samp>](https://togithub.com/vitest-dev/vitest/commit/76a93298 )
- Nested tests should throw errors - by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/vitest-dev/vitest/issues/4262 ](https://togithub.com/vitest-dev/vitest/issues/4262 ) [<samp>(8ac9f)</samp>](https://togithub.com/vitest-dev/vitest/commit/8ac9f8b1 )
- Removes deprecated `error` option from TaskResult - by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/vitest-dev/vitest/issues/4313 ](https://togithub.com/vitest-dev/vitest/issues/4313 ) [<samp>(4cee6)</samp>](https://togithub.com/vitest-dev/vitest/commit/4cee6711 )
- Preserve fixtures when calling runif and skipif - by [@​dsyddall](https://togithub.com/dsyddall ) in [https://github.com/vitest-dev/vitest/issues/4585 ](https://togithub.com/vitest-dev/vitest/issues/4585 ) and [https://github.com/vitest-dev/vitest/issues/4591 ](https://togithub.com/vitest-dev/vitest/issues/4591 ) [<samp>(515ea)</samp>](https://togithub.com/vitest-dev/vitest/commit/515eadf9 )
- PassWithNoTests option not work - by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/vitest-dev/vitest/issues/4553 ](https://togithub.com/vitest-dev/vitest/issues/4553 ) [<samp>(8d183)</samp>](https://togithub.com/vitest-dev/vitest/commit/8d183da4 )
- **vite-node**:
- Have a separate cache for web/ssr transforms - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4221 ](https://togithub.com/vitest-dev/vitest/issues/4221 ) [<samp>(ca5db)</samp>](https://togithub.com/vitest-dev/vitest/commit/ca5dbef4 )
- Mjs files watch not work - by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/vitest-dev/vitest/issues/3982 ](https://togithub.com/vitest-dev/vitest/issues/3982 ) [<samp>(77ea9)</samp>](https://togithub.com/vitest-dev/vitest/commit/77ea9326 )
- **vitest**:
- Make [@​types/node](https://togithub.com/types/node ) optional - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4210 ](https://togithub.com/vitest-dev/vitest/issues/4210 ) [<samp>(a5383)</samp>](https://togithub.com/vitest-dev/vitest/commit/a5383c2d )
- Inline chai types instead of using [@​types/chai](https://togithub.com/types/chai ) - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4209 ](https://togithub.com/vitest-dev/vitest/issues/4209 ) [<samp>(5f477)</samp>](https://togithub.com/vitest-dev/vitest/commit/5f4774fc )
- Don't initialize globalSetup if workspace doesn't run tests - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4213 ](https://togithub.com/vitest-dev/vitest/issues/4213 ) [<samp>(06461)</samp>](https://togithub.com/vitest-dev/vitest/commit/0646197e )
- Deduplicate vitest when running globally or in a workspace - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4238 ](https://togithub.com/vitest-dev/vitest/issues/4238 ) [<samp>(93504)</samp>](https://togithub.com/vitest-dev/vitest/commit/93504619 )
- Print file path instead of "unknown test" when logging - by [@​Dunqing](https://togithub.com/Dunqing ) in [https://github.com/vitest-dev/vitest/issues/4146 ](https://togithub.com/vitest-dev/vitest/issues/4146 ) [<samp>(ec2e8)</samp>](https://togithub.com/vitest-dev/vitest/commit/ec2e8040 )
- Failed to load custom environment from js/ts file - by [@​Dunqing](https://togithub.com/Dunqing ) and [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4255 ](https://togithub.com/vitest-dev/vitest/issues/4255 ) [<samp>(da8d0)</samp>](https://togithub.com/vitest-dev/vitest/commit/da8d0570 )
- Support assets in new URL in Vite 5 - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4258 ](https://togithub.com/vitest-dev/vitest/issues/4258 ) [<samp>(d280f)</samp>](https://togithub.com/vitest-dev/vitest/commit/d280f489 )
- Correctly hoist `vi.hoisted` if assigned - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4285 ](https://togithub.com/vitest-dev/vitest/issues/4285 ) [<samp>(ff93a)</samp>](https://togithub.com/vitest-dev/vitest/commit/ff93a573 )
- Run globalSetup from the root config even if it's not in a workspace - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4325 ](https://togithub.com/vitest-dev/vitest/issues/4325 ) [<samp>(4293e)</samp>](https://togithub.com/vitest-dev/vitest/commit/4293e1b1 )
- Pass correct mode in vitest config function - by [@​adriencaccia](https://togithub.com/adriencaccia ) in [https://github.com/vitest-dev/vitest/issues/4399 ](https://togithub.com/vitest-dev/vitest/issues/4399 ) [<samp>(b8ca3)</samp>](https://togithub.com/vitest-dev/vitest/commit/b8ca3873 )
- Throw an error if vitest is imported using require() - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4466 ](https://togithub.com/vitest-dev/vitest/issues/4466 ) [<samp>(e5cf1)</samp>](https://togithub.com/vitest-dev/vitest/commit/e5cf1418 )
- Use correct type for defineProject to allow usage in mergeConfig - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4498 ](https://togithub.com/vitest-dev/vitest/issues/4498 ) [<samp>(7dee8)</samp>](https://togithub.com/vitest-dev/vitest/commit/7dee832d )
- Throw an error if Vite wasn't able to resolve aliased path - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4503 ](https://togithub.com/vitest-dev/vitest/issues/4503 ) [<samp>(50333)</samp>](https://togithub.com/vitest-dev/vitest/commit/503331d8 )
- Improve vi.waitUntil type to excude falsy types - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4572 ](https://togithub.com/vitest-dev/vitest/issues/4572 ) [<samp>(23652)</samp>](https://togithub.com/vitest-dev/vitest/commit/23652300 )
- Add import-meta.d.ts - by [@​macdaddyaz](https://togithub.com/macdaddyaz ) in [https://github.com/vitest-dev/vitest/issues/4571 ](https://togithub.com/vitest-dev/vitest/issues/4571 ) [<samp>(dd802)</samp>](https://togithub.com/vitest-dev/vitest/commit/dd80288f )
- Correctly support CSS variable when using happy-dom - by [@​sheremet-va](https://togithub.com/sheremet-va ) in [https://github.com/vitest-dev/vitest/issues/4601 ](https://togithub.com/vitest-dev/vitest/issues/4601 ) [<samp>(9fbf3)</samp>](https://togithub.com/vitest-dev/vitest/commit/9fbf39af )
- Pass correct server options in workspace - by [@​hironytic](https://togithub.com/hironytic ) in [https://github.com/vitest-dev/vitest/issues/4539 ](https://togithub.com/vitest-dev/vitest/issues/4539 ) and [https://github.com/vitest-dev/vitest/issues/4540 ](https://togithub.com/vitest-dev/vitest/issues/4540 ) [<samp>(241a8)</samp>](https://togithub.com/vitest-dev/vitest/commit/241a8c13 )
- Independently mock each instance's methods for mocked class - by [@​hi-ogawa](https://togithub.com/hi-ogawa ) in [https://github.com/vitest-dev/vitest/issues/4564 ](https://togithub.com/vitest-dev/vitest/issues/4564 ) [<samp>(05b05)</samp>](https://togithub.com/vitest-dev/vitest/commit/05b0521c )
- **vm**:
- Remove sequencer usage from createVmThreadsPool function - by [@​mhogeveen](https://togithub.com/mhogeveen ) in [https://github.com/vitest-dev/vitest/issues/4638 ](https://togithub.com/vitest-dev/vitest/issues/4638 ) [<samp>(54d52)</samp>](https://togithub.com/vitest-dev/vitest/commit/54d52d44 )
##### 🏎 Performance
- Update `log-update` v9 - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4390 ](https://togithub.com/vitest-dev/vitest/issues/4390 ) [<samp>(ba1df)</samp>](https://togithub.com/vitest-dev/vitest/commit/ba1df849 )
- Close pool early in run-mode - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4623 ](https://togithub.com/vitest-dev/vitest/issues/4623 ) [<samp>(e0e20)</samp>](https://togithub.com/vitest-dev/vitest/commit/e0e20176 )
- **coverage-istanbul**: `all: true` instruments already instrumented files - by [@​AriPerkkio](https://togithub.com/AriPerkkio ) in [https://github.com/vitest-dev/vitest/issues/4552 ](https://togithub.com/vitest-dev/vitest/issues/4552 ) [<samp>(d1e1b)</samp>](https://togithub.com/vitest-dev/vitest/commit/d1e1bc90 )
##### [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.34.7...v1.0.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-18 13:46:29 +00:00
JimmFly
cef9e0539d
fix(storybook): fix test ( #5325 )
...
<img width="440" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/329f9c12-cc0b-4aae-9352-3811ab0a27a6 ">
2023-12-18 13:36:56 +00:00
EYHN
a1c9ac80d8
ci: fix e2e ( #5329 )
2023-12-18 12:24:48 +00:00
EYHN
1b5837e545
ci: fix oxlint version ( #5328 )
2023-12-18 20:10:01 +08:00
LongYinan
a3d4c5c709
chore(server): split gcloud sql proxy into a separate deployment ( #5101 )
...
After merge this pull request, need to change the `DATABASE_URL` in environment secrets (stable/beta) from `127.0.0.1` to `affine-cloud-sql-proxy`
2023-12-15 13:28:12 +00:00
Peng Xiao
fc56a53acd
fix(core): page mode switch sometimes not working ( #5306 )
...
Should not pass inline object without memo into `InternalLottie`.
cdc96876b0/packages/frontend/component/src/components/internal-lottie/index.tsx (L77)
In the detail page when during syncing on the cloud, the detail page will be re-rendered constantly because of `useCurrentSyncEngineStatus` hook, which will then cause `PageSwitchItem` to re-render and forcing the internal lottie state to reset. As a result the click event may not be captured somehow.
2023-12-15 08:21:41 +00:00
EYHN
fe2851d3e9
refactor: workspace manager ( #5060 )
2023-12-15 07:20:50 +00:00
Yifeng Wang
af15aa06d4
feat: bump blocksuite ( #5286 )
...
Co-authored-by: donteatfriedrice <huisheng.chen7788@outlook.com >
2023-12-15 12:57:52 +08:00
LongYinan
136b4ccb4e
chore: bump up github/codeql-action action to v3 ( #5298 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [github/codeql-action](https://togithub.com/github/codeql-action ) | action | major | `v2` -> `v3` |
---
### Release Notes
<details>
<summary>github/codeql-action (github/codeql-action)</summary>
### [`v3`](https://togithub.com/github/codeql-action/compare/v2...v3 )
[Compare Source](https://togithub.com/github/codeql-action/compare/v2...v3 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-14 13:52:18 +00:00
DarkSky
e9dfa93b52
feat: add cache for blob query ( #5178 )
2023-12-14 09:50:56 +00:00
DarkSky
0c2d2f8d16
feat: struct type feature config ( #5142 )
2023-12-14 09:50:52 +00:00
DarkSky
2b7f6f8b74
feat: integrate new modules ( #5087 )
2023-12-14 09:50:46 +00:00
DarkSky
a93c12e122
feat: user usage gql & test case improve ( #5076 )
2023-12-14 09:50:42 +00:00
DarkSky
ad23ead5e4
feat: integrate user usage into apis ( #5075 )
2023-12-14 09:50:37 +00:00
Peng Xiao
63de73a815
fix: width blink in side bar ( #5291 )
2023-12-14 09:20:18 +00:00
Peng Xiao
c66781970b
feat(core): add useQueryImmutable ( #5299 )
2023-12-14 08:04:50 +00:00
Peng Xiao
b925731bf7
fix: add sidebar toggle and windows controls for empty collections page ( #5304 )
...
Before this change, when the user gets to an empty collection page & hide the sidebar, there is no sidebar toggle any longer.
Also added windows app control on windows.
2023-12-14 07:13:01 +00:00
Peng Xiao
3efcdc0cc5
fix: detail page missing background ( #5303 )
...
before

after

2023-12-14 06:50:21 +00:00
Peng Xiao
0dc9358972
fix: page title too long style ( #5302 )
...

2023-12-14 06:31:59 +00:00
EYHN
8aac1e09e2
feat(server): independent websocket room for block and awareness ( #5285 )
2023-12-13 10:31:07 +00:00
DarkSky
77a5552dcd
feat: user usage init ( #5074 )
2023-12-13 09:21:14 +00:00
Peng Xiao
098787bd0c
fix(core): collection modal position after modal style changes ( #5289 )
...
fix https://github.com/toeverything/AFFiNE/issues/5270
fix TOV-161
2023-12-13 08:14:55 +00:00
Peng Xiao
cd2efb4f0b
chore: remove react-resizable-panels ( #5284 )
2023-12-13 07:52:02 +00:00
Peng Xiao
ce64685176
refactor(core): side bar resizing ( #5280 )
...
Rewrite sidebar panel using a customized react-resizable-panels version that supports sidebar pixel sizing (not using flex percentages).
Now the left & right sidebar using the same `ResizePanel` impl.
fix https://github.com/toeverything/AFFiNE/issues/5271
fix TOV-163
fix TOV-146
fix TOV-168
fix TOV-109
fix TOV-165
2023-12-13 07:52:01 +00:00
Peng Xiao
2a9a6855f4
test(core): rewrite some flaky assertions ( #5287 )
2023-12-13 07:51:59 +00:00
Peng Xiao
ad2c254ca3
fix(core): simple history entry position ( #5290 )
...
fix AFF-377
2023-12-13 07:33:15 +00:00
LongYinan
e4369c7f0b
chore: bump up @endo/static-module-record version to v1 ( #5281 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@endo/static-module-record](https://togithub.com/endojs/endo/tree/master/packages/static-module-record#readme ) ([source](https://togithub.com/endojs/endo )) | [`^0.8.2` -> `^1.0.0`](https://renovatebot.com/diffs/npm/@endo%2fstatic-module-record/0.8.2/1.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>endojs/endo (@​endo/static-module-record)</summary>
### [`v1.0.0`](https://togithub.com/endojs/endo/compare/@endo/static-module-record@0.8.2...@endo/static-module-record@1.0.0 )
[Compare Source](https://togithub.com/endojs/endo/compare/@endo/static-module-record@0.8.2...@endo/static-module-record@1.0.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-13 07:24:11 +00:00
Peng Xiao
883ab46557
fix(core): bg color issues in transparent mode ( #5278 )
...
fix the following style issue

2023-12-13 07:14:24 +00:00
JimmFly
7d32ddf539
fix(core): fix window cannot be dragged on the collection page ( #5269 )
...
close #5268
close TOV-162
https://github.com/toeverything/AFFiNE/assets/102217452/d8f606c0-4c18-4a7e-be3f-d2e611ffecbf
2023-12-13 05:26:28 +00:00
Peng Xiao
31dc1f5e00
fix(electron): use dynamic load for exposed meta ( #5251 )
...
There is high possibilities of circular dependencies when importing `exposed-meta` module. Change it to dynamic import to mitigate the issue..
2023-12-13 05:17:17 +00:00
Peng Xiao
c9f900b69c
fix(core): page header style changes ( #5279 )
...

2023-12-13 05:06:29 +00:00
regischen
738302be40
fix(edgeless): remove stale template ( #5275 )
2023-12-13 12:54:26 +08:00
liuyi
797cd5c6eb
fix(server): avoid repeatly register providers ( #5265 )
2023-12-13 02:12:38 +00:00
JimmFly
f4a52c031f
feat(core): support sidebar page item dnd ( #5132 )
...
Added the ability to drag page items from the `all pages` view to the sidebar, including `favourites,` `collection` and `trash`. Page items in `favourites` and `collection` can also be dragged between each other. However, linked subpages cannot be dragged.
Additionally, an operation menu and ‘add’ button have been provided for the sidebar’s page items, enabling the addition of a subpage, renaming, deletion or removal from the sidebar.
On the code front, the `useSidebarDrag` hooks have been implemented for consolidating drag events. The functions `getDragItemId` and `getDropItemId` have been created, and they accept type and ID to obtain itemId.
https://github.com/toeverything/AFFiNE/assets/102217452/d06bac18-3c28-41c9-a7d4-72de955d7b11
2023-12-12 16:04:58 +00:00
EYHN
b782b3fb1b
fix(core): polling to search in cmdk ( #5274 )
...
This is a temporary solution until https://github.com/toeverything/blocksuite/issues/5668 be solved.
2023-12-12 18:42:07 +08:00
Flrande
9aa33d0228
feat: bump blocksuite ( #5267 )
...
Change history: 2b5bb47...2b3d2ba
2023-12-12 06:18:30 +00:00
liuyi
bf97a07d1f
fix(server): use last update creating time as snasphot update timestamp ( #5266 )
2023-12-12 06:03:34 +00:00
EYHN
68e7577841
fix(core): fix editor sidebar open on resize ( #5262 )
2023-12-12 11:02:33 +08:00
JimmFly
38e46bc3b2
fix(core): adjust share edgeless display error ( #5263 )
...
close #5261
https://github.com/toeverything/AFFiNE/assets/102217452/8a7c4347-96df-45a3-973a-806876e5703d
2023-12-11 10:55:23 +00:00
liuyi
30ecee483d
fix(server): avoid updates persist forever ( #5258 )
2023-12-11 09:17:49 +00:00
JimmFly
feb7bd9fef
fix(cli): fix storybook build error ( #5257 )
...
<img width="1036" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/477d653e-80b5-4364-a073-e3386cd7ab17 ">
2023-12-11 08:07:43 +00:00
LongYinan
681d25c67c
chore: bump up @electron-forge/maker-base version to v7.2.0 ( #5191 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@electron-forge/maker-base](https://togithub.com/electron/forge ) | [`7.1.0` -> `7.2.0`](https://renovatebot.com/diffs/npm/@electron-forge%2fmaker-base/7.1.0/7.2.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>electron/forge (@​electron-forge/maker-base)</summary>
### [`v7.2.0`](https://togithub.com/electron/forge/releases/tag/v7.2.0 )
[Compare Source](https://togithub.com/electron/forge/compare/v7.1.0...v7.2.0 )
#### What's Changed
##### Features
- feat: add support for sequential groups of webpack builds by [@​MarshallOfSound](https://togithub.com/MarshallOfSound ) in [https://github.com/electron/forge/pull/3435 ](https://togithub.com/electron/forge/pull/3435 )
##### Fixes
- fix: handle webpack configs exported as default by [@​MarshallOfSound](https://togithub.com/MarshallOfSound ) in [https://github.com/electron/forge/pull/3427 ](https://togithub.com/electron/forge/pull/3427 )
- fix: set empty publicPath for preload scripts by [@​MarshallOfSound](https://togithub.com/MarshallOfSound ) in [https://github.com/electron/forge/pull/3428 ](https://togithub.com/electron/forge/pull/3428 )
- fix: ensure that webpack is run once per arch for universal builds by [@​MarshallOfSound](https://togithub.com/MarshallOfSound ) in [https://github.com/electron/forge/pull/3433 ](https://togithub.com/electron/forge/pull/3433 )
##### Documentation
- docs: remove mention of v5 -> v6 migration by [@​erickzhao](https://togithub.com/erickzhao ) in [https://github.com/electron/forge/pull/3412 ](https://togithub.com/electron/forge/pull/3412 )
- docs: add notes on publishing a new monorepo package by [@​erickzhao](https://togithub.com/erickzhao ) in [https://github.com/electron/forge/pull/3415 ](https://togithub.com/electron/forge/pull/3415 )
##### Other Changes
- build(docs): enable API documentation builds for Forge v7 by [@​erickzhao](https://togithub.com/erickzhao ) in [https://github.com/electron/forge/pull/3413 ](https://togithub.com/electron/forge/pull/3413 )
- ci: allow manual API documentation publish by [@​dsanders11](https://togithub.com/dsanders11 ) in [https://github.com/electron/forge/pull/3414 ](https://togithub.com/electron/forge/pull/3414 )
- refactor: dedupe key resolver for static publishers by [@​MarshallOfSound](https://togithub.com/MarshallOfSound ) in [https://github.com/electron/forge/pull/3421 ](https://togithub.com/electron/forge/pull/3421 )
- chore: bump electronjs/node to 2.1.0 (main) by [@​electron-roller](https://togithub.com/electron-roller ) in [https://github.com/electron/forge/pull/3422 ](https://togithub.com/electron/forge/pull/3422 )
- chore: update deps to clear some audit warnings by [@​dsanders11](https://togithub.com/dsanders11 ) in [https://github.com/electron/forge/pull/3429 ](https://togithub.com/electron/forge/pull/3429 )
**Full Changelog**: https://github.com/electron/forge/compare/v7.1.0...v7.2.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-11 07:43:15 +00:00
LongYinan
6a46ea85e7
chore: upgrade rustup toolchain ( #5246 )
2023-12-11 07:28:09 +00:00
LongYinan
73c2750596
chore: upgrade to yarn@4.0.2 ( #5245 )
2023-12-11 07:28:07 +00:00
LongYinan
8a22fbbec2
chore: bump up marked version to v11 ( #5200 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [marked](https://marked.js.org ) ([source](https://togithub.com/markedjs/marked )) | [`^9.1.2` -> `^11.0.0`](https://renovatebot.com/diffs/npm/marked/9.1.6/11.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>markedjs/marked (marked)</summary>
### [`v11.0.0`](https://togithub.com/markedjs/marked/releases/tag/v11.0.0 )
[Compare Source](https://togithub.com/markedjs/marked/compare/v10.0.0...v11.0.0 )
##### Bug Fixes
- clean up rules so they can be typed ([#​3087](https://togithub.com/markedjs/marked/issues/3087 )) ([175fc0c](175fc0c321 ))
- fix marked types ([#​3103](https://togithub.com/markedjs/marked/issues/3103 )) ([edae309](edae309505 ))
##### BREAKING CHANGES
- Lexer.rules object has been changed so it can be properly types. Some intermediate rules have been removed.
### [`v10.0.0`](https://togithub.com/markedjs/marked/releases/tag/v10.0.0 )
[Compare Source](https://togithub.com/markedjs/marked/compare/v9.1.6...v10.0.0 )
##### Bug Fixes
- run spec tests with testutils ([#​3017](https://togithub.com/markedjs/marked/issues/3017 )) ([014d4e6](014d4e61f6 ))
##### BREAKING CHANGES
- drop support for node v16
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-11 07:13:01 +00:00
LongYinan
4de832d69d
chore: bump up vite-plugin-static-copy version to v1 ( #5205 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite-plugin-static-copy](https://togithub.com/sapphi-red/vite-plugin-static-copy ) | [`^0.17.1` -> `^1.0.0`](https://renovatebot.com/diffs/npm/vite-plugin-static-copy/0.17.1/1.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>sapphi-red/vite-plugin-static-copy (vite-plugin-static-copy)</summary>
### [`v1.0.0`](https://togithub.com/sapphi-red/vite-plugin-static-copy/blob/HEAD/CHANGELOG.md#100 )
[Compare Source](https://togithub.com/sapphi-red/vite-plugin-static-copy/compare/v0.17.1...vite-plugin-static-copy@1.0.0 )
##### Major Changes
- [`252f62c`](252f62ce6c ) Thanks [@​sapphi-red](https://togithub.com/sapphi-red )! - drop support for Vite 3 and 4
- [`252f62c`](252f62ce6c ) Thanks [@​sapphi-red](https://togithub.com/sapphi-red )! - drop CJS build. See https://vitejs.dev/guide/troubleshooting.html#this-package-is-esm-only for how to migrate from CJS to ESM.
- [`252f62c`](252f62ce6c ) Thanks [@​sapphi-red](https://togithub.com/sapphi-red )! - drop node 14.18/16/17/19 support
##### Patch Changes
- [#​67](https://togithub.com/sapphi-red/vite-plugin-static-copy/pull/67 ) [`8707d84`](8707d84d47 ) Thanks [@​sapphi-red](https://togithub.com/sapphi-red )! - copy only once even if multiple bundles are generated
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-11 06:55:17 +00:00
JimmFly
e7a7796ef3
feat(core): adjust empty collection style ( #5239 )
...
<img width="270" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/18ac2de8-51c0-447e-9c81-787f579eab4e ">
2023-12-11 06:30:09 +00:00
Peng Xiao
cfd200528f
fix(component): revert theme flickering ( #5238 ) ( #5256 )
...
This reverts commit e8cfc807ea .
2023-12-11 06:05:16 +00:00
Peng Xiao
e8cfc807ea
fix(electron): use tree-kill for electron dev ( #5252 )
...
electron process sometimes do not get re-spawned because of some child process not being closed.
use tree-kill instead.
2023-12-11 04:26:19 +00:00
LongYinan
f0c70b92f4
chore: bump up google-github-actions/setup-gcloud action to v2 ( #5241 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [google-github-actions/setup-gcloud](https://togithub.com/google-github-actions/setup-gcloud ) | action | major | `v1` -> `v2` |
---
### Release Notes
<details>
<summary>google-github-actions/setup-gcloud (google-github-actions/setup-gcloud)</summary>
### [`v2`](https://togithub.com/google-github-actions/setup-gcloud/releases/tag/v2 )
[Compare Source](https://togithub.com/google-github-actions/setup-gcloud/compare/v1...v2 )
**⚠️ This version requires Node 20 or later!**
Floating v2 alias
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-10 07:33:07 +00:00
LongYinan
255d25d20c
chore: bump up @opentelemetry/host-metrics version to ^0.34.0 ( #5234 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@opentelemetry/host-metrics](https://togithub.com/open-telemetry/opentelemetry-js-contrib/tree/main/packages/opentelemetry-host-metrics#readme ) ([source](https://togithub.com/open-telemetry/opentelemetry-js-contrib )) | [`^0.33.2` -> `^0.34.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fhost-metrics/0.33.2/0.34.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>open-telemetry/opentelemetry-js-contrib (@​opentelemetry/host-metrics)</summary>
### [`v0.34.0`](607d375595...c7e7000b7b )
[Compare Source](607d375595...c7e7000b7b )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-10 07:20:58 +00:00
Joooye_34
c1bb467013
refactor(core): use debug log replace console when command registry ( #5237 )
2023-12-09 07:42:04 +00:00
Nadeshiko Manju
a066dfb108
chore: add sha512sum for the released files ( #5242 )
2023-12-09 15:41:20 +08:00
EYHN
3e9f8e06be
chore(env): fix lint error ( #5240 )
2023-12-09 04:45:13 +00:00
Peng Xiao
5979162a5c
fix(component): theme flickering ( #5238 )
...
Add color-scheme to html so that the web will use system scheme when scripts has not being loaded;
Use `(prefers-color-scheme: dark)` so that the css vars do not defer load based on `data-theme`, which is set by next-themes (which is deferred).
2023-12-08 10:12:20 +00:00
LongYinan
feed400462
chore: bump up vite version to v5 ( #5203 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](https://vitejs.dev ) ([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite )) | [`^4.4.11` -> `^5.0.0`](https://renovatebot.com/diffs/npm/vite/4.5.1/5.0.6 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>vitejs/vite (vite)</summary>
### [`v5.0.6`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small506-2023-12-06-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.5...v5.0.6 )
- perf: in-memory public files check ([#​15195](https://togithub.com/vitejs/vite/issues/15195 )) ([0f9e1bf](https://togithub.com/vitejs/vite/commit/0f9e1bf )), closes [#​15195](https://togithub.com/vitejs/vite/issues/15195 )
- chore: remove unneccessary eslint-disable-next-line regexp/no-unused-capturing-group ([#​15247](https://togithub.com/vitejs/vite/issues/15247 )) ([35a5bcf](https://togithub.com/vitejs/vite/commit/35a5bcf )), closes [#​15247](https://togithub.com/vitejs/vite/issues/15247 )
### [`v5.0.5`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small505-2023-12-04-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.4...v5.0.5 )
- fix: emit `vite:preloadError` for chunks without deps ([#​15203](https://togithub.com/vitejs/vite/issues/15203 )) ([d8001c5](https://togithub.com/vitejs/vite/commit/d8001c5 )), closes [#​15203](https://togithub.com/vitejs/vite/issues/15203 )
- fix: esbuild glob import resolve error ([#​15140](https://togithub.com/vitejs/vite/issues/15140 )) ([676804d](https://togithub.com/vitejs/vite/commit/676804d )), closes [#​15140](https://togithub.com/vitejs/vite/issues/15140 )
- fix: json error with position ([#​15225](https://togithub.com/vitejs/vite/issues/15225 )) ([14be75f](https://togithub.com/vitejs/vite/commit/14be75f )), closes [#​15225](https://togithub.com/vitejs/vite/issues/15225 )
- fix: proxy html path should be encoded ([#​15223](https://togithub.com/vitejs/vite/issues/15223 )) ([5b85040](https://togithub.com/vitejs/vite/commit/5b85040 )), closes [#​15223](https://togithub.com/vitejs/vite/issues/15223 )
- fix(deps): update all non-major dependencies ([#​15233](https://togithub.com/vitejs/vite/issues/15233 )) ([ad3adda](https://togithub.com/vitejs/vite/commit/ad3adda )), closes [#​15233](https://togithub.com/vitejs/vite/issues/15233 )
- fix(hmr): don't consider CSS dep as a circular dep ([#​15229](https://togithub.com/vitejs/vite/issues/15229 )) ([5f2cdec](https://togithub.com/vitejs/vite/commit/5f2cdec )), closes [#​15229](https://togithub.com/vitejs/vite/issues/15229 )
- feat: add '\*.mov' to client.d.ts ([#​15189](https://togithub.com/vitejs/vite/issues/15189 )) ([d93a211](https://togithub.com/vitejs/vite/commit/d93a211 )), closes [#​15189](https://togithub.com/vitejs/vite/issues/15189 )
- feat(server): allow disabling built-in shortcuts ([#​15218](https://togithub.com/vitejs/vite/issues/15218 )) ([7fd7c6c](https://togithub.com/vitejs/vite/commit/7fd7c6c )), closes [#​15218](https://togithub.com/vitejs/vite/issues/15218 )
- chore: replace 'some' with 'includes' in resolveEnvPrefix ([#​15220](https://togithub.com/vitejs/vite/issues/15220 )) ([ee12f30](https://togithub.com/vitejs/vite/commit/ee12f30 )), closes [#​15220](https://togithub.com/vitejs/vite/issues/15220 )
- chore: update the website url for homepage in package.json ([#​15181](https://togithub.com/vitejs/vite/issues/15181 )) ([282bd8f](https://togithub.com/vitejs/vite/commit/282bd8f )), closes [#​15181](https://togithub.com/vitejs/vite/issues/15181 )
- chore: update vitest to 1.0.0-beta.6 ([#​15194](https://togithub.com/vitejs/vite/issues/15194 )) ([2fce647](https://togithub.com/vitejs/vite/commit/2fce647 )), closes [#​15194](https://togithub.com/vitejs/vite/issues/15194 )
- refactor: make HMR agnostic to environment ([#​15179](https://togithub.com/vitejs/vite/issues/15179 )) ([0571b7c](https://togithub.com/vitejs/vite/commit/0571b7c )), closes [#​15179](https://togithub.com/vitejs/vite/issues/15179 )
- refactor: use dedicated regex methods ([#​15228](https://togithub.com/vitejs/vite/issues/15228 )) ([0348137](https://togithub.com/vitejs/vite/commit/0348137 )), closes [#​15228](https://togithub.com/vitejs/vite/issues/15228 )
- perf: remove debug only prettifyUrl call ([#​15204](https://togithub.com/vitejs/vite/issues/15204 )) ([73e971f](https://togithub.com/vitejs/vite/commit/73e971f )), closes [#​15204](https://togithub.com/vitejs/vite/issues/15204 )
- perf: skip computing sourceRoot in injectSourcesContent ([#​15207](https://togithub.com/vitejs/vite/issues/15207 )) ([1df1fd1](https://togithub.com/vitejs/vite/commit/1df1fd1 )), closes [#​15207](https://togithub.com/vitejs/vite/issues/15207 )
### [`v5.0.4`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small504-2023-11-29-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.3...v5.0.4 )
- fix: bindCLIShortcuts to proper server ([#​15162](https://togithub.com/vitejs/vite/issues/15162 )) ([67ac572](https://togithub.com/vitejs/vite/commit/67ac572 )), closes [#​15162](https://togithub.com/vitejs/vite/issues/15162 )
- fix: revert "fix: js fallback sourcemap content should be using original content ([#​15135](https://togithub.com/vitejs/vite/issues/15135 ))" ([#​15178](https://togithub.com/vitejs/vite/issues/15178 )) ([d2a2493](https://togithub.com/vitejs/vite/commit/d2a2493 )), closes [#​15135](https://togithub.com/vitejs/vite/issues/15135 ) [#​15178](https://togithub.com/vitejs/vite/issues/15178 )
- fix(define): allow define process.env ([#​15173](https://togithub.com/vitejs/vite/issues/15173 )) ([ec401da](https://togithub.com/vitejs/vite/commit/ec401da )), closes [#​15173](https://togithub.com/vitejs/vite/issues/15173 )
- fix(resolve): respect order of browser in mainFields when resolving ([#​15137](https://togithub.com/vitejs/vite/issues/15137 )) ([4a111aa](https://togithub.com/vitejs/vite/commit/4a111aa )), closes [#​15137](https://togithub.com/vitejs/vite/issues/15137 )
- feat: preserve vite.middlewares connect instance after restarts ([#​15166](https://togithub.com/vitejs/vite/issues/15166 )) ([9474c4b](https://togithub.com/vitejs/vite/commit/9474c4b )), closes [#​15166](https://togithub.com/vitejs/vite/issues/15166 )
- refactor: align with Promise.withResolvers() ([#​15171](https://togithub.com/vitejs/vite/issues/15171 )) ([642f9bc](https://togithub.com/vitejs/vite/commit/642f9bc )), closes [#​15171](https://togithub.com/vitejs/vite/issues/15171 )
### [`v5.0.3`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small503-2023-11-28-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.2...v5.0.3 )
- fix: `generateCodeFrame` infinite loop ([#​15093](https://togithub.com/vitejs/vite/issues/15093 )) ([6619de7](https://togithub.com/vitejs/vite/commit/6619de7 )), closes [#​15093](https://togithub.com/vitejs/vite/issues/15093 )
- fix: js fallback sourcemap content should be using original content ([#​15135](https://togithub.com/vitejs/vite/issues/15135 )) ([227d56d](https://togithub.com/vitejs/vite/commit/227d56d )), closes [#​15135](https://togithub.com/vitejs/vite/issues/15135 )
- fix(css): render correct asset url when CSS chunk name is nested ([#​15154](https://togithub.com/vitejs/vite/issues/15154 )) ([ef403c0](https://togithub.com/vitejs/vite/commit/ef403c0 )), closes [#​15154](https://togithub.com/vitejs/vite/issues/15154 )
- fix(css): use non-nested chunk name if facadeModule is not CSS file ([#​15155](https://togithub.com/vitejs/vite/issues/15155 )) ([811e392](https://togithub.com/vitejs/vite/commit/811e392 )), closes [#​15155](https://togithub.com/vitejs/vite/issues/15155 )
- fix(dev): bind plugin context functions ([#​14569](https://togithub.com/vitejs/vite/issues/14569 )) ([cb3243c](https://togithub.com/vitejs/vite/commit/cb3243c )), closes [#​14569](https://togithub.com/vitejs/vite/issues/14569 )
- chore(deps): update all non-major dependencies ([#​15145](https://togithub.com/vitejs/vite/issues/15145 )) ([7ff2c0a](https://togithub.com/vitejs/vite/commit/7ff2c0a )), closes [#​15145](https://togithub.com/vitejs/vite/issues/15145 )
- build: handle latest json-stable-stringify replacement ([#​15049](https://togithub.com/vitejs/vite/issues/15049 )) ([bcc4a61](https://togithub.com/vitejs/vite/commit/bcc4a61 )), closes [#​15049](https://togithub.com/vitejs/vite/issues/15049 )
### [`v5.0.2`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small502-2023-11-21-small )
[Compare Source](https://togithub.com/vitejs/vite/compare/v5.0.1...v5.0.2 )
- fix: make htmlFallback more permissive ([#​15059](https://togithub.com/vitejs/vite/issues/15059 )) ([6fcceeb](https://togithub.com/vitejs/vite/commit/6fcceeb )), closes [#​15059](https://togithub.com/vitejs/vite/issues/15059 )
### [`v5.0.1`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small501-2023-11-21-small )
- test: avoid read check when running as root ([#​14884](https://togithub.com/vitejs/vite/issues/14884 )) ([1d9516c](https://togithub.com/vitejs/vite/commit/1d9516c )), closes [#​14884](https://togithub.com/vitejs/vite/issues/14884 )
- perf(hmr): skip traversed modules when checking circular imports ([#​15034](https://togithub.com/vitejs/vite/issues/15034 )) ([41e437f](https://togithub.com/vitejs/vite/commit/41e437f )), closes [#​15034](https://togithub.com/vitejs/vite/issues/15034 )
- fix: run htmlFallbackMiddleware for no accept header requests ([#​15025](https://togithub.com/vitejs/vite/issues/15025 )) ([b93dfe3](https://togithub.com/vitejs/vite/commit/b93dfe3 )), closes [#​15025](https://togithub.com/vitejs/vite/issues/15025 )
- fix: update type CSSModulesOptions interface ([#​14987](https://togithub.com/vitejs/vite/issues/14987 )) ([d0b2153](https://togithub.com/vitejs/vite/commit/d0b2153 )), closes [#​14987](https://togithub.com/vitejs/vite/issues/14987 )
- fix(legacy): error in build with --watch and manifest enabled ([#​14450](https://togithub.com/vitejs/vite/issues/14450 )) ([b9ee620](https://togithub.com/vitejs/vite/commit/b9ee620 )), closes [#​14450](https://togithub.com/vitejs/vite/issues/14450 )
- chore: add comment about crossorigin attribute for script module ([#​15040](https://togithub.com/vitejs/vite/issues/15040 )) ([03c371e](https://togithub.com/vitejs/vite/commit/03c371e )), closes [#​15040](https://togithub.com/vitejs/vite/issues/15040 )
- chore: cleanup v5 beta changelog ([#​14694](https://togithub.com/vitejs/vite/issues/14694 )) ([531d3cb](https://togithub.com/vitejs/vite/commit/531d3cb )), closes [#​14694](https://togithub.com/vitejs/vite/issues/14694 )
### [`v5.0.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#500-2023-11-16 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-08 09:57:11 +00:00
LongYinan
2269e68bd9
chore: bump up p-queue version to v8 ( #5235 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [p-queue](https://togithub.com/sindresorhus/p-queue ) | [`^7.4.1` -> `^8.0.0`](https://renovatebot.com/diffs/npm/p-queue/7.4.1/8.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>sindresorhus/p-queue (p-queue)</summary>
### [`v8.0.0`](https://togithub.com/sindresorhus/p-queue/releases/tag/v8.0.0 )
[Compare Source](https://togithub.com/sindresorhus/p-queue/compare/v7.4.1...v8.0.0 )
##### Breaking
- Require Node.js 18 [`68dfe95`](https://togithub.com/sindresorhus/p-queue/commit/68dfe95 )
- Removed the `AbortError` export. It now throws the built-in DOMException when using the `signal` option. [`68dfe95`](https://togithub.com/sindresorhus/p-queue/commit/68dfe95 )
- TypeScript: Rename `DefaultAddOptions` type to `QueueAddOptions`
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-08 08:06:46 +00:00
LongYinan
285fd367eb
chore: bump up undici version to v6 ( #5204 )
...
[](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 )) | [`^5.27.2` -> `^6.0.0`](https://renovatebot.com/diffs/npm/undici/5.28.0/6.0.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>nodejs/undici (undici)</summary>
### [`v6.0.1`](https://togithub.com/nodejs/undici/releases/tag/v6.0.1 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v6.0.0...v6.0.1 )
#### What's Changed
- fix: stream error timings by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2497 ](https://togithub.com/nodejs/undici/pull/2497 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v6.0.0...v6.0.1
### [`v6.0.0`](https://togithub.com/nodejs/undici/releases/tag/v6.0.0 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v5.28.2...v6.0.0 )
#### What's Changed
- 16 eol by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2480 ](https://togithub.com/nodejs/undici/pull/2480 )
- update spec & wpts by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2482 ](https://togithub.com/nodejs/undici/pull/2482 )
- version cleanup by [@​KhafraDev](https://togithub.com/KhafraDev ) in [https://github.com/nodejs/undici/pull/2483 ](https://togithub.com/nodejs/undici/pull/2483 )
- perf: avoid Response initialization by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2489 ](https://togithub.com/nodejs/undici/pull/2489 )
- perf: optimize `parseHeaders` by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2492 ](https://togithub.com/nodejs/undici/pull/2492 )
- chore: fix typo by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2490 ](https://togithub.com/nodejs/undici/pull/2490 )
- feat: print attempted addresses on ConnectTimeoutError by [@​fengmk2](https://togithub.com/fengmk2 ) in [https://github.com/nodejs/undici/pull/2494 ](https://togithub.com/nodejs/undici/pull/2494 )
- Expose HTTP errors that are not meant to be retried by [@​MzUgM](https://togithub.com/MzUgM ) in [https://github.com/nodejs/undici/pull/2496 ](https://togithub.com/nodejs/undici/pull/2496 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v5.28.2...v6.0.0
### [`v5.28.2`](https://togithub.com/nodejs/undici/releases/tag/v5.28.2 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v5.28.1...v5.28.2 )
#### What's Changed
- fix: remove optional chainning for compatible with Nodejs12 and below by [@​bugb](https://togithub.com/bugb ) in [https://github.com/nodejs/undici/pull/2470 ](https://togithub.com/nodejs/undici/pull/2470 )
- fix: remove `node:` prefix by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2471 ](https://togithub.com/nodejs/undici/pull/2471 )
- perf: avoid Headers initialization by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2468 ](https://togithub.com/nodejs/undici/pull/2468 )
- fix: handle SharedArrayBuffer correctly by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2466 ](https://togithub.com/nodejs/undici/pull/2466 )
- fix: Add `null` type to `signal` in `RequestInit` by [@​gebsh](https://togithub.com/gebsh ) in [https://github.com/nodejs/undici/pull/2455 ](https://togithub.com/nodejs/undici/pull/2455 )
- fix: correctly handle data URL with hashes. by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2475 ](https://togithub.com/nodejs/undici/pull/2475 )
- fix: check response for timinginfo allow flag by [@​ToshB](https://togithub.com/ToshB ) in [https://github.com/nodejs/undici/pull/2477 ](https://togithub.com/nodejs/undici/pull/2477 )
- Make call to onBodySent conditional in RetryHandler by [@​MzUgM](https://togithub.com/MzUgM ) in [https://github.com/nodejs/undici/pull/2478 ](https://togithub.com/nodejs/undici/pull/2478 )
- refactor: better integrity check by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2462 ](https://togithub.com/nodejs/undici/pull/2462 )
- fix: Added support for inline URL username:password proxy auth by [@​matt-way](https://togithub.com/matt-way ) in [https://github.com/nodejs/undici/pull/2473 ](https://togithub.com/nodejs/undici/pull/2473 )
- build(deps-dev): bump jsdom from 22.1.0 to 23.0.0 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2472 ](https://togithub.com/nodejs/undici/pull/2472 )
- build(deps-dev): bump sinon from 16.1.3 to 17.0.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2405 ](https://togithub.com/nodejs/undici/pull/2405 )
- build(deps): bump ossf/scorecard-action from 2.2.0 to 2.3.1 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2396 ](https://togithub.com/nodejs/undici/pull/2396 )
- build(deps): bump actions/setup-node from 3.8.1 to 4.0.0 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2395 ](https://togithub.com/nodejs/undici/pull/2395 )
- build(deps): bump step-security/harden-runner from 2.5.0 to 2.6.0 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2392 ](https://togithub.com/nodejs/undici/pull/2392 )
- build(deps-dev): bump formdata-node from 4.4.1 to 6.0.3 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2389 ](https://togithub.com/nodejs/undici/pull/2389 )
- build(deps): bump actions/upload-artifact from 3.1.2 to 3.1.3 by [@​dependabot](https://togithub.com/dependabot ) in [https://github.com/nodejs/undici/pull/2302 ](https://togithub.com/nodejs/undici/pull/2302 )
#### New Contributors
- [@​bugb](https://togithub.com/bugb ) made their first contribution in [https://github.com/nodejs/undici/pull/2470 ](https://togithub.com/nodejs/undici/pull/2470 )
- [@​gebsh](https://togithub.com/gebsh ) made their first contribution in [https://github.com/nodejs/undici/pull/2455 ](https://togithub.com/nodejs/undici/pull/2455 )
- [@​ToshB](https://togithub.com/ToshB ) made their first contribution in [https://github.com/nodejs/undici/pull/2477 ](https://togithub.com/nodejs/undici/pull/2477 )
- [@​MzUgM](https://togithub.com/MzUgM ) made their first contribution in [https://github.com/nodejs/undici/pull/2478 ](https://togithub.com/nodejs/undici/pull/2478 )
- [@​matt-way](https://togithub.com/matt-way ) made their first contribution in [https://github.com/nodejs/undici/pull/2473 ](https://togithub.com/nodejs/undici/pull/2473 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v5.28.1...v5.28.2
### [`v5.28.1`](https://togithub.com/nodejs/undici/releases/tag/v5.28.1 )
[Compare Source](https://togithub.com/nodejs/undici/compare/v5.28.0...v5.28.1 )
#### What's Changed
- perf: Improve `normalizeMethod` by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2456 ](https://togithub.com/nodejs/undici/pull/2456 )
- fix: dispatch error handling by [@​ronag](https://togithub.com/ronag ) in [https://github.com/nodejs/undici/pull/2459 ](https://togithub.com/nodejs/undici/pull/2459 )
- perf(request): optimize if headers are given by [@​tsctx](https://togithub.com/tsctx ) in [https://github.com/nodejs/undici/pull/2454 ](https://togithub.com/nodejs/undici/pull/2454 )
**Full Changelog**: https://github.com/nodejs/undici/compare/v5.28.0...v5.28.1
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-08 06:57:56 +00:00
LongYinan
0be087b5d7
ci: fix rust build during deployment ( #5233 )
2023-12-08 06:39:16 +00:00
LongYinan
37a32d1f7d
chore: bump up rollup version to v4 ( #5202 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [rollup](https://rollupjs.org/ ) ([source](https://togithub.com/rollup/rollup )) | [`^3.29.4` -> `^4.0.0`](https://renovatebot.com/diffs/npm/rollup/3.29.4/4.6.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>rollup/rollup (rollup)</summary>
### [`v4.6.1`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#461 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.6.0...v4.6.1 )
*2023-11-30*
##### Bug Fixes
- Resolve a situation where declaring the same `var` several times was considered a conflict ([#​5276](https://togithub.com/rollup/rollup/issues/5276 ))
##### Pull Requests
- [#​5275](https://togithub.com/rollup/rollup/pull/5275 ): Add TNG as special sponsor ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5276](https://togithub.com/rollup/rollup/pull/5276 ): Allow to redeclare parameters multiple times in nested scopes ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.6.0`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#460 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.5.2...v4.6.0 )
*2023-11-26*
##### Features
- Allow `this.addWatchFile` in all plugin hooks ([#​5270](https://togithub.com/rollup/rollup/issues/5270 ))
##### Bug Fixes
- Show helpful error when native binaries are not installed due to an `npm` issue ([#​5267](https://togithub.com/rollup/rollup/issues/5267 ))
- Do not access `this` context in `this.addWatchFile` so it does not need to be bound when passed around ([#​5270](https://togithub.com/rollup/rollup/issues/5270 ))
##### Pull Requests
- [#​5267](https://togithub.com/rollup/rollup/pull/5267 ): Add friendly error for npm bug ([@​sapphi-red](https://togithub.com/sapphi-red ))
- [#​5270](https://togithub.com/rollup/rollup/pull/5270 ): Allow this.addWatchFile in all hooks ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5272](https://togithub.com/rollup/rollup/pull/5272 ): Debug deployed graphs ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.5.2`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#452 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.5.1...v4.5.2 )
*2023-11-24*
##### Bug Fixes
- Handle files with UTF-8 BOM when using the commonjs plugin ([#​5268](https://togithub.com/rollup/rollup/issues/5268 ))
##### Pull Requests
- [#​5268](https://togithub.com/rollup/rollup/pull/5268 ): fix: strip BOM before calling transform hook ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5269](https://togithub.com/rollup/rollup/pull/5269 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
### [`v4.5.1`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#451 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.5.0...v4.5.1 )
*2023-11-21*
##### Bug Fixes
- Do not error when a function expression uses the same name for a parameter and its id ([#​5262](https://togithub.com/rollup/rollup/issues/5262 ))
##### Pull Requests
- [#​5257](https://togithub.com/rollup/rollup/pull/5257 ): Fix graphs in docs, improve REPL colors ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5262](https://togithub.com/rollup/rollup/pull/5262 ): Allow function expression parameters to shadow the function id ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.5.0`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#450 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.4.1...v4.5.0 )
*2023-11-18*
##### Bug Fixes
- Show a proper error when using native Rollup on armv7 musl Linux ([#​5255](https://togithub.com/rollup/rollup/issues/5255 ))
##### Pull Requests
- [#​5251](https://togithub.com/rollup/rollup/pull/5251 ): doc fix import assertions to attributes in API plugin development page ([@​lhapaipai](https://togithub.com/lhapaipai ))
- [#​5253](https://togithub.com/rollup/rollup/pull/5253 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5255](https://togithub.com/rollup/rollup/pull/5255 ): Error for armv7 musl build ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.4.1`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#441 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.4.0...v4.4.1 )
*2023-11-14*
##### Bug Fixes
- Do not flag duplicate function declarations in function scopes as syntax errors ([#​5248](https://togithub.com/rollup/rollup/issues/5248 ))
##### Pull Requests
- [#​5248](https://togithub.com/rollup/rollup/pull/5248 ): Allow functions to redeclare vars and functions in function scopes ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.4.0`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#440 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.3.1...v4.4.0 )
*2023-11-12*
##### Features
- Replace SWC linting with faster internal linting to error on duplicate declarations etc. ([#​5207](https://togithub.com/rollup/rollup/issues/5207 ))
##### Bug Fixes
- Show proper error when an entry exports non-existing bindings ([#​5207](https://togithub.com/rollup/rollup/issues/5207 ))
##### Pull Requests
- [#​5207](https://togithub.com/rollup/rollup/pull/5207 ): perf: run lint while constructing nodes ([@​sapphi-red](https://togithub.com/sapphi-red ))
### [`v4.3.1`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#431 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.3.0...v4.3.1 )
*2023-11-11*
##### Bug Fixes
- Fix rename error when handling errors in watch mode ([#​5240](https://togithub.com/rollup/rollup/issues/5240 ))
- Prevent warning when using `--forceExit` ([#​5245](https://togithub.com/rollup/rollup/issues/5245 ))
##### Pull Requests
- [#​5240](https://togithub.com/rollup/rollup/pull/5240 ): fix: allow the name of Rollup Error to be modified ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5243](https://togithub.com/rollup/rollup/pull/5243 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5245](https://togithub.com/rollup/rollup/pull/5245 ): Ensure --forceExit works without warning ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.3.0`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#430 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.2.0...v4.3.0 )
*2023-11-03*
##### Features
- Add `forceExit` CLI flag for situations where the CLI does not exit gracefully ([#​5195](https://togithub.com/rollup/rollup/issues/5195 ))
##### Bug Fixes
- Properly catch errors when removing a temporary config file fails ([#​5198](https://togithub.com/rollup/rollup/issues/5198 ))
##### Pull Requests
- [#​5195](https://togithub.com/rollup/rollup/pull/5195 ): Add `forceExit` CLI flag ([@​raphael-theriault-swi](https://togithub.com/raphael-theriault-swi ))
- [#​5198](https://togithub.com/rollup/rollup/pull/5198 ): fix: prevent `ENOENT` error on temp config removal ([@​jzempel](https://togithub.com/jzempel ))
- [#​5237](https://togithub.com/rollup/rollup/pull/5237 ): chore: remove unused files and deps ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5238](https://togithub.com/rollup/rollup/pull/5238 ): chore(deps): update dependency eslint-plugin-unicorn to v49 ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5239](https://togithub.com/rollup/rollup/pull/5239 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
### [`v4.2.0`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#420 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.1.6...v4.2.0 )
*2023-10-31*
##### Features
- Run parsing in multiple threads and introduce `parseAstAsync` helper function ([#​5202](https://togithub.com/rollup/rollup/issues/5202 ))
##### Pull Requests
- [#​5202](https://togithub.com/rollup/rollup/pull/5202 ): perf: introduce `parseAstAsync` and parallelize parsing AST ([@​sapphi-red](https://togithub.com/sapphi-red ))
### [`v4.1.6`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#416 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.1.5...v4.1.6 )
*2023-10-31*
##### Bug Fixes
- Fix a bug where emtpy block comments in certain positions could freeze Rollup ([#​5231](https://togithub.com/rollup/rollup/issues/5231 ))
##### Pull Requests
- [#​5228](https://togithub.com/rollup/rollup/pull/5228 ): build: ensure rust toolchain components for linting are installed ([@​jerome-benoit](https://togithub.com/jerome-benoit ))
- [#​5231](https://togithub.com/rollup/rollup/pull/5231 ): Render emtpy block comments after tree-shaken statements ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5232](https://togithub.com/rollup/rollup/pull/5232 ): Revert specifying rustfmt and clippy in toolchain file as it breaks REPL build ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.1.5`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#415 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.1.4...v4.1.5 )
*2023-10-28*
##### Bug Fixes
- Fix an issue where actual entries that were also implicit entries could remain implicit ([#​5220](https://togithub.com/rollup/rollup/issues/5220 ))
##### Pull Requests
- [#​5209](https://togithub.com/rollup/rollup/pull/5209 ): Document Vite workaround for browser build ([@​curran](https://togithub.com/curran ))
- [#​5215](https://togithub.com/rollup/rollup/pull/5215 ): chore(deps): update dependency lint-staged to v15 ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5216](https://togithub.com/rollup/rollup/pull/5216 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5218](https://togithub.com/rollup/rollup/pull/5218 ): Update license plugin ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5219](https://togithub.com/rollup/rollup/pull/5219 ): Fix error highlight in REPL ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5220](https://togithub.com/rollup/rollup/pull/5220 ): Fix race condition when emitting implicitly dependent entries ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5224](https://togithub.com/rollup/rollup/pull/5224 ): chore(deps): update actions/setup-node action to v4 ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5225](https://togithub.com/rollup/rollup/pull/5225 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
### [`v4.1.4`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#414 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.1.3...v4.1.4 )
*2023-10-16*
##### Bug Fixes
- Reduce sizes [@​rollup/browser](https://togithub.com/rollup/browser ) and [@​rollup/wasm-node](https://togithub.com/rollup/wasm-node ) WASM artifacts ([#​5204](https://togithub.com/rollup/rollup/issues/5204 ))
##### Pull Requests
- [#​5204](https://togithub.com/rollup/rollup/pull/5204 ): perf: shrink wasm size by avoid importing browserslist ([@​sapphi-red](https://togithub.com/sapphi-red ))
### [`v4.1.3`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#413 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.1.1...v4.1.3 )
*2023-10-15*
##### Bug Fixes
- Fix WASM build as hash function was not exported ([#​5203](https://togithub.com/rollup/rollup/issues/5203 ))
##### Pull Requests
- [#​5203](https://togithub.com/rollup/rollup/pull/5203 ): fix: export xxhashBase64Url from wasm ([@​sapphi-red](https://togithub.com/sapphi-red ))
### [`v4.1.1`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#411 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.1.0...v4.1.1 )
*2023-10-15*
##### Bug Fixes
- Improve Node parsing performance ([#​5201](https://togithub.com/rollup/rollup/issues/5201 ))
##### Pull Requests
- [#​5201](https://togithub.com/rollup/rollup/pull/5201 ): perf: use mimalloc for bindings_napi ([@​sapphi-red](https://togithub.com/sapphi-red ))
### [`v4.1.0`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#410 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.0.2...v4.1.0 )
*2023-10-14*
##### Features
- Reduce memory usage of Rollup builds ([#​5133](https://togithub.com/rollup/rollup/issues/5133 ))
##### Pull Requests
- [#​5133](https://togithub.com/rollup/rollup/pull/5133 ): perf: reducing ast node memory overhead ([@​thebanjomatic](https://togithub.com/thebanjomatic ))
- [#​5177](https://togithub.com/rollup/rollup/pull/5177 ): chore: explicitly set rust toolchain channel ([@​cijiugechu](https://togithub.com/cijiugechu ))
- [#​5179](https://togithub.com/rollup/rollup/pull/5179 ): Update migration guide for Rollup 4 ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5180](https://togithub.com/rollup/rollup/pull/5180 ): Resolve clippy errors ([@​cijiugechu](https://togithub.com/cijiugechu ))
- [#​5183](https://togithub.com/rollup/rollup/pull/5183 ): Add clippy to pipeline and fix remaining issues ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5184](https://togithub.com/rollup/rollup/pull/5184 ): docs: fix code example for `onLog` ([@​tjenkinson](https://togithub.com/tjenkinson ))
- [#​5186](https://togithub.com/rollup/rollup/pull/5186 ): Improve wording for native artifacts in migration guide ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5190](https://togithub.com/rollup/rollup/pull/5190 ): test: add verifyAst type ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5196](https://togithub.com/rollup/rollup/pull/5196 ): chore(deps): update dependency rollup to v4 ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5197](https://togithub.com/rollup/rollup/pull/5197 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
### [`v4.0.2`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#402 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.0.1...v4.0.2 )
*2023-10-06*
##### Bug Fixes
- Fix annotation detection logic to not fail when a non-ASCII character precedes a double underscore ([#​5178](https://togithub.com/rollup/rollup/issues/5178 ))
##### Pull Requests
- [#​5178](https://togithub.com/rollup/rollup/pull/5178 ): Handle special characters before double underscores ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.0.1`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#401 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v4.0.0...v4.0.1 )
*2023-10-06*
##### Bug Fixes
- Do not panic on trailing semicolons after class methods ([#​5173](https://togithub.com/rollup/rollup/issues/5173 ))
- Add artifact for arm64 linux musl target ([#​5176](https://togithub.com/rollup/rollup/issues/5176 ))
##### Pull Requests
- [#​5172](https://togithub.com/rollup/rollup/pull/5172 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5173](https://togithub.com/rollup/rollup/pull/5173 ): fix: ignores empty statements in class body that is returned by SWC parser ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5176](https://togithub.com/rollup/rollup/pull/5176 ): Fix linux arm musl build ([@​lukastaegert](https://togithub.com/lukastaegert ))
### [`v4.0.0`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#400 )
[Compare Source](https://togithub.com/rollup/rollup/compare/v3.29.4...v4.0.0 )
*2023-10-05*
##### BREAKING CHANGES
##### General Changes
- The minimal required Node version is now 18.0.0 ([#​5142](https://togithub.com/rollup/rollup/issues/5142 ))
- The browser build now relies on a WASM artifact that needs to be provided as well ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- The NodeJS build now relies on an optional native binary; for unsupported platforms, users can use the `@rollup/wasm-node` package that has the same interface as Rollup but relies on WASM artifacts ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- The `INVALID_IMPORT_ASSERTION` error code has been replaced with `INVALID_IMPORT_ATTRIBUTE` ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- Rollup will now warn for `@__PURE__` and `@__NO_SIDE_EFFECTS__` annotations in invalid locations ([#​5165](https://togithub.com/rollup/rollup/issues/5165 ))
- If an entry module starts with a shebang comment `#!...`, this comment will be prepended to the output for `es` and `cjs` formats ([#​5163](https://togithub.com/rollup/rollup/issues/5163 ))
- File hashes will now use url-safe base64 encoded hashes ([#​5155](https://togithub.com/rollup/rollup/issues/5155 ))
- The maximum hash length has been reduced to 22 characters ([#​5155](https://togithub.com/rollup/rollup/issues/5155 ))
- The `RollupWarning` type has been removed in favor of the `RollupLog` type ([#​5147](https://togithub.com/rollup/rollup/issues/5147 ))
##### Changes to Rollup Options
- Acorn plugins are no longer supported, the `acornInjectPlugins` option has been removed ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- The `acorn` option has been removed ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- `output.externalImportAssertions` has been deprecated in favor of `output.externalImportAttributes` ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- `inlineDynamicImports`, `manualChunks` and `preserveModules` have been removed on input option level: Please use the corresponding output options of the same names ([#​5143](https://togithub.com/rollup/rollup/issues/5143 ))
- Removed output options ([#​5143](https://togithub.com/rollup/rollup/issues/5143 )):
- `output.experimentalDeepDynamicChunkOptimization`: This option is no longer needed as Rollup now always runs the full chunking algorithm
- `output.dynamicImportFunction`: Use the `renderDynamicImport` plugin hook instead
- `output.namespaceToStringTag`: Use `output.generatedCode.symbols` instead
- `output.preferConst`: Use `output.generatedCode.constBindings` instead
##### Plugin API Changes
- For `this.resolve`, the default of the `skipSelf` option is now `true` ([#​5142](https://togithub.com/rollup/rollup/issues/5142 ))
- `this.parse` now only supports the `allowReturnOutsideFunction` option for now ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- Import assertions now use the [new import attribute AST structure](https://togithub.com/estree/estree/blob/master/experimental/import-attributes.md ) ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- "assertions" have been replaced with "attributes" in various places of the plugin interface ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- If the import of a module id is handled by the `load` hook of a plugin, `rollup.watch` no longer watches the actual file if the module id corresponds to a real path; if this is intended, then the plugin is responsible for calling `this.addWatchFile` for any dependency files ([#​5150](https://togithub.com/rollup/rollup/issues/5150 ))
- The normalized input options provided by `buildStart` and other hooks no longer contain an `onwarn` handler; plugins should use `onLog` instead ([#​5147](https://togithub.com/rollup/rollup/issues/5147 ))
- `this.moduleIds` has been removed from the plugin context: Use `this.getModuleIds()` instead ([#​5143](https://togithub.com/rollup/rollup/issues/5143 ))
- The `hasModuleSideEffects` flag has been removed from the `ModuleInfo` returned by `this.getModuleInfo()`: Use `moduleSideEffects` on the `ModuleInfo` instead ([#​5143](https://togithub.com/rollup/rollup/issues/5143 ))
##### Features
- Improve parsing speed by switching to a native SWC-based parser ([#​5073](https://togithub.com/rollup/rollup/issues/5073 ))
- Rollup will now warn for `@__PURE__` and `@__NO_SIDE_EFFECTS__` annotations in invalid locations ([#​5165](https://togithub.com/rollup/rollup/issues/5165 ))
- The parser is now exposed as a separate export `parseAst` ([#​5169](https://togithub.com/rollup/rollup/issues/5169 ))
##### Bug Fixes
- Rollup no longer tries to watch virtual files if their name corresponds to an actual file name; instead, plugins handle watching via `this.addWatchFile()` ([#​5150](https://togithub.com/rollup/rollup/issues/5150 ))
##### Pull Requests
- [#​5073](https://togithub.com/rollup/rollup/pull/5073 ): \[v4.0] Switch parser to SWC and introduce native/WASM code ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5142](https://togithub.com/rollup/rollup/pull/5142 ): \[v4.0] Set the default of skipSelf to true ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5143](https://togithub.com/rollup/rollup/pull/5143 ): \[v4.0] Remove deprecated features ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5144](https://togithub.com/rollup/rollup/pull/5144 ): \[v4.0] Imporve the performance of generating ast and rollup ast nodes ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5147](https://togithub.com/rollup/rollup/pull/5147 ): \[v4.0] Remove onwarn from normalized input options ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5150](https://togithub.com/rollup/rollup/pull/5150 ): \[v4.0] feat: Do not watch files anymore if their content is returned by the load hook ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5154](https://togithub.com/rollup/rollup/pull/5154 ): \[v4.0] Add parse option to allow return outside function ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5155](https://togithub.com/rollup/rollup/pull/5155 ): \[v4.0] feat: implement hashing content in Rust ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5157](https://togithub.com/rollup/rollup/pull/5157 ): \[v4.0] Handle empty exports ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5160](https://togithub.com/rollup/rollup/pull/5160 ): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate )\[bot])
- [#​5163](https://togithub.com/rollup/rollup/pull/5163 ): \[v4.0] feat: preserve shebang in entry module for CJS and ESM outputs ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5164](https://togithub.com/rollup/rollup/pull/5164 ): \[v4.0] fix: also strip BOM from code strings in JS ([@​TrickyPi](https://togithub.com/TrickyPi ))
- [#​5165](https://togithub.com/rollup/rollup/pull/5165 ): \[v4.0] warn for invalid annotations ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5168](https://togithub.com/rollup/rollup/pull/5168 ): \[v4.0] Ensure we support new import attribute "with" syntax ([@​lukastaegert](https://togithub.com/lukastaegert ))
- [#​5169](https://togithub.com/rollup/rollup/pull/5169 ): \[v4.0] Expose parser ([@​lukastaegert](https://togithub.com/lukastaegert ))
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-08 06:08:54 +00:00
LongYinan
e93b497231
chore: also set version to helm charts in set-version.sh ( #5100 )
2023-12-08 13:53:23 +08:00
EYHN
df439877bd
fix(core): add requestidlecallback polyfill for safari ( #5231 )
2023-12-08 05:21:03 +00:00
liuyi
17d584b336
refactor(server): use events system ( #5149 )
2023-12-08 05:00:58 +00:00
JimmFly
52cfe4521a
feat(core): add present to edgeless sharing ( #5140 )
2023-12-08 04:44:08 +00:00
Peng Xiao
f88e67f5ab
fix(core): flaky local avartar test ( #5229 )
...
it seems we should not reopen workspace card list just after created a new workspace
2023-12-08 04:01:36 +00:00
Peng Xiao
fcd43033fe
fix(electron): sync settings from localStorage -> atom -> electron ( #5020 )
...
- moved `appSettingAtom` to infra since we now have different packages that depends on it. There is no better place to fit in for now
- use atomEffect to sync setting changes to updater related configs to Electron side
- refactored how Electron reacts to updater config changes.
2023-12-08 03:20:02 +00:00
Umar Faiz
453d4db713
fix: close font calt to avoid render twinkle ( #4969 )
2023-12-08 03:08:59 +00:00
Rakhee Singh
780ffd94dc
feat(core): added new filter for last n days ( #5167 )
...
Co-authored-by: rakhee28 <rakhee@strings.ai >
Co-authored-by: EYHN <cneyhn@gmail.com >
2023-12-08 11:08:15 +08:00
Peng Xiao
5352736eba
feat(component): new right sidebar ( #5169 )
...
Refactor AFFiNE layout to support new right sidebar.
The new layout:

**Highlights:**
- new sidebar UI/UX
- favoring top-down UI components that are composed by basic building blocks in each route, instead of creating universal component like `WorkspaceHeader` that renders every possible cases (which I think is really hard to maintain)
- remove plugin based solution
**Pros/cons for current plugin-based solution:**
The current solution is somewhat a Dependency Injection (DI) approach, where the layout is defined at the top and UI items can be injected using Jotai atom slots.
This approach works well if we want a fully configurable system with everything being handled by plugins. It provides flexibility for custom extensions.
However, this solution is more suitable for single-page applications where the UI is completely controlled by configuration. It becomes challenging to achieve an optimized and visually appealing UI that remains under our control. An example of such a scenario would be a customizable dashboard like Grafana.
Another drawback of the existing solution is that we need to use Jotai and hooks to access context values, resulting in an unclear data flow within the component hierarchy.
**Alternatively, our approach in this PR** provides layout building blocks such as headers and sidebars, which can then be composed in individual route components. The good is that we have cleaner biz component instead of vague all-in-one layout component (like `<WorkspaceHeader />`).
**Issues of the implementation in this PR:**
Some UI layouts that that seems to be defined at the root layout are now defined in individual route component instead.
New 3-col layout component like the right sidebar still needs some abstraction and they are right now just for the detail editor only.
2023-12-08 01:03:48 +00:00
Peng Xiao
980831f9f1
fix(electron): add debug flag for helper process ( #5223 )
2023-12-07 15:56:09 +00:00
Peng Xiao
ed8e526f71
fix(core): remove duplicate loading component ( #5168 )
2023-12-07 15:34:10 +00:00
Peng Xiao
352bb548f0
fix(core): update noise image ( #5219 )
...
seems https://github.com/toeverything/AFFiNE/pull/4946 not in latest canary.
2023-12-07 15:11:00 +00:00
Joooye_34
761c3c2551
fix(electron): only update db after data changed ( #5226 )
2023-12-07 12:27:53 +00:00
Joooye_34
70c376fac8
chore(core): skip cloud migration testing until page level upgrade implemented ( #5227 )
2023-12-07 11:50:24 +00:00
Yifeng Wang
d507c24570
feat: bump blocksuite ( #5228 )
2023-12-07 19:28:49 +08:00
Yifeng Wang
819f0243d5
feat: bump blocksuite ( #5218 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2023-12-07 18:24:23 +08:00
LongYinan
febe5cc2ae
ci: fix ts-node scripts ( #5225 )
...
- Ref: https://github.com/TypeStrong/ts-node/issues/2094
2023-12-07 09:13:00 +00:00
LongYinan
467d313730
test(server): remove flaky assertion ( #5224 )
2023-12-07 07:28:24 +00:00
JimmFly
7ec8e49b3b
feat(core): add responsive styles to registration page ( #5044 )
...
The responsive style of the login and registration page has been adjusted, with special treatment given to the input.
work for #4843
2023-12-06 10:43:14 +00:00
LongYinan
3e92942bb5
ci: remove cache cleanup job because we are sharing cache cross branches ( #5214 )
2023-12-06 10:32:22 +00:00
LongYinan
1d9454118a
ci: reduce cache pressure on non-Linux platform ( #5213 )
2023-12-06 10:32:18 +00:00
Yifeng Wang
6cbf5b2a92
feat: bump blocksuite ( #5194 )
...
Co-authored-by: AyushAgrawal-A2 <ayushagl06@gmail.com >
2023-12-06 18:15:03 +08:00
LongYinan
2dcb5a3030
chore: bump up google-github-actions/auth action to v2 ( #5197 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [google-github-actions/auth](https://togithub.com/google-github-actions/auth ) | action | major | `v1` -> `v2` |
---
### Release Notes
<details>
<summary>google-github-actions/auth (google-github-actions/auth)</summary>
### [`v2`](https://togithub.com/google-github-actions/auth/releases/tag/v2 )
[Compare Source](https://togithub.com/google-github-actions/auth/compare/v1...v2 )
Floating v2 alias
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-06 09:57:17 +00:00
LongYinan
93a0349fbc
chore: bump up vite version to v4.5.1 [SECURITY] ( #5211 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](https://vitejs.dev ) ([source](https://togithub.com/vitejs/vite/tree/HEAD/packages/vite )) | [`4.5.0` -> `4.5.1`](https://renovatebot.com/diffs/npm/vite/4.5.0/4.5.1 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
### GitHub Vulnerability Alerts
#### [CVE-2023-49293](https://togithub.com/vitejs/vite/security/advisories/GHSA-92r3-m2mg-pj97 )
### Summary
When Vite's HTML transformation is invoked manually via `server.transformIndexHtml`, the original request URL is passed in unmodified, and the `html` being transformed contains inline module scripts (`<script type="module">...</script>`), it is possible to inject arbitrary HTML into the transformed output by supplying a malicious URL query string to `server.transformIndexHtml`.
### Impact
Only apps using `appType: 'custom'` and using the default Vite HTML middleware are affected. The HTML entry must also contain an inline script. The attack requires a user to click on a malicious URL while running the dev server. Restricted files aren't exposed to the attacker.
### Patches
Fixed in vite@5.0.5, vite@4.5.1, vite@4.4.12
### Details
Suppose `index.html` contains an inline module script:
```html
<script type="module">
// Inline script
</script>
```
This script is transformed into a proxy script like
```html
<script type="module" src="/index.html?html-proxy&index=0.js"></script>
```
due to Vite's HTML plugin:
7fd7c6cebf/packages/vite/src/node/plugins/html.ts (L429-L465)
When `appType: 'spa' | 'mpa'`, Vite serves HTML itself, and `htmlFallbackMiddleware` rewrites `req.url` to the canonical path of `index.html`,
73ef074b80/packages/vite/src/node/server/middlewares/htmlFallback.ts (L44-L47)
so the `url` passed to `server.transformIndexHtml` is `/index.html`.
However, if `appType: 'custom'`, HTML is served manually, and if `server.transformIndexHtml` is called with the unmodified request URL (as the SSR docs suggest), then the path of the transformed `html-proxy` script varies with the request URL. For example, a request with path `/` produces
```html
<script type="module" src="/@​id/__x00__/index.html?html-proxy&index=0.js"></script>
```
It is possible to abuse this behavior by crafting a request URL to contain a malicious payload like
```
"></script><script>alert('boom')</script>
```
so a request to http://localhost:5173/?%22%3E%3C/script%3E%3Cscript%3Ealert(%27boom%27)%3C/script%3E produces HTML output like
```html
<script type="module" src="/@​id/__x00__/?"></script><script>alert("boom")</script>?html-proxy&index=0.js"></script>
```
which demonstrates XSS.
### PoC
- Example 1. Serving HTML from `vite dev` middleware with `appType: 'custom'`
- Go to https://stackblitz.com/edit/vitejs-vite-9xhma4?file=main.js&terminal=dev-html
- "Open in New Tab"
- Edit URL to set query string to `?%22%3E%3C/script%3E%3Cscript%3Ealert(%27boom%27)%3C/script%3E` and navigate
- Witness XSS:
- 
- Example 2. Serving HTML from SSR-style Express server (Vite dev server runs in middleware mode):
- Go to https://stackblitz.com/edit/vitejs-vite-9xhma4?file=main.js&terminal=server
- (Same steps as above)
- Example 3. Plain `vite dev` (this shows that vanilla `vite dev` is _not_ vulnerable, provided `htmlFallbackMiddleware` is used)
- Go to https://stackblitz.com/edit/vitejs-vite-9xhma4?file=main.js&terminal=dev
- (Same steps as above)
- You should _not_ see the alert box in this case
### Detailed Impact
This will probably predominantly affect [development-mode SSR](https://vitejs.dev/guide/ssr#setting-up-the-dev-server ), where `vite.transformHtml` is called using the original `req.url`, per the docs:
7fd7c6cebf/docs/guide/ssr.md (L114-L126)
However, since this vulnerability affects `server.transformIndexHtml`, the scope of impact may be higher to also include other ad-hoc calls to `server.transformIndexHtml` from outside of Vite's own codebase.
My best guess at bisecting which versions are vulnerable involves the following test script
```js
import fs from 'node:fs/promises';
import * as vite from 'vite';
const html = `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
</head>
<body>
<script type="module">
// Inline script
</script>
</body>
</html>
`;
const server = await vite.createServer({ appType: 'custom' });
const transformed = await server.transformIndexHtml('/?%22%3E%3C/script%3E%3Cscript%3Ealert(%27boom%27)%3C/script%3E', html);
console.log(transformed);
await server.close();
```
and using it I was able to narrow down to #​13581. If this is correct, then vulnerable Vite versions are 4.4.0-beta.2 and higher (which includes 4.4.0).
---
### Release Notes
<details>
<summary>vitejs/vite (vite)</summary>
### [`v4.5.1`](https://togithub.com/vitejs/vite/releases/tag/v4.5.1 )
[Compare Source](https://togithub.com/vitejs/vite/compare/v4.5.0...v4.5.1 )
Please refer to [CHANGELOG.md](https://togithub.com/vitejs/vite/blob/v4.5.1/packages/vite/CHANGELOG.md ) for details.
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-06 08:55:32 +00:00
Peng Xiao
2b53430539
feat(core): allow core modules to import itself ( #5207 )
2023-12-06 08:45:54 +00:00
liuyi
e0cada49f5
refactor(server): do not force init binary when creating workspace ( #5146 )
2023-12-06 08:35:48 +00:00
liuyi
4cb26cd3e5
feat(server): events system ( #5145 )
2023-12-06 08:35:45 +00:00
JimmFly
b32a427ecd
chore: adjust banner content text ( #5153 )
...

2023-12-06 08:13:56 +00:00
LongYinan
e5f8a58330
ci: refactor workflow ( #5139 )
...
Merge tests job into single one, reuse job as much as possible
2023-12-06 08:03:05 +00:00
Joooye_34
48f4d6a06c
fix(core): error page 500 status dark mode ( #5180 )
...
close #5155
2023-12-05 10:40:48 +00:00
LongYinan
246fbd8d4f
ci: fix auto labeler config
2023-12-05 18:21:32 +08:00
LongYinan
bd414b7f44
ci: fix auto labeler job ( #5206 )
2023-12-05 18:00:42 +08:00
Peng Xiao
1e01ed0b0f
fix(component): modal blurness ( #5177 )
...
moved https://github.com/toeverything/design/pull/108
Do not use transform to center the modal. It has know issue to cause modal to have blurred texts.
https://github.com/radix-ui/website/issues/383
fix https://github.com/toeverything/AFFiNE/issues/5176
2023-12-05 09:18:49 +00:00
LongYinan
37b1a54ec6
chore: bump up idb version to v8 ( #5198 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [idb](https://togithub.com/jakearchibald/idb ) | [`^7.1.1` -> `^8.0.0`](https://renovatebot.com/diffs/npm/idb/7.1.1/8.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>jakearchibald/idb (idb)</summary>
### [`v8.0.0`](https://togithub.com/jakearchibald/idb/compare/v7.1.1...v8.0.0 )
[Compare Source](https://togithub.com/jakearchibald/idb/compare/v7.1.1...v8.0.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-05 08:38:04 +00:00
JimmFly
1c88e1fb8b
fix(core): unable to create share page link ( #5175 )
...
For some reasons, our `spaceDoc.guid` and `page.id` may not necessarily be the same, so we switched to using the more accurate `page.id`.
2023-12-05 07:21:18 +00:00
Cats Juice
1cd8de9d60
fix(component): clear page list operation's link style ( #5148 )
...
- before

- after

2023-12-05 07:01:42 +00:00
LongYinan
51e42af317
chore: bump up actions/labeler action to v5 ( #5192 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [actions/labeler](https://togithub.com/actions/labeler ) | action | major | `v4` -> `v5` |
---
### Release Notes
<details>
<summary>actions/labeler (actions/labeler)</summary>
### [`v5`](https://togithub.com/actions/labeler/compare/v4...v5 )
[Compare Source](https://togithub.com/actions/labeler/compare/v4...v5 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-05 06:41:21 +00:00
LongYinan
e4c6db2d02
chore: bump up ava version to v6 ( #5195 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ava](https://avajs.dev ) ([source](https://togithub.com/avajs/ava )) | [`^5.3.1` -> `^6.0.0`](https://renovatebot.com/diffs/npm/ava/5.3.1/6.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>avajs/ava (ava)</summary>
### [`v6.0.0`](https://togithub.com/avajs/ava/releases/tag/v6.0.0 )
[Compare Source](https://togithub.com/avajs/ava/compare/v5.3.1...v6.0.0 )
#### Breaking Changes
- AVA now requires Node.js versions 18.18, 20.8 or 21. Versions 14 and 16 are no longer supported. [#​3251](https://togithub.com/avajs/ava/issues/3251 ) [#​3216](https://togithub.com/avajs/ava/issues/3216 )
- When tests finish, worker threads or child processes are no longer exited through `proces.exit()`. If your test file does not exit on its own, the test run will time out. [#​3260](https://togithub.com/avajs/ava/issues/3260 )
- Changes to watch mode [#​3218](https://togithub.com/avajs/ava/issues/3218 ):
- Watch mode can no longer be started via the `ava.config.*` or `package.json` configuration.
- The `ignoredByWatcher` configuration has moved to the `watchMode` object, under the `ignoreChanges` key.
- Watch mode now uses the built-in [`fs.watch()`](https://nodejs.org/api/fs.html#fswatchfilename-options-listener ) in recursive mode. This is supported on Linux in Node.js 20 or newer, and MacOS and Windows in Node.js 18 as well. There are [caveats](https://nodejs.org/api/fs.html#caveats ) to keep in mind.
- Failed assertions now throw, meaning that any subsequent code is not executed. This also impacts the type definitions. [#​3246](https://togithub.com/avajs/ava/issues/3246 )
- [Only native errors](https://nodejs.org/api/util.html#utiltypesisnativeerrorvalue ) are now considered errors by the `t.throws()` and `t.throwsAsync()` assertions. [`Object.create(Error.prototype)` is **not** a native error](Object.create\(Error.prototype\)). [#​3229](https://togithub.com/avajs/ava/issues/3229 )
- Changes to modules loaded through the `require` configuration [#​3184](https://togithub.com/avajs/ava/issues/3184 ):
- If such modules export a default function, this function is now invoked.
- Local files are loaded through `@ava/typescript` if necessary.
#### Improvements
##### Rewritten watcher
The watcher has been rewritten. It’s now built on [`fs.watch()`](https://nodejs.org/api/fs.html#fswatchfilename-options-listener ) in recursive mode.
[`@vercel/nft`](https://togithub.com/vercel/nft ) is used to perform static dependency analysis, supporting ESM and CJS imports for JavaScript & TypeScript source files. This is a huge improvement over the previous runtime tracking of CJS imports, which did not support ESM.
Integration with [`@ava/typescript`](https://togithub.com/avajs/typescript ) has been improved. The watcher can now detect a change to a TypeScript source file, then wait for the corresponding build output to change before re-running tests.
The ignoredByWatcher configuration has moved to the watchMode object, under the ignoreChanges key.
See [#​3218](https://togithub.com/avajs/ava/issues/3218 ) and [#​3257](https://togithub.com/avajs/ava/issues/3257 ).
##### Failed assertions now throw
Assertions now throw a `TestFailure` error when they fail. This error is not exported or documented and should not be used or thrown manually. You cannot catch this error in order to recover from a failure, use `t.try()` instead.
All assertions except for `t.throws()` and `t.throwsAsync()` now return `true` when they pass. This is useful for some of the assertions in TypeScript where they can be used as a type guard.
Committing a failed `t.try()` result now also throws.
See [#​3246](https://togithub.com/avajs/ava/issues/3246 ).
##### `t.throws()` and `t.throwsAsync()` can now expect any error
By default, the thrown error (or rejection reason) must be a native error. You can change the assertion to expect any kind of error by setting `any: true` in the expectation object:
```js
t.throws(() => { throw 'error' }, {any: true})
```
See [#​3245](https://togithub.com/avajs/ava/issues/3245 ) by [@​adiSuper94](https://togithub.com/adiSuper94 ).
##### The `require` configuration is now more powerful
It now loads ES modules.
Local files are loaded through `@ava/typescript` if necessary, so you can also write these in TypeScript.
If there is a default export function, it is invoked after loading. The function is awaited so it can do asynchronous setup before further modules are loaded. Arguments from the configuration can be passed to the function (as a \[[structured clone](https://developer.mozilla.org/en-US/docs/Web/API/structuredClone )]\(https://developer.mozilla.org/en-US/docs/Web/API/structuredClone )).
See [#​3184](https://togithub.com/avajs/ava/issues/3184 ) by [@​sculpt0r](https://togithub.com/sculpt0r ).
##### Other changes worth noting
- Internal events can now be observed (experimentally). See [#​3247](https://togithub.com/avajs/ava/issues/3247 ) by [@​codetheweb](https://togithub.com/codetheweb ). It’s experimental and undocumented.
- You can now use `t.timeout.clear()` to restore a previous `t.timeout()`. [#​3221](https://togithub.com/avajs/ava/issues/3221 )
- Code coverage is flushed to disk at opportune moments. [#​3220](https://togithub.com/avajs/ava/issues/3220 )
#### New Contributors
- [@​sculpt0r](https://togithub.com/sculpt0r ) made their first contribution in [https://github.com/avajs/ava/pull/3184 ](https://togithub.com/avajs/ava/pull/3184 )
- [@​ZachHaber](https://togithub.com/ZachHaber ) made their first contribution in [https://github.com/avajs/ava/pull/3233 ](https://togithub.com/avajs/ava/pull/3233 )
- [@​adiSuper94](https://togithub.com/adiSuper94 ) made their first contribution in [https://github.com/avajs/ava/pull/3245 ](https://togithub.com/avajs/ava/pull/3245 )
- [@​bricker](https://togithub.com/bricker ) made their first contribution in [https://github.com/avajs/ava/pull/3250 ](https://togithub.com/avajs/ava/pull/3250 )
**Full Changelog**: https://github.com/avajs/ava/compare/v5.3.1...v6.0.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.
🔕 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-05 06:19:00 +00:00
Anthony
56ace48226
feat: add new page to the sidebar #5095 ( #5128 )
...
Co-authored-by: 李华桥 <joooye1991@gmail.com >
2023-12-05 14:18:21 +08:00
LongYinan
2b7c6714eb
chore: bump up Helm release postgresql to v13 ( #5190 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [postgresql](https://bitnami.com ) ([source](https://togithub.com/bitnami/charts/tree/HEAD/bitnami/postgresql )) | major | `12.5.8` -> `13.2.23` |
---
### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-05 04:26:32 +00:00
LongYinan
1dacb21178
chore: bump up @dnd-kit/modifiers version to v7 ( #5189 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@dnd-kit/modifiers](https://togithub.com/clauderic/dnd-kit ) ([source](https://togithub.com/clauderic/dnd-kit/tree/HEAD/packages/modifiers )) | [`^6.0.1` -> `^7.0.0`](https://renovatebot.com/diffs/npm/@dnd-kit%2fmodifiers/6.0.1/7.0.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>clauderic/dnd-kit (@​dnd-kit/modifiers)</summary>
### [`v7.0.0`](https://togithub.com/clauderic/dnd-kit/blob/HEAD/packages/modifiers/CHANGELOG.md#700 )
[Compare Source](https://togithub.com/clauderic/dnd-kit/compare/@dnd-kit/modifiers@6.0.1...@dnd-kit/modifiers@7.0.0 )
##### Patch Changes
- Updated dependencies \[[`bc588c7`](bc588c7f7b ), [`b417f0f`](b417f0f94b ), [`f342d5e`](f342d5efd9 )]:
- [@​dnd-kit/core](https://togithub.com/dnd-kit/core )[@​6](https://togithub.com/6 ).1.0
- [@​dnd-kit/utilities](https://togithub.com/dnd-kit/utilities )[@​3](https://togithub.com/3 ).2.2
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-05 04:05:29 +00:00
LongYinan
f3e717ee5f
chore: bump up @opentelemetry/instrumentation-ioredis version to ^0.36.0 ( #5186 )
...
[](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | 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.35.3` -> `^0.36.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation-ioredis/0.35.3/0.36.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>open-telemetry/opentelemetry-js-contrib (@​opentelemetry/instrumentation-ioredis)</summary>
### [`v0.36.0`](607d375595...a757b5e443 )
[Compare Source](607d375595...a757b5e443 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSJ9-->
2023-12-05 03:46:25 +00:00
LongYinan
9e8668de6b
ci: add electron-forge deps group ( #5185 )
2023-12-05 03:27:36 +00:00
LongYinan
eb93ae04e0
ci: exclude @blocksuite/icons from blocksuite nightly update group ( #5184 )
2023-12-05 02:45:55 +00:00
LongYinan
a9b021bafe
ci: use renovate to replace dependabot since depedabot has never worked ( #5182 )
...
https://github.com/toeverything/AFFiNE/network/updates/757631626 dependabot update jobs keep timeout
2023-12-05 00:47:40 +00:00
LongYinan
56b37c481e
chore: bump @adobe/css-tools from 4.3.1 to 4.3.2 ( #5181 )
...
Bumps [@adobe/css-tools](https://github.com/adobe/css-tools ) from 4.3.1 to 4.3.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/adobe/css-tools/blob/main/History.md "><code>@adobe/css-tools</code>'s changelog</a>.</em></p>
<blockquote>
<h1>4.3.2 / 2023-11-28</h1>
<ul>
<li>Fix redos vulnerability with specific crafted css string - CVE-2023-48631</li>
<li>Fix Problem parsing with :is() and nested :nth-child() <a href="https://redirect.github.com/adobe/css-tools/issues/211 ">#211</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/adobe/css-tools/commits ">compare view</a></li>
</ul>
</details>
<br />
[](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>
2023-12-04 14:59:50 +00:00
Flrande
a2784c352f
chore: bump blocksuite ( #5138 )
2023-12-04 12:02:35 +00:00
EYHN
7878ce5c2c
feat(workspace): priority load opened page ( #5156 )
2023-12-04 11:32:10 +00:00
liuyi
b4b4a3b625
fix(server): avoid snapshot write conflict ( #5174 )
2023-12-04 11:12:16 +00:00
Cats Juice
d911d21d1c
feat(component): add storybook ( #5079 )
2023-12-04 08:32:19 +00:00
Cats Juice
9c50dbc362
feat(core): remove all imports from design/component ( #5078 )
...
feat(core): remove all imports from design/component
feat(plugin): remove imports from design-components
feat(storybook): remove design-components imoprts
feat(core): remove
fix(component): remove design/component import in local-demo-tip
2023-12-04 08:32:16 +00:00
Cats Juice
0abadbe7bb
refactor(component): migrate design components ( #5000 )
...
```[tasklist]
### Tasks
- [x] Migrate components from [design](https://github.com/toeverything/design )
- [x] Replace all imports from `@toeverything/components`
- [x] Clean up `@toeverything/components` dependencies
- [x] Storybook
```
### Influence
Here are all the components that are influenced by `@toeverything/components`
- `@affine/component`
- App update `Button` `Tooltip`
- App sidebar header `IconButton`, `Tooltip`
- Back `Button`
- Auth
- Change email page save `Button`
- Change password page all `Button`s (Save, Later, Open)
- Confirm change email `Button`
- Set password page `Button`
- Sign in success page `Button`
- Sign up page `Button`
- Auth `Modal`
- Workspace card `Avatar`, `Divider`, `Tooltip`, `IconButton`
- Share
- Disable shared public link `Modal`
- Import page `IconButton`, `Tooltip`
- Accept invite page `Avatar`, `Button`
- Invite member `Modal`
- 404 Page `Avatar`, `Button`, `IconButton`, `Tooltip`
- Notification center `IconButton`
- Page list
- operation cell `IconButton`, `Menu`, `ConfirmModal`, `Tooltip`
- tags more `Menu`
- favorite `IconButton`, `Tooltip`
- new page dropdown `Menu`
- filter `Menu`, `Button`, `IconButton`
- Page operation `Menu`
- export `MenuItem`
- move to trash `MenuItem`, `ConfirmModal`
- Workspace header filter `Menu`, `Button`
- Collection bar `Button`, `Tooltip` (*⚠️ seems not used*)
- Collection operation `Menu`, `MenuItem`
- Create collection `Modal`, `Button`
- Edit collection `Modal`, `Button`
- Page mode filter `Menu`
- Page mode `Button`, `Menu`
- Setting modal
- storage usage progress `Button`, `Tooltip`
- On boarding tour `Modal`
- `@affine/core`
- Bookmark `Menu`
- Affine error boundary `Button`
- After sign in send email `Button`
- After sign up send email `Button`
- Send email `Button`
- Sign in `Button`
- Subscription redirect `Loading`, `Button`
- Setting `Modal`
- User plan button `Tooltip`
- Members `Avatar`, `Button`, `IconButton`, `Loading`, `Tooltip`, `Menu`
- Profile `Button`, `Avatar`
- Workspace
- publish panel `Button`, `Tooltip`
- export panel `Button`
- storage panel `Button`, `Tooltip`
- delete `ConfirmModal`
- Language `Menu`
- Account setting `Avatar`, `Button`
- Date format setting `Menu`
- Billing `Button`, `IconButton`, `Loading`
- Payment plans `Button`, `ConfirmModal`, `Modal`, `Tooltip`
- Create workspace `Modal`, `ConfirmModal`, `Button`
- Payment disabled `ConfirmModal`
- Share/Export `Menu`, `Button`, `Divider`
- Sign out `ConfirmModal`
- Temp disable affine cloud `Modal`
- Page detail operation `Menu`
- Blocksuite mode switch `Tooltip`
- Login card `Avatar`
- Help island `Tooltip`
- `plugin`
- copilot
- hello world
- image preview
- outline
2023-12-04 08:32:12 +00:00
LongYinan
33c53217c3
chore: move cargo fmt to lint-staged from pre-commit ( #5150 )
2023-12-04 06:42:54 +00:00
EYHN
91f3149148
fix(workspace): fix svg display on browser ( #5158 )
2023-12-02 17:27:07 +00:00
Rakhee Singh
661b4a91ba
style(core): add page list header emptypage ( #5162 )
...
Co-authored-by: rakhee28 <rakhee@strings.ai >
2023-12-02 23:39:51 +08:00
Peng Xiao
512504e177
fix(electron): do not restore window on get window ( #5163 )
...
fix https://github.com/toeverything/AFFiNE/issues/5161
Looks like I used window.restore incorrectly.
2023-12-02 15:13:48 +00:00
LongYinan
1f7654e80f
chore: bump @adobe/css-tools from 4.3.1 to 4.3.2 ( #5154 )
...
Bumps [@adobe/css-tools](https://github.com/adobe/css-tools ) from 4.3.1 to 4.3.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/adobe/css-tools/blob/main/History.md "><code>@adobe/css-tools</code>'s changelog</a>.</em></p>
<blockquote>
<h1>4.3.2 / 2023-11-28</h1>
<ul>
<li>Fix redos vulnerability with specific crafted css string - CVE-2023-48631</li>
<li>Fix Problem parsing with :is() and nested :nth-child() <a href="https://redirect.github.com/adobe/css-tools/issues/211 ">#211</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/adobe/css-tools/commits ">compare view</a></li>
</ul>
</details>
<br />
[](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>
2023-12-01 08:52:40 +00:00
Joooye_34
eb7d293aaa
fix(core): implement editor timeout and report error from boundary ( #5105 ) ( #5151 )
...
fix(core): implement editor timeout and report error from boundary (#5105 )
ci: add sentry env when frontend assets build (#5131 )
fix(core): expose catched editor load error (#5133 )
fix(infra): use blocksuite api to check compatibility (#5137 )
fix(infra): compatibility logic follow blocksuite (#5143 )
fix(core): rerender error boundary when route change and improve sentry report (#5147 )
2023-12-01 07:25:08 +00:00
LongYinan
99f98fb9d3
ci: remove publish job ( #5135 )
2023-11-30 04:24:43 +00:00
JimmFly
3e662f358d
fix(core): adjust ui styles ( #5094 )
2023-11-30 12:23:57 +08:00
Peng Xiao
6661e8bd9a
fix(core): language display names ( #5123 )
2023-11-30 12:23:03 +08:00
JimmFly
23518cae16
feat(core): add manual check for updates ( #4957 )
...
work for #4523
add `appBuildType` to `runtimeConfig`
add `useAppUpdater` to manage client updates
<!--
copilot:summary
-->
### <samp>🤖 [[deprecated]](https://githubnext.com/copilot-for-prs-sunset ) Generated by Copilot at cdd012c</samp>
This pull request refactors and enhances the update functionality for the frontend. It introduces a new custom hook `useAppUpdater` that simplifies the update logic and state management, and uses it in various components and commands. It also adds more options and feedback for the user to control and monitor the update process, such as manual download, auto-check, and auto-download toggles, and update status and progress indicators. It also updates the `AboutAffine` component to show the app icon, version, and build type. It also adds new translations, dependencies, types, and schemas related to the update functionality.
<img width="1073" alt="image" src="https://github.com/toeverything/AFFiNE/assets/102217452/16ae7a6a-0035-4e57-902b-6b8f63169501 ">
2023-11-29 13:31:25 +00:00
LongYinan
906d224fa9
chore(native): fix useless import ( #5130 )
2023-11-29 10:11:40 +00:00
LongYinan
6fca1b43f0
chore: add rust-toolchain file ( #5129 )
2023-11-29 10:11:38 +00:00
LongYinan
3fc515491b
chore: remove useless circular command ( #5127 )
2023-11-29 10:11:36 +00:00
LongYinan
2a4741e9ab
chore: add lint-staged command to pre-commit file ( #5126 )
2023-11-29 10:11:34 +00:00
LongYinan
feddfdc5c9
ci: upgrade setup-node action ( #5125 )
2023-11-29 10:11:32 +00:00
LongYinan
a2b8a073cc
ci: pr title lint job does not need to install all dependencies ( #5124 )
2023-11-29 09:51:14 +00:00
liuyi
89f267a3fe
refactor(server): simplify metrics creation and usage ( #5115 )
2023-11-29 08:05:08 +00:00
LongYinan
7a7cbc45d7
fix: add prefer-readonly rule ( #5122 )
2023-11-29 15:19:00 +08:00
LongYinan
e9ea67bd38
fix: add prefer-for-of rule ( #5121 )
2023-11-29 15:18:52 +08:00
LongYinan
acf2de813a
fix: add unified-signatures rule ( #5120 )
2023-11-29 04:44:18 +00:00
LongYinan
db3039fbf4
fix: add require-array-sort-compare rule ( #5119 )
2023-11-29 04:44:14 +00:00
LongYinan
eadf8a085b
fix: add prefer-blob-reading-methods rule ( #5118 )
2023-11-29 04:44:10 +00:00
LongYinan
cb2c659f52
fix: add no-new-array rule ( #5117 )
2023-11-29 04:44:06 +00:00
LongYinan
68caf5027d
fix: add new-for-builtins rule ( #5116 )
2023-11-29 04:44:02 +00:00
LongYinan
19c61e051d
fix: add no-typeof-undefined rule ( #5114 )
2023-11-29 04:43:59 +00:00
LongYinan
bd488262fa
fix: add prefer-date-now rule ( #5113 )
2023-11-29 04:43:55 +00:00
LongYinan
4dddbbdaee
fix: add prefer-dom-node-remove rule ( #5112 )
2023-11-29 04:43:51 +00:00
LongYinan
45690c2756
fix: add no-useless-promise-resolve-reject rule ( #5111 )
2023-11-29 04:43:47 +00:00
LongYinan
d267029761
fix: add prefer-array-some rule ( #5109 )
2023-11-29 04:43:43 +00:00
LongYinan
23cfc58fe2
fix: add prefer-dom-node-append rule ( #5108 )
2023-11-29 04:43:39 +00:00
LongYinan
123f091e5b
fix: add prefer-dom-node-dataset rule ( #5107 )
2023-11-29 04:43:35 +00:00
LongYinan
923844f302
fix: add eqeqeq lint rule ( #5106 )
2023-11-29 04:43:31 +00:00
LongYinan
a843dcd851
fix: resolve cycle imports and prevent it by oxlint ( #5103 )
2023-11-29 04:43:27 +00:00
LongYinan
b73e87e4ad
chore: upgrade typescript-eslint ( #5110 )
2023-11-29 04:43:23 +00:00
JimmFly
c78eb96507
feat(core): show searched result with results group and add duplicate commands ( #5073 )
...
[TOV-65](https://linear.app/affine-design/issue/TOV-65/should-show-searched-result-without-categories )
https://github.com/toeverything/AFFiNE/assets/102217452/50fba70b-7efa-4e47-ba8a-de21e400166c
2023-11-29 02:35:13 +00:00
JimmFly
469a18f794
feat(component): default collapse and float sidebar on mobile ( #5077 )
...
work for #4843
https://github.com/toeverything/AFFiNE/assets/102217452/c658dbab-4db8-4065-a3a6-3e20274b6cb9
2023-11-29 02:12:13 +00:00
LongYinan
c1cf25d2d5
style: add no-self-compare rule ( #5092 )
2023-11-28 08:55:50 +00:00
Peng Xiao
890e3e4435
fix(core): should not refetch avatar when url does not change ( #5070 )
...
blob resources are in fact immutable. We do not need to refetch it by swr policies (mount/visibilitychange/etc)
2023-11-28 08:01:19 +00:00
LongYinan
0ee2ecc1e9
ci: always perform fresh build in deployment job ( #5066 )
2023-11-28 06:59:50 +00:00
LongYinan
aaaed5ac14
fix(core): nx cache configuration ( #5065 )
2023-11-28 06:59:48 +00:00
liuyi
e73c39fe6b
fix(server): wrong OTEL config ( #5084 )
2023-11-28 05:54:42 +00:00
Peng Xiao
3891f23dfa
fix(component): rework tags list collapsing ( #5072 )
...
Before:

After:

2023-11-27 09:56:25 +00:00
Peng Xiao
8841dc3c4e
fix(electron): electron dev startup on win ( #5031 )
2023-11-27 08:45:33 +00:00
EYHN
9cdfeba9b4
docs: issue triaging document ( #5071 )
...
I would like to sort out our process for handling github issues. When we receive a issue, we should first triage it.
This PR contains the document about issue triaging.
reference:
[YouTrack issue states used in .NET tools team and their description](https://rider-support.jetbrains.com/hc/en-us/articles/360021572199-YouTrack-issue-states-used-in-NET-tools-team-and-their-description )
[vscode Issues Triaging](https://github.com/microsoft/vscode/wiki/Issues-Triaging )
2023-11-27 08:27:34 +00:00
LongYinan
30ec08cadf
chore: bump the all-cargo-dependencies group with 5 updates ( #5068 )
...
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps the all-cargo-dependencies group with 5 updates:
| Package | From | To |
| --- | --- | --- |
| [napi](https://github.com/napi-rs/napi-rs ) | `2.14.0` | `2.14.1` |
| [napi-derive](https://github.com/napi-rs/napi-rs ) | `2.14.1` | `2.14.2` |
| [serde](https://github.com/serde-rs/serde ) | `1.0.192` | `1.0.193` |
| [sqlx](https://github.com/launchbadge/sqlx ) | `0.7.2` | `0.7.3` |
| [uuid](https://github.com/uuid-rs/uuid ) | `1.6.0` | `1.6.1` |
Updates `napi` from 2.14.0 to 2.14.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/napi-rs/napi-rs/releases ">napi's releases</a>.</em></p>
<blockquote>
<h2><code>@napi-rs/cli</code><a href="https://github.com/2 "><code>@2</code></a>.14.1</h2>
<h2>What's Changed</h2>
<ul>
<li>[Fix] Quote toml path by <a href="https://github.com/TheBrenny "><code>@TheBrenny</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1410 ">napi-rs/napi-rs#1410</a></li>
<li>chore(cli): update CI template by <a href="https://github.com/Brooooooklyn "><code>@Brooooooklyn</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1416 ">napi-rs/napi-rs#1416</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/TheBrenny "><code>@TheBrenny</code></a> made their first contribution in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1410 ">napi-rs/napi-rs#1410</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/napi-rs/napi-rs/compare/napi@2.10.4...@napi-rs/cli@2.14.1 ">https://github.com/napi-rs/napi-rs/compare/napi@2.10.4 ...<code>@napi-rs/cli</code><code>@2.14.1</code></a></p>
<h2>napi-derive@2.14 .1</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(napi-derive): async task void output type by <a href="https://github.com/Brooooooklyn "><code>@Brooooooklyn</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1795 ">napi-rs/napi-rs#1795</a></li>
<li>fix(napi-derive): async task optional output type by <a href="https://github.com/Brooooooklyn "><code>@Brooooooklyn</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1796 ">napi-rs/napi-rs#1796</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/napi-rs/napi-rs/compare/napi-sys@2.3.0...napi-derive@2.14.1 ">https://github.com/napi-rs/napi-rs/compare/napi-sys@2.3.0...napi-derive@2.14.1 </a></p>
<h2>napi@2.14 .1</h2>
<h2>What's Changed</h2>
<ul>
<li>style(napi): clippy fix by <a href="https://github.com/Brooooooklyn "><code>@Brooooooklyn</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1815 ">napi-rs/napi-rs#1815</a></li>
<li>fix(napi): cargo doc build by <a href="https://github.com/Brooooooklyn "><code>@Brooooooklyn</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1819 ">napi-rs/napi-rs#1819</a></li>
<li>fix(napi): compile error for wasm32-unknown-unknown target by <a href="https://github.com/Brooooooklyn "><code>@Brooooooklyn</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1822 ">napi-rs/napi-rs#1822</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/napi-rs/napi-rs/compare/napi@2.14.0...napi@2.14.1 ">https://github.com/napi-rs/napi-rs/compare/napi@2.14.0...napi@2.14.1 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="6a4f4f173d "><code>6a4f4f1</code></a> chore(release): publish</li>
<li><a href="e4ac44e560 "><code>e4ac44e</code></a> Release independent packages</li>
<li><a href="8a9c42a985 "><code>8a9c42a</code></a> fix(napi): compile error for wasm32-unknown-unknown target</li>
<li><a href="7dced934a7 "><code>7dced93</code></a> fix(napi): cargo doc build</li>
<li><a href="751312cec9 "><code>751312c</code></a> test: add test file name into error message (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1821 ">#1821</a>)</li>
<li><a href="7c3f8b514e "><code>7c3f8b5</code></a> fix(napi-derive): compile warning (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1820 ">#1820</a>)</li>
<li><a href="8c911b5d34 "><code>8c911b5</code></a> chore: upgrade emnapi dependencies (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1817 ">#1817</a>)</li>
<li><a href="76dcf833da "><code>76dcf83</code></a> chore(deps): update dependency emnapi to v0.44.0 (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1805 ">#1805</a>)</li>
<li><a href="6df0ca112e "><code>6df0ca1</code></a> chore: 🤖 align wasi template to nodejs demo (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1814 ">#1814</a>)</li>
<li><a href="c321071c89 "><code>c321071</code></a> chore(deps): update dependency <code>@emnapi/runtime</code> to v0.44.0 (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1804 ">#1804</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/napi-rs/napi-rs/compare/napi@2.14.0...napi@2.14.1 ">compare view</a></li>
</ul>
</details>
<br />
Updates `napi-derive` from 2.14.1 to 2.14.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/napi-rs/napi-rs/releases ">napi-derive's releases</a>.</em></p>
<blockquote>
<h2>napi-derive@2.14 .2</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(napi-derive): compile warning by <a href="https://github.com/Brooooooklyn "><code>@Brooooooklyn</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1820 ">napi-rs/napi-rs#1820</a></li>
<li>fix(napi): compile error for wasm32-unknown-unknown target by <a href="https://github.com/Brooooooklyn "><code>@Brooooooklyn</code></a> in <a href="https://redirect.github.com/napi-rs/napi-rs/pull/1822 ">napi-rs/napi-rs#1822</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/napi-rs/napi-rs/compare/napi-derive@2.14.1...napi-derive@2.14.2 ">https://github.com/napi-rs/napi-rs/compare/napi-derive@2.14.1...napi-derive@2.14.2 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="6a4f4f173d "><code>6a4f4f1</code></a> chore(release): publish</li>
<li><a href="e4ac44e560 "><code>e4ac44e</code></a> Release independent packages</li>
<li><a href="8a9c42a985 "><code>8a9c42a</code></a> fix(napi): compile error for wasm32-unknown-unknown target</li>
<li><a href="7dced934a7 "><code>7dced93</code></a> fix(napi): cargo doc build</li>
<li><a href="751312cec9 "><code>751312c</code></a> test: add test file name into error message (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1821 ">#1821</a>)</li>
<li><a href="7c3f8b514e "><code>7c3f8b5</code></a> fix(napi-derive): compile warning (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1820 ">#1820</a>)</li>
<li><a href="8c911b5d34 "><code>8c911b5</code></a> chore: upgrade emnapi dependencies (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1817 ">#1817</a>)</li>
<li><a href="76dcf833da "><code>76dcf83</code></a> chore(deps): update dependency emnapi to v0.44.0 (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1805 ">#1805</a>)</li>
<li><a href="6df0ca112e "><code>6df0ca1</code></a> chore: 🤖 align wasi template to nodejs demo (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1814 ">#1814</a>)</li>
<li><a href="c321071c89 "><code>c321071</code></a> chore(deps): update dependency <code>@emnapi/runtime</code> to v0.44.0 (<a href="https://redirect.github.com/napi-rs/napi-rs/issues/1804 ">#1804</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/napi-rs/napi-rs/compare/napi-derive@2.14.1...napi-derive@2.14.2 ">compare view</a></li>
</ul>
</details>
<br />
Updates `serde` from 1.0.192 to 1.0.193
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/serde-rs/serde/releases ">serde's releases</a>.</em></p>
<blockquote>
<h2>v1.0.193</h2>
<ul>
<li>Fix field names used for the deserialization of <code>RangeFrom</code> and <code>RangeTo</code> (<a href="https://redirect.github.com/serde-rs/serde/issues/2653 ">#2653</a>, <a href="https://redirect.github.com/serde-rs/serde/issues/2654 ">#2654</a>, <a href="https://redirect.github.com/serde-rs/serde/issues/2655 ">#2655</a>, thanks <a href="https://github.com/emilbonnek "><code>@emilbonnek</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="44613c7d01 "><code>44613c7</code></a> Release 1.0.193</li>
<li><a href="c706281df3 "><code>c706281</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/serde/issues/2655 ">#2655</a> from dtolnay/rangestartend</li>
<li><a href="65d75b8fe3 "><code>65d75b8</code></a> Add RangeFrom and RangeTo tests</li>
<li><a href="332b0cba40 "><code>332b0cb</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/serde/issues/2654 ">#2654</a> from dtolnay/rangestartend</li>
<li><a href="8c4af41296 "><code>8c4af41</code></a> Fix more RangeFrom / RangeEnd mixups</li>
<li><a href="24a78f071b "><code>24a78f0</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/serde/issues/2653 ">#2653</a> from emilbonnek/fix/range-to-from-de-mixup</li>
<li><a href="c91c33436d "><code>c91c334</code></a> Fix Range{From,To} deserialize mixup</li>
<li><a href="2083f43a28 "><code>2083f43</code></a> Update ui test suite to nightly-2023-11-19</li>
<li>See full diff in <a href="https://github.com/serde-rs/serde/compare/v1.0.192...v1.0.193 ">compare view</a></li>
</ul>
</details>
<br />
Updates `sqlx` from 0.7.2 to 0.7.3
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md ">sqlx's changelog</a>.</em></p>
<blockquote>
<h2>0.7.3 - 2023-11-22</h2>
<p>38 pull requests were merged this release cycle.</p>
<h3>Added</h3>
<ul>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2478 ">#2478</a>]: feat(citext): support postgres citext [[<a href="https://github.com/hgranthorner "><code>@hgranthorner</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2545 ">#2545</a>]: Add <code>fixtures_path</code> in sqlx::test args [[<a href="https://github.com/ripa1995 "><code>@ripa1995</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2665 ">#2665</a>]: feat(mysql): support packet splitting [[<a href="https://github.com/tk2217 "><code>@tk2217</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2752 ">#2752</a>]: Enhancement <a href="https://redirect.github.com/launchbadge/sqlx/issues/2747 ">#2747</a> Provide <code>fn PgConnectOptions::get_host(&self)</code> [[<a href="https://github.com/boris-lok "><code>@boris-lok</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2769 ">#2769</a>]: Customize the macro error message based on the metadata [[<a href="https://github.com/Nemo157 "><code>@Nemo157</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2793 ">#2793</a>]: derived Hash trait for PgInterval [[<a href="https://github.com/yasamoka "><code>@yasamoka</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2801 ">#2801</a>]: derive FromRow: sqlx(default) for all fields [[<a href="https://github.com/grgi "><code>@grgi</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2827 ">#2827</a>]: Add impl <code>FromRow</code> for the unit type [[<a href="https://github.com/nanoqsh "><code>@nanoqsh</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2871 ">#2871</a>]: Add <code>MySqlConnectOptions::get_database()</code> [[<a href="https://github.com/shiftrightonce "><code>@shiftrightonce</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2873 ">#2873</a>]: Sqlx Cli: Added force flag to drop database for postgres [[<a href="https://github.com/Vrajs16 "><code>@Vrajs16</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2894 ">#2894</a>]: feat: <code>Text</code> adapter [[<a href="https://github.com/abonander "><code>@abonander</code></a>]]</li>
</ul>
<h3>Changed</h3>
<ul>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2701 ">#2701</a>]: Remove documentation on offline feature [[<a href="https://github.com/Baptistemontan "><code>@Baptistemontan</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2713 ">#2713</a>]: Add additional info regarding using Transaction and PoolConnection as… [[<a href="https://github.com/satwanjyu "><code>@satwanjyu</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2770 ">#2770</a>]: Update README.md [[<a href="https://github.com/snspinn "><code>@snspinn</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2797 ">#2797</a>]: doc(mysql): document behavior regarding <code>BOOLEAN</code> and the query macros [[<a href="https://github.com/abonander "><code>@abonander</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2803 ">#2803</a>]: Don't use separate temp dir for query jsons (2) [[<a href="https://github.com/mattfbacon "><code>@mattfbacon</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2819 ">#2819</a>]: postgres begin cancel safe [[<a href="https://github.com/conradludgate "><code>@conradludgate</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2832 ">#2832</a>]: Update extra_float_digits default to 2 instead of 3 [[<a href="https://github.com/brianheineman "><code>@brianheineman</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2865 ">#2865</a>]: Update Faq - Bulk upsert with optional fields [[<a href="https://github.com/Vrajs16 "><code>@Vrajs16</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2880 ">#2880</a>]: feat: use specific message for slow query logs [[<a href="https://github.com/abonander "><code>@abonander</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2882 ">#2882</a>]: Do not require db url for prepare [[<a href="https://github.com/tamasfe "><code>@tamasfe</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2890 ">#2890</a>]: doc(sqlite): cover lack of <code>NUMERIC</code> support [[<a href="https://github.com/abonander "><code>@abonander</code></a>]]</li>
<li>[No PR]: Upgraded <code>libsqlite3-sys</code> to 0.27.0
<ul>
<li>Note: linkage to <code>libsqlite3-sys</code> is considered semver-exempt;
see the release notes for 0.7.0 below for details.</li>
</ul>
</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2640 ">#2640</a>]: fix: sqlx::macro db cleanup race condition by adding a margin to current timestamp [[<a href="https://github.com/fhsgoncalves "><code>@fhsgoncalves</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2655 ">#2655</a>]: [fix] Urlencode when passing filenames to sqlite3 [[<a href="https://github.com/uttarayan21 "><code>@uttarayan21</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2684 ">#2684</a>]: Make PgListener recover from UnexpectedEof [[<a href="https://github.com/hamiltop "><code>@hamiltop</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2688 ">#2688</a>]: fix: Make rust_decimal and bigdecimal decoding more lenient [[<a href="https://github.com/cameronbraid "><code>@cameronbraid</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2754 ">#2754</a>]: Is tests/x.py maintained? And I tried fix it. [[<a href="https://github.com/qwerty2501 "><code>@qwerty2501</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2784 ">#2784</a>]: fix: decode postgres time without subsecond [[<a href="https://github.com/granddaifuku "><code>@granddaifuku</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2806 ">#2806</a>]: Depend on version of async-std with non-private spawn-blocking [[<a href="https://github.com/A248 "><code>@A248</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2820 ">#2820</a>]: fix: correct decoding of <code>rust_decimal::Decimal</code> for high-precision values [[<a href="https://github.com/abonander "><code>@abonander</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2822 ">#2822</a>]: issue <a href="https://redirect.github.com/launchbadge/sqlx/issues/2821 ">#2821</a> Update error handling logic when opening a TCP connection [[<a href="https://github.com/anupj "><code>@anupj</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2826 ">#2826</a>]: chore: bump some sqlx-core dependencies [[<a href="https://github.com/djc "><code>@djc</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2838 ">#2838</a>]: Fixes rust_decimal scale for Postgres [[<a href="https://github.com/jkleinknox "><code>@jkleinknox</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2847 ">#2847</a>]: Fix comment in <code>sqlx migrate add</code> help text [[<a href="https://github.com/cryeprecision "><code>@cryeprecision</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2850 ">#2850</a>]: fix(core): avoid unncessary wakeups in <code>try_stream!()</code> [[<a href="https://github.com/abonander "><code>@abonander</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2856 ">#2856</a>]: Prevent warnings running <code>cargo build</code> [[<a href="https://github.com/nyurik "><code>@nyurik</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2864 ">#2864</a>]: fix(sqlite): use <code>AtomicUsize</code> for thread IDs [[<a href="https://github.com/abonander "><code>@abonander</code></a>]]</li>
<li>[<a href="https://redirect.github.com/launchbadge/sqlx/issues/2892 ">#2892</a>]: Fixed force dropping bug [[<a href="https://github.com/Vrajs16 "><code>@Vrajs16</code></a>]]</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/launchbadge/sqlx/commits/v0.7.3 ">compare view</a></li>
</ul>
</details>
<br />
Updates `uuid` from 1.6.0 to 1.6.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/uuid-rs/uuid/releases ">uuid's releases</a>.</em></p>
<blockquote>
<h2>1.6.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix uuid macro in consts by <a href="https://github.com/KodrAus "><code>@KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/721 ">uuid-rs/uuid#721</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/uuid-rs/uuid/compare/1.6.0...1.6.1 ">https://github.com/uuid-rs/uuid/compare/1.6.0...1.6.1 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="c889107324 "><code>c889107</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/721 ">#721</a> from uuid-rs/fix/uuid-macro</li>
<li><a href="f3f74961c4 "><code>f3f7496</code></a> fix uuid macro in consts</li>
<li>See full diff in <a href="https://github.com/uuid-rs/uuid/compare/1.6.0...1.6.1 ">compare view</a></li>
</ul>
</details>
<br />
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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions
</details>
2023-11-27 07:24:08 +00:00
liuyi
8cc9a0b21b
feat(server): add soft deleted flag to optimized blob table ( #5058 )
...
requires https://github.com/toeverything/OctoBase/pull/561
2023-11-27 07:06:31 +00:00
Peng Xiao
2deceb6e85
test(core): simple recovery ui e2e ( #5059 )
2023-11-27 06:39:41 +00:00
Peng Xiao
71d6b730f7
chore: bump blocksuite ( #5051 )
...
https://github.com/toeverything/blocksuite/pull/5337
2023-11-27 04:46:23 +00:00
Peng Xiao
34d575078c
feat(core): simple recovery history ui poc ( #5033 )
...
Simple recovery history UI poc.
What's missing
- [x] e2e
All biz logic should be done, excluding complete ui details.
- [ ] offline prompt
- [ ] history timeline
- [ ] page ui
https://github.com/toeverything/AFFiNE/assets/584378/fc3f6a48-ff7f-4265-b9f5-9c0087cb2635
2023-11-27 02:41:19 +00:00
DarkSky
f04ec50d12
feat: optional payment for frontend ( #5056 )
2023-11-25 15:15:44 +00:00
DarkSky
13e712158c
feat: optional payment for server ( #5055 )
2023-11-25 14:59:47 +00:00
liuyi
9dc2d55a5a
fix(server): add guid compatibility of :space:page variant ( #5062 )
2023-11-24 15:46:09 +00:00
liuyi
91efca107a
refactor(server): standarderlize metrics and trace with OTEL ( #5054 )
...
you can now export span to Zipkin and metrics to Prometheus when developing locally
follow the docs of OTEL: https://opentelemetry.io/docs/instrumentation/js/exporters/
<img width="2357" alt="image" src="https://github.com/toeverything/AFFiNE/assets/8281226/ec615e1f-3e91-43f7-9111-d7d2629e9679 ">
2023-11-24 15:19:22 +00:00
liuyi
cf65a5cd93
fix(server): never throw in websocket gateways ( #5050 )
2023-11-24 07:26:40 +00:00
LongYinan
42f4045ad6
chore: adjust the request memory size and replica count ( #5046 )
2023-11-24 06:19:38 +00:00
Joooye_34
317ca7f4e7
ci: fix storybook publish problem ( #5047 )
2023-11-23 23:38:09 +08:00
JimmFly
4168551783
chore: bump icons version ( #5042 )
2023-11-23 12:00:51 +00:00
LongYinan
55c6477bcc
fix(electron): appimage forge builder ( #5043 )
2023-11-23 11:46:50 +00:00
Peng Xiao
ae8329c590
chore(core): update react-resizable-panels ( #5041 )
...
`react-resizable-panels` will throw some errors sometime when showing history modal dialog.
I haven't checked the root cause, but upgrade it to the latest will get rid of the error.
2023-11-23 09:20:12 +00:00
LongYinan
25eda22af6
v0.10.3-canary.2
2023-11-23 16:47:40 +08:00
EYHN
23e0137ed8
refactor(workspace): blob sync ( #5037 )
...
This pr implements a blob engine.
It exposes a single `BlobStorage` to the `blocksuite`, and in it we sync blobs between multiple storages.
The implement still have few issues, but we can merge this pr first and fix them in future.
* BlobEngine currently **do nothing when delete**, because synchronization logic conflicts with deletion logic.
* BlobEngine sync between storages by querying the blob list at regular intervals. This will **cause many queries**, we can avoid this in the future by subscribing to remote changes.
2023-11-23 07:56:19 +00:00
liuyi
1740e7efa1
fix(server): check state changes before saving history record ( #5038 )
2023-11-23 07:39:02 +00:00
Peng Xiao
7463e87742
fix(electron): clone db file when enable cloud for desktop ( #5028 )
...
At the moment on desktop the user's local blob data will be lost after enable cloud.
This is because blob data is only synced from old idb to new idb, but not sync into sqlitedb.
This pr will simply clone the db file for desktop app. It should also speed up the time when enabling cloud for a large local workspace.
2023-11-23 07:23:16 +00:00
李华桥
9ded6afb4b
chore: v0.10.3-canary.1
2023-11-23 14:39:55 +08:00
JimmFly
ad2d3b9167
feat(core): add download app button to web ( #5023 )
2023-11-23 14:33:25 +08:00
LongYinan
3499dbbb7f
feat: upgrade dependencies and lockfile ( #5016 )
...
- Close https://github.com/toeverything/AFFiNE/security/dependabot/47
2023-11-23 05:18:05 +00:00
Joooye_34
4c8d54b3a7
refactor(core): use manual upgrade to replace auto migration when web setup ( #5022 )
...
1. Split logic in `packages/common/infra/src/blocksuite/index.ts` to multiple single files
2. Move migration logic from setup to upgrade module, to prevent auto migration problems and loading problem
2023-11-23 02:26:06 +00:00
liuyi
3710bcdc14
fix(server): use iso date string as history query input ( #5035 )
2023-11-23 01:59:08 +00:00
Peng Xiao
ca07b143ef
fix(core): should not reset page preset on rerender ( #5034 )
...
Should not reset editor preset when re-render.
See ce7ac88fc7/packages/editor/src/components/editor-container.ts (L197) . If these props changes, it will trigger some unexpected side effects.
2023-11-22 18:29:34 +00:00
EYHN
e8616acfe4
fix(workspace): fast check svg buffer ( #5032 )
2023-11-22 14:53:33 +00:00
EYHN
06203498da
fix(core): fix page loading shimmer ( #5027 )
2023-11-22 12:55:10 +00:00
Flrande
d7d47853fe
chore: bump blocksuite ( #5030 )
2023-11-22 20:51:35 +08:00
Flrande
a3d880daa3
chore: bump blocksuite ( #5026 )
2023-11-22 20:12:52 +08:00
liuyi
d1476495ae
feat(server): impl doc history ( #5004 )
2023-11-22 07:56:59 +00:00
liuyi
946b7b4004
feat(server): event on snapshot upserted ( #5002 )
2023-11-22 07:23:44 +00:00
liuyi
525b196cae
feat(server): reduce duplidated merge with cache ( #4975 )
2023-11-22 04:09:07 +00:00
liuyi
c69e542b98
feat(server): add cache module ( #4973 )
2023-11-22 04:09:00 +00:00
liuyi
85bee72e6b
chore(server): remove deprecated redis manager ( #4971 )
2023-11-22 03:51:18 +00:00
liuyi
b7d6237c20
feat(server): add doc history support ( #4970 )
2023-11-22 03:31:22 +00:00
LongYinan
5f1a124b53
fix(core): add error boundary for workspace layout ( #5014 )
...
https://github.com/toeverything/AFFiNE/assets/3468483/d478bf4f-2be3-4d7d-8d94-aa95c1f74c8e
2023-11-22 09:58:33 +08:00
Peng Xiao
3839a9bd15
build(electron): asar ( #4965 )
...
Due to restrictions on how Electron package works, the `node_modules` should not be hoisted and not to use s/h-links at all. This is why we need to have two separate installs for electron and non-electron packages in the build.
Tested via the following script
```bash
#!/bin/bash
echo "step 1: clean up"
find . -name "node_modules" -prune -exec rm -rf '{}' +
# git clean -dfX
build_type=canary
echo "step 2: install web dependencies"
# firstly, build web static
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 SENTRYCLI_SKIP_DOWNLOAD=1 PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 HUSKY=1 yarn
echo "step 3: generate assets"
BUILD_TYPE="$build_type" yarn workspace @affine/electron generate-assets
# cleanup node_modules
find . -name "node_modules" -prune -exec rm -rf '{}' +
echo "step 4: install electron dependencies"
# install electron deps
yarn config set nmHoistingLimits workspaces
yarn config set enableScripts false
yarn config set nmMode classic
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 HUSKY=0 yarn workspaces focus @affine/electron @affine/monorepo
echo "step 5: build native"
# build native
yarn workspace @affine/native build
yarn workspace @affine/storage build
echo "step 6: build electron"
# build electron
yarn workspace @affine/electron build
echo "step 7: package electron"
# package
SKIP_GENERATE_ASSETS=1 BUILD_TYPE="$build_type" HOIST_NODE_MODULES=1 yarn workspace @affine/electron package
```
2023-11-21 17:44:30 +00:00
Peng Xiao
f33c49b27e
fix(core): hmr issue on dev ( #5006 )
...
I suspect HMR does not working properly on dev because we have multiple entries.
One relative issue: https://github.com/webpack/webpack-dev-server/issues/2792/
I think we do not need multiple entries for polyfills & plugins after all. They could be in the same chunk, and could be later optimized through splitChunks option.
`ses.ts` is changed to `ses-lockdown.ts` because `ses.ts` does not pass circular dependency check by madge. I haven't looked through the real root cause though. See https://github.com/pahen/madge/issues/355
2023-11-21 17:27:16 +00:00
Peng Xiao
615255706d
fix: invisible button should not be interactive ( #5017 )
2023-11-22 01:05:38 +08:00
EYHN
5e8103adbd
chore: faster lint-staged ( #5013 )
...
Co-authored-by: EYHN <13579374+EYHN@users.noreply.github.com >
2023-11-21 22:24:24 +08:00
JimmFly
f06bdd9a39
fix(core): cmdk crash when entering double quotes ( #5008 )
...
Due to a bug in the upstream repository, a temporary fix was implemented until the issue in the upstream repository is resolved.
https://github.com/pacocoursey/cmdk/issues/189
2023-11-21 12:51:22 +00:00
李华桥
00c11d40cf
v0.10.3-canary.0
2023-11-21 10:02:46 +08:00
李华桥
0f6b28fd06
c0.11.0-canary.0
2023-11-20 23:53:50 +08:00
EYHN
90c130cf15
fix(core): merge updates before push to storage ( #4986 )
2023-11-20 23:26:19 +08:00
EYHN
9370110cdc
feat(workspace): more status for SyncEngine ( #4984 )
2023-11-20 22:51:20 +08:00
EYHN
c9f1fd9649
feat(workspace): more status for SyncPeer ( #4983 )
2023-11-20 20:37:12 +08:00
EYHN
70e71bd43e
fix(core): make e2e more stable ( #4987 )
2023-11-20 20:17:30 +08:00
EYHN
899e46b1fa
fix(core): rerender ( #4988 )
2023-11-20 17:32:40 +08:00
dependabot[bot]
c127d449a1
chore: bump the all-cargo-dependencies group with 1 update ( #4997 )
...
Bumps the all-cargo-dependencies group with 1 update: [uuid](https://github.com/uuid-rs/uuid ).
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/uuid-rs/uuid/releases ">uuid's releases</a>.</em></p>
<blockquote>
<h2>1.6.0</h2>
<h2>What's Changed</h2>
<ul>
<li>doc: fix links in v6 module by <a href="https://github.com/metalalive "><code>@metalalive</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/714 ">uuid-rs/uuid#714</a></li>
<li>Stabilize UUIDv6-v8 support by <a href="https://github.com/KodrAus "><code>@KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/718 ">uuid-rs/uuid#718</a></li>
<li>Prepare for 1.6.0 release by <a href="https://github.com/KodrAus "><code>@KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/719 ">uuid-rs/uuid#719</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/metalalive "><code>@metalalive</code></a> made their first contribution in <a href="https://redirect.github.com/uuid-rs/uuid/pull/714 ">uuid-rs/uuid#714</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/uuid-rs/uuid/compare/1.5.0...1.6.0 ">https://github.com/uuid-rs/uuid/compare/1.5.0...1.6.0 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="4609e61794 "><code>4609e61</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/719 ">#719</a> from uuid-rs/cargo/1.6.0</li>
<li><a href="24330666ec "><code>2433066</code></a> prepare for 1.6.0 release</li>
<li><a href="9787ea1d0b "><code>9787ea1</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/718 ">#718</a> from uuid-rs/feat/stabilize-v6-plus</li>
<li><a href="90b0bc0a1c "><code>90b0bc0</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/714 ">#714</a> from metalalive/doc/fix-v6-links</li>
<li><a href="1eebe7d299 "><code>1eebe7d</code></a> bump msrv to 1.60.0</li>
<li><a href="6bade3ae59 "><code>6bade3a</code></a> just test lib with miri</li>
<li><a href="3df0aaa80d "><code>3df0aaa</code></a> stabilize UUIDv6-v8 support</li>
<li><a href="003dc57994 "><code>003dc57</code></a> doc: fix links to timestamp module</li>
<li>See full diff in <a href="https://github.com/uuid-rs/uuid/compare/1.5.0...1.6.0 ">compare view</a></li>
</ul>
</details>
<br />
[](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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions
</details>
2023-11-20 14:43:11 +08:00
Peng Xiao
add20ec2f8
fix(core): blob key issue for cloud blob provider ( #4907 )
...
There are some resources that only exists on `/static`. Current prefix check is incorrect since it could start with `/static`
2023-11-20 14:06:24 +08:00
LongYinan
34c5e7d83d
build: remove useless source-map-loader to speedup webpack ( #4910 )
2023-11-20 11:04:57 +08:00
LongYinan
7f09652cca
fix(core): handle the getSession network error properly ( #4909 )
...
If network offline or API error happens, the `session` returned by the `useSession` hook will be null, so we can't assume it is not null.
There should be following changes:
1. create a page in ErrorBoundary to let the user refetch the session.
2. The `SessionProvider` stop to pull the new session once the session is null, we need to figure out a way to pull the new session when the network is back or the user click the refetch button.
2023-11-20 11:04:39 +08:00
Cats Juice
57d42bf491
refactor(core): remove all MUI related components and utilities ( #4941 )
2023-11-20 10:51:28 +08:00
JimmFly
4ef1f4c046
fix(core): escape cmdk value ( #4947 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2023-11-20 10:49:32 +08:00
JimmFly
9bab1b5dff
feat(core): keep the latest toast showing when multiple call ( #4961 )
2023-11-20 10:47:09 +08:00
JimmFly
f09c717413
fix(core): adjust cmdk list scroll padding block ( #4972 )
2023-11-20 10:39:45 +08:00
Cats Juice
134428f38d
style(core): update pro plan card style ( #4960 )
2023-11-18 00:36:10 +08:00
Cats Juice
ce7a691eef
fix(component): stack notification cards expand animation ( #4962 )
2023-11-18 00:32:06 +08:00
EYHN
5fea0102fb
chore: add devcontainer config ( #4974 )
...
Co-authored-by: Reese <3253971+figadore@users.noreply.github.com >
2023-11-17 17:54:19 +08:00
JimmFly
ce2eeeffbe
feat(i18n): update translation ( #4923 )
2023-11-17 17:39:33 +08:00
EYHN
aa4c7407de
refactor: new provider ( #4900 )
2023-11-17 15:50:01 +08:00
liuyi
9baad36e41
fix(server): all viewers can share public link ( #4968 )
2023-11-17 13:48:09 +08:00
Flrande
8b2c3d4c41
chore: bump blocksuite ( #4958 )
2023-11-16 22:01:03 +08:00
LongYinan
703fad6a0d
ci: prevent error if rust build is cached by nx ( #4951 )
...
If Rust build was cached by nx, only the output file will be presented. The chmod command will be failed in this case like: https://github.com/toeverything/AFFiNE/actions/runs/6874496337/job/18697360212
2023-11-16 21:57:22 +08:00
Peng Xiao
791eb75ca8
fix(infra): page id compat fix for page ids in workspace.meta ( #4950 )
...
since we strip `page:` in keys of workspacedoc.spaces, we should also strip the prefix in meta.pages as well.
2023-11-16 21:57:17 +08:00
JimmFly
ddd7cab414
feat(core): support share edgeless mode ( #4856 )
...
Close #3287
<!--
copilot:all
-->
### <samp>🤖 Generated by Copilot at d3fdf86</samp>
### Summary
📄 🚀 🔗
<!--
1. 📄 - This emoji represents the page and edgeless modes of sharing a page, as well as the GraphQL operations and types related to public pages.
2. 🚀 - This emoji represents the functionality of publishing and revoking public pages, as well as the confirmation modal and the notifications for the user.
3. 🔗 - This emoji represents the sharing URL and the query parameter for the share mode, as well as the hooks and functions that generate and use the URL.
-->
This pull request adds a feature to the frontend component of AFFiNE that allows the user to share a page in either `page` or `edgeless` mode, which affects the appearance and functionality of the page. It also adds the necessary GraphQL operations, types, and schema to support this feature in the backend, and updates the tests and the storybook stories accordingly.
* Modify the `useIsSharedPage` hook to accept an optional `shareMode` argument and use the `getWorkspacePublicPagesQuery`, `publishPageMutation`, and `revokePublicPageMutation` from `@affine/graphql`
2023-11-15 16:02:58 +08:00
LongYinan
e7e617a791
chore: change default branch to canary ( #4948 )
2023-11-15 07:46:50 +00:00
LongYinan
cc2ade601c
ci: only disable postinstall on macOS in nightly desktop build ( #4938 )
2023-11-14 23:03:49 +08:00
Joooye_34
ea4f5ffc83
fix(infra): workspace migration without blockVersions ( #4936 )
2023-11-14 23:03:40 +08:00
Peng Xiao
9ac8a32e00
perf(component): use png instead of svg for rendering noise svg ( #4935 )
2023-11-14 23:03:19 +08:00
DarkSky
8d55e5cdf9
fix: change password token check ( #4934 ) ( #4932 )
2023-11-14 23:03:01 +08:00
LongYinan
8bcc886b46
ci: disable postinstall in nightly desktop build ( #4930 )
...
Should be part of https://github.com/toeverything/AFFiNE/pull/4885
2023-11-14 14:45:52 +08:00
Peng Xiao
f9971ba922
fix(core): change server url of stable to insider ( #4902 ) ( #4926 )
2023-11-14 14:40:06 +08:00
LongYinan
5b0b8cf216
test(e2e): add subdoc migration test ( #4921 )
...
test(e2e): add subdoc migration test
fix: remove .only
2023-11-14 14:39:59 +08:00
Peng Xiao
16488d594c
fix(infra): compatibility fix for space prefix ( #4912 )
...
It seems there are some cases that [this upstream PR](https://github.com/toeverything/blocksuite/pull/4747 ) will cause data loss.
Because of some historical reasons, the page id could be different with its doc id.
It might be caused by subdoc migration in the following (not 100% sure if all white screen issue is caused by it) 0714c12703/packages/common/infra/src/blocksuite/index.ts (L538-L540)
In version 0.10, page id in spaces no longer has prefix "space:"
The data flow for fetching a doc's updates is:
- page id in `meta.pages` -> find `${page-id}` in `doc.spaces` -> `doc` -> `doc.guid`
if `doc` is not found in `doc.spaces`, a new doc will be created and its `doc.guid` is the same with its pageId
- because of guid logic change, the doc that previously prefixed with `space:` will not be found in `doc.spaces`
- when fetching the rows of this doc using the doc id === page id,
it will return EMPTY since there is no updates associated with the page id
The provided fix in the PR will patch the `spaces` field of the root doc so that after 0.10 the page doc can still be found in the `spaces` map. It shall apply to both of the idb & sqlite datasources.
Special thanks to @lawvs 's db file for investigation!
2023-11-14 14:39:50 +08:00
liuyi
c44a9a4903
fix(server): wrap updates applying in a transaction ( #4922 )
2023-11-14 14:39:39 +08:00
Peng Xiao
76b585d1ef
fix(storybook): page tags display ( #4924 )
2023-11-14 09:45:12 +08:00
dependabot[bot]
993974d20d
chore: bump the all-cargo-dependencies group with 5 updates ( #4918 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-13 16:01:07 +08:00
LongYinan
f17c0e1268
Merge pull request #4915 from toeverything/chore/hotfix-back-to-master
...
fix: cherry pick hotfix back to master
2023-11-13 10:12:06 +08:00
Whitewater
eded501123
fix: get page preview based on block order ( #4888 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-11-12 15:09:57 +00:00
DarkSky
ac3756ea23
chore: cleanup deployment
2023-11-12 11:22:21 +08:00
forehalo
dc8e84df31
fix(server): increase server acceptable websocket payload size
2023-11-12 11:22:00 +08:00
Peng Xiao
a8d89254ce
fix(electron): dev reload ( #4911 )
2023-11-12 03:19:27 +00:00
李华桥
7525126d89
fix(core): change server url of stable to insider
2023-11-10 20:07:18 +08:00
Joooye_34
30bac7dce2
ci(core): eslint errors for core ( #4662 )
2023-11-10 10:25:59 +00:00
Joooye_34
b98a258083
fix(core): change server url of stable to insider ( #4902 )
2023-11-10 15:46:31 +08:00
Yifeng Wang
28177657ef
chore: bump theme ( #4904 )
...
Co-authored-by: 李华桥 <joooye1991@gmail.com >
2023-11-10 15:42:06 +08:00
Peng Xiao
5c2d958e2b
fix(core): svg blob syncing issue ( #4886 )
2023-11-10 05:32:51 +00:00
Yifeng Wang
2117d6b232
chore: bump blocksuite ( #4901 )
2023-11-10 13:23:29 +08:00
李华桥
5c48c83301
v0.10.0
2023-11-10 11:42:04 +08:00
fourdim
af7d331610
feat(core): add global loading state ( #4840 )
2023-11-10 03:25:05 +00:00
JimmFly
1fe5a0fffa
feat(core): auto select block when jump to block ( #4858 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-11-10 03:02:56 +00:00
fourdim
f1e32aab66
fix(hooks): push success toast after save ( #4830 )
2023-11-10 02:40:52 +00:00
liuyi
7698a6ac8e
chore(server): bump octobase versions ( #4893 )
...
Co-authored-by: DarkSky <darksky2048@gmail.com >
2023-11-10 02:25:28 +00:00
李华桥
063f5a683e
v0.10.0-canary.16
2023-11-10 10:10:54 +08:00
Peng Xiao
fd74776abe
fix(core): disable sync doc/blob on start ( #4897 )
2023-11-09 18:00:53 +00:00
LongYinan
9d89e4f7f5
fix(server): earlyAccessPreview env override ( #4898 )
2023-11-09 17:20:41 +00:00
LongYinan
7182b85bd0
chore: add performance logger ( #4896 )
...
Add more performance log to debug loading problem
2023-11-10 00:42:30 +08:00
LongYinan
91f1d0081b
ci: adjust the beta cluster configuration ( #4895 )
...
- Scale the pod counts to 10
- Set `earlyAccessPreview` to false
2023-11-10 00:42:19 +08:00
李华桥
09c3a8828f
chore: add performance logger
2023-11-10 00:33:48 +08:00
LongYinan
927a6489f9
ci: adjust the beta cluster configuration
2023-11-10 00:22:45 +08:00
李华桥
075eead9fa
v0.10.0-canary.15
2023-11-09 23:27:12 +08:00
Joooye_34
15b0c127f5
chore: disable outline, copilot and hello world plugin ( #4894 )
2023-11-09 14:53:45 +00:00
Peng Xiao
d0b014543c
fix(core): select all in page list group header does not need to enable selection ( #4869 )
2023-11-09 12:01:36 +00:00
LongYinan
839f500979
ci: disable postinstall on macOS build ( #4885 )
2023-11-09 11:58:55 +00:00
Joooye_34
af72bf0f69
feat(core): support signup set password before goto stripe payment url ( #4892 )
2023-11-09 11:58:16 +00:00
liuyi
405167854b
perf(server): avoid auto select blob data when upsert ( #4891 )
2023-11-09 10:45:31 +00:00
liuyi
f9654bb1f8
feat(core): unify all new created page IDs to nanoid ( #4884 )
2023-11-09 09:22:02 +00:00
EYHN
e3e0553c56
fix(hooks): missing page preview and references ( #4863 )
2023-11-09 08:59:36 +00:00
liuyi
248fb1fa69
fix(server): token set with id instead of email ( #4883 )
2023-11-09 08:23:03 +00:00
Joooye_34
12a2ccf1a5
fix(core): visit /signin pay when already logged and subscribed ( #4882 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-11-09 07:38:52 +00:00
Peng Xiao
227b8b0061
fix(component): dragged component disappear when dragging ( #4870 )
2023-11-09 06:20:15 +00:00
Peng Xiao
442115632b
chore(component): bump bs ( #4880 )
2023-11-09 04:47:10 +00:00
Peng Xiao
ad82376890
chore: update delete icon ( #4871 )
2023-11-09 02:49:48 +00:00
Joooye_34
a8bff81a7e
ci: use resolutions to resolve building error in mac-os ( #4878 )
2023-11-09 02:43:47 +00:00
3720
da2821eaac
fix(core): collections data migration without blocking data reads ( #4866 )
2023-11-08 12:38:43 +00:00
Joooye_34
c55565ee71
chore: update changelog url ( #4868 )
2023-11-08 12:08:24 +00:00
EYHN
ecd5db2952
ci: add oxlint ( #4867 )
2023-11-08 17:54:41 +08:00
Joooye_34
744cd47481
v0.10.0-canary.14
2023-11-08 15:36:54 +08:00
Hongtao Lye
12c72e63b1
chore: bump blocksuite version ( #4862 )
2023-11-08 07:12:48 +00:00
EYHN
b7edaab387
chore: fix code style issues ( #4857 )
2023-11-08 05:51:08 +00:00
JimmFly
83472cc682
fix(core): duplicate registration in edgeless ( #4864 )
2023-11-08 02:47:46 +00:00
3720
08e7fa3486
fix(core): improve the UX for edit collection ( #4827 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-11-07 10:18:56 +00:00
liuyi
7305530d97
fix(server): wrong data migration ( #4855 )
2023-11-07 09:20:42 +00:00
liuyi
b99ac51624
chore(server): decrease amount of batch updates merging ( #4860 )
2023-11-07 09:18:02 +00:00
liuyi
01d7fe4597
fix(server): avoid saving invalid data ( #4859 )
2023-11-07 08:27:17 +00:00
singhjatin297
ac0a3aab3e
docs: update CONTRIBUTING.md ( #4848 )
2023-11-07 16:29:45 +08:00
singhjatin297
7fe23a31b2
docs: update behind-the-code.md ( #4849 )
2023-11-07 06:17:01 +00:00
Joooye_34
f50b8002b3
v0.10.0-canary.13
2023-11-07 09:55:30 +08:00
Joooye_34
7a4669a6aa
feat(core): implement parts of workspace upgrade design ( #4850 )
2023-11-06 17:02:25 +00:00
Joooye_34
8554d5d791
v0.10.0-canary.12
2023-11-07 00:13:51 +08:00
Peng Xiao
da9934fbdc
fix(electron): add search to proxied url ( #4852 )
2023-11-06 14:47:44 +00:00
liuyi
cb6974f263
fix(server): avoid server overloading by too many updates ( #4846 )
2023-11-06 10:21:19 +00:00
liuyi
f75684d6f6
fix(server): failed to share again if disable once ( #4844 )
2023-11-06 10:19:21 +00:00
JimmFly
acf0734c95
fix(core): adjust discount display ( #4847 )
2023-11-06 10:17:24 +00:00
Peng Xiao
cfffcad1b8
fix(core): adapt blob in sqlite for svg type ( #4845 )
2023-11-06 10:09:48 +00:00
Joooye_34
3b74ff2b92
v0.10.0-canary.11
2023-11-06 18:10:28 +08:00
JimmFly
2b34e1a9cd
feat(core): adjust filter logic ( #4831 )
2023-11-06 06:41:18 +00:00
JimmFly
9664d142ad
feat(core): temporary expansion files are limited to 100M ( #4833 )
2023-11-06 06:38:46 +00:00
JimmFly
e7106b7393
chore(i18n): adjust text ( #4832 )
2023-11-06 06:36:49 +00:00
liuyi
f491ff94cc
refactor(server): separate page visibility from workspace permission ( #4836 )
2023-11-06 03:49:39 +00:00
dependabot[bot]
e8987457ab
chore: bump the all-cargo-dependencies group with 1 update ( #4841 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-06 03:43:18 +00:00
Cats Juice
7a8150398c
feat(core): payment plans error boundary ( #4744 )
2023-11-06 02:42:21 +00:00
Cats Juice
3c4dbed16b
fix(core): payment UI fix ( #4839 )
2023-11-06 02:40:52 +00:00
Peng Xiao
7e381e830a
perf(core): load all pages after 10s ( #4834 )
2023-11-03 09:42:29 +00:00
Cats Juice
61dc4a56f9
fix(core): implement pricing plans scroll area with radix ( #4824 )
2023-11-03 06:16:25 +00:00
JimmFly
788c445f2b
chore(i18n): add new key for empty trash page ( #4829 )
2023-11-03 06:15:13 +00:00
Joooye_34
97db941749
fix(core): remove responsive editor width ( #4821 )
2023-11-03 04:47:51 +00:00
liuyi
f6cfe7c8a1
fix(server): only treat active subscription as existing ( #4826 )
2023-11-03 04:00:58 +00:00
Joooye_34
fb0aaabe53
v0.10.0-canary.10
2023-11-02 23:40:34 +08:00
Cats Juice
de33967a73
fix(component): flex setting-modal header & footer ( #4818 )
2023-11-02 15:11:20 +00:00
Peng Xiao
65321e39cc
refactor(component): virtual rendering page list ( #4775 )
...
Co-authored-by: Joooye_34 <Joooye1991@gmail.com >
2023-11-02 14:21:01 +00:00
liuyi
a3906bf92b
fix(server): do not return subscription if not active ( #4820 )
2023-11-02 14:17:26 +00:00
JimmFly
0a88be7771
feat(core): add jump to block for cmdk ( #4802 )
2023-11-02 11:49:49 +00:00
3720
7068d5f38a
feat(core): remove mode and pages field from Collection ( #4817 )
2023-11-02 10:47:43 +00:00
LongYinan
bf17b4789b
Merge pull request #4819 from toeverything/61/hotfix
...
fix(server): remove awareness states cache
2023-11-02 18:31:19 +08:00
forehalo
5e9efbffa3
fix(server): page variant may exist
2023-11-02 18:25:30 +08:00
forehalo
7e516236f5
fix(workspace): remove awareness states cache
2023-11-02 18:24:00 +08:00
Hongtao Lye
15024c6c8a
chore: bump blocksuite ( #4801 )
2023-11-02 09:12:23 +00:00
liuyi
6a93203d68
feat(server): sync data with ack ( #4791 )
2023-11-02 09:05:28 +00:00
JimmFly
af9663d3e7
fix(core): adjust payment related text ( #4797 )
2023-11-02 08:22:54 +00:00
EYHN
1d7e3dd570
fix(core): currentUser undefined when all workspaces deleted ( #4812 )
2023-11-02 07:20:08 +00:00
EYHN
6ef02fbc38
fix(core): fix block suite edit mode switch shortcut ( #4813 )
2023-11-02 07:17:44 +00:00
EYHN
604c3da9fe
docs: change yarn version in BUILDING.md ( #4811 )
2023-11-02 03:56:02 +00:00
Joooye_34
75c8dd75e3
v0.10.0-canary.9
2023-11-01 22:03:47 +08:00
Cats Juice
e5c86a9249
fix(core): billing cancel confirm dialog ( #4795 )
2023-11-01 09:38:43 +00:00
3720
e5be570f54
fix(core): text color of search input, style for the multi-select tag, date-picker autofocus issue ( #4799 )
2023-11-01 09:28:00 +00:00
LongYinan
6aaf550241
ci: fix wrangler deploy ( #4803 )
2023-11-01 09:12:00 +00:00
LongYinan
2d62ec72a7
ci: dynamic setup server deploy environment by release tag ( #4790 )
2023-11-01 07:38:15 +00:00
Joooye_34
0273ea8b00
v0.10.0-canary.8
2023-11-01 00:03:04 +08:00
JimmFly
97d189f1c8
fix(component): adjust autofill style ( #4773 )
2023-10-31 15:30:35 +00:00
Joooye_34
db36f81d24
feat(core): support subscribe plan after login ( #4788 )
2023-10-31 15:29:23 +00:00
DarkSky
c30d2550ff
fix: request prevented when re-downgrade subscribe ( #4786 )
2023-10-31 11:17:28 +00:00
Cats Juice
93e286177f
feat(core): billing history pagination ( #4787 )
2023-10-31 09:47:59 +00:00
Peng Xiao
8ca53326a7
fix(electron): update app icons ( #4789 )
...
Co-authored-by: Joooye_34 <Joooye1991@gmail.com >
2023-10-31 09:09:42 +00:00
Cats Juice
7d6c096462
feat(core): payment billing loading ( #4763 )
2023-10-31 09:00:19 +00:00
Peng Xiao
f08408ebe5
fix(core): possible crash issues ( #4783 )
2023-10-31 08:56:14 +00:00
Cats Juice
0ad0ab50d0
fix(core): adjust setting-modal layout to center tip ( #4776 )
2023-10-31 08:10:41 +00:00
Joooye_34
563863005f
v0.10.0-canary.6
2023-10-31 14:40:47 +08:00
DarkSky
57d71ad6cf
fix: idempotencyKey used ( #4774 )
2023-10-31 05:26:42 +00:00
Joooye_34
37ec552f74
v0.10.0-canary.5
2023-10-31 11:54:25 +08:00
Peng Xiao
9e3c79526c
fix(core): selectAtom crash on isEqual ( #4780 )
2023-10-31 03:29:18 +00:00
JimmFly
a015dc42bb
feat(core): support fuzzy highlighting ( #4765 )
2023-10-31 03:02:53 +00:00
Joooye_34
17afe218fe
v0.10.0-canary.4
2023-10-31 01:49:15 +08:00
Joooye_34
7b204cc611
Merge pull request #4766 from toeverything/chore/stripe-env
...
chore(server): add stripe env to deploy.yml
2023-10-30 17:25:23 +00:00
Joooye_34
9102f1f9a9
Merge pull request #4768 from toeverything/zzj/new-collections-i18n
...
feat(i18n): add i18n support for new collections
2023-10-30 16:39:14 +00:00
LongYinan
f6b53a1167
Merge pull request #4770 from toeverything/fix-html-template
...
fix(core): description field in html template
2023-10-30 16:37:45 +00:00
Joooye_34
6fcdb05925
chore(server): add stripe env
2023-10-31 00:12:17 +08:00
LongYinan
99b35c7a93
ci: reduce deployment events on pull requests
2023-10-30 19:57:54 +08:00
LongYinan
fc27a2e906
fix(core): description field in html template
2023-10-30 19:57:54 +08:00
liuyi
b4d8f1428c
Merge pull request #4771 from toeverything/jimmfly/1030/add-i18n
...
feat(i18n): add new key for billing
2023-10-30 10:56:51 +00:00
JimmFly
1b0c604c02
feat(i18n): add new key for billing
2023-10-30 17:46:48 +08:00
LongYinan
581635f40b
Merge pull request #4709 from toeverything/61/doc-perf
...
perf(server): opmitize updates table
2023-10-30 09:27:19 +00:00
LongYinan
d752086846
Merge pull request #4767 from toeverything/61/fix/data-migration
...
fix(server): wrong prod data migration scripts filter
2023-10-30 09:21:37 +00:00
zzj3720
f23ec9063c
feat(collections): completion i18n
2023-10-30 17:06:59 +08:00
forehalo
26b953ce57
fix(server): wrong prod data migration scripts filter
2023-10-30 16:50:39 +08:00
LongYinan
72babe9157
Merge pull request #4751 from toeverything/yarn-4.0.1
...
chore: upgrade to yarn@4.0.1
2023-10-30 07:49:29 +00:00
LongYinan
b6ca81821e
Merge pull request #4758 from toeverything/dependabot/cargo/all-cargo-dependencies-114856a603
...
chore: bump the all-cargo-dependencies group with 1 update
2023-10-30 07:46:35 +00:00
DarkSky
f11cc40ae3
Merge pull request #4410 from toeverything/payment-system
...
feat: payment system
2023-10-30 07:15:52 +00:00
DarkSky
95c1a44a0d
Merge branch 'master' into payment-system
2023-10-30 01:55:51 -05:00
LongYinan
198befb006
Merge pull request #4748 from fourdim/doc-0627
...
docs: update README.md
2023-10-30 06:37:25 +00:00
LongYinan
fc3516acfb
Merge pull request #4746 from toeverything/data-migrations-system
...
feat(server): add data migration system
2023-10-30 06:36:18 +00:00
DarkSky
de9e7f97a4
feat: add idempotent request support for payment apis ( #4753 )
2023-10-30 05:54:09 +00:00
dependabot[bot]
05ad6eb450
chore: bump the all-cargo-dependencies group with 1 update
...
Bumps the all-cargo-dependencies group with 1 update: [serde](https://github.com/serde-rs/serde ).
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.189...v1.0.190 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: all-cargo-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-30 03:39:55 +00:00
forehalo
98d0ac3c90
feat(server): add data migration system
2023-10-30 11:12:09 +08:00
Flrande
2aa4b4c1f3
fix: remove awareness state before window unload ( #4752 )
2023-10-29 19:50:18 +00:00
DarkSky
3798293d3e
fix: error handle in payment resolver ( #4754 )
2023-10-30 00:33:21 +08:00
LongYinan
fd76d33421
chore: upgrade to yarn@4.0.1
2023-10-29 16:06:29 +08:00
dependabot[bot]
2a4495f7ee
ci: bump cloudflare/wrangler-action from 3.3.1 to 3.3.2 ( #4717 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-28 12:08:49 +00:00
DarkSky
1775138228
feat: bump up blob size limit temporarily ( #4747 )
2023-10-28 07:51:02 +00:00
Cats Juice
8c194ab8b0
feat(core): confirm before cancel in billing page ( #4749 )
2023-10-28 14:12:25 +08:00
fourdim
5ba1c0dbdb
fix: prettier issue
2023-10-28 00:50:03 -04:00
fourdim
59ec122940
docs: update README.md
2023-10-27 21:42:17 -04:00
DarkSky
588f63505d
fix: password reset token ( #4743 )
2023-10-27 09:52:29 +00:00
3720
ef8024c657
feat: new collections ( #4530 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-10-27 09:06:59 +00:00
Joooye_34
abbd8235aa
chore(core): enable payment in canary ( #4745 )
2023-10-27 16:59:13 +08:00
Joooye_34
385de7d33b
Merge remote-tracking branch 'origin/master' into payment-system
2023-10-27 16:04:48 +08:00
Cats Juice
87571a0879
chore(core): replace setting-modal sidebar icons ( #4742 )
2023-10-27 15:59:41 +08:00
JimmFly
af24334264
feat(core): add upgrade success page ( #4738 )
2023-10-27 15:49:32 +08:00
Joooye_34
9fc0152cb1
fix: directory error when publish npm lib ( #4735 )
2023-10-27 07:08:54 +00:00
JimmFly
35dbbe561a
feat(core): adjust member tips ( #4737 )
2023-10-27 14:25:48 +08:00
liuyi
50563dcb6e
feat(server): auto attach early access coupon ( #4728 )
2023-10-27 10:28:22 +08:00
Cats Juice
edb6e0fd69
feat(core): pricing plans actions ( #4724 )
2023-10-26 22:00:14 +08:00
liuyi
9334a363c7
chore(server): upgrade stripe sdk ( #4733 )
2023-10-26 12:37:52 +00:00
JimmFly
e0f7ac426c
feat(core): add translation key for payment ( #4723 )
2023-10-26 16:15:12 +08:00
Joooye_34
1deb6bffd3
feat(core): disable payment in canary ( #4722 )
2023-10-26 00:50:39 +08:00
JimmFly
ae6376edee
chore(core): update communities icon ( #4719 )
2023-10-25 10:45:54 +00:00
JimmFly
780c164cc8
fix(core): retrieve missing search result titles ( #4718 )
2023-10-25 10:45:14 +00:00
JimmFly
df69c908fe
feat(core): adapt storage progress to payment system ( #4713 )
2023-10-25 16:18:30 +08:00
Cats Juice
eaa90c9fb6
feat(core): payment plans skeleton ( #4715 )
2023-10-25 16:16:50 +08:00
Cats Juice
e8a88da9e4
feat(core): auto scroll to current payment plan ( #4714 )
2023-10-25 10:58:19 +08:00
joooye34
559ec3956f
v0.10.0-canary.3
2023-10-24 20:18:21 +08:00
Cats Juice
3749125907
feat(core): full width scroll area for plans ( #4708 )
2023-10-24 18:38:31 +08:00
liuyi
97d06432f0
fix(server): wrong invoice recurring value saved ( #4712 )
2023-10-24 18:32:52 +08:00
LongYinan
b13705ba3d
ci: remove setup-maker to reduce release duration ( #4710 )
2023-10-24 10:09:40 +00:00
JimmFly
df77ffde9a
feat(core): add account subscription status ( #4707 )
2023-10-24 18:05:56 +08:00
forehalo
ef1228dcb4
perf(server): opmitize updates table
2023-10-24 17:54:59 +08:00
dependabot[bot]
551287ab44
ci: bump actions/upload-artifact from 2 to 3 ( #4701 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-24 09:36:07 +00:00
dependabot[bot]
113105181d
ci: bump docker/login-action from 2 to 3 ( #4702 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-24 09:01:09 +00:00
Flrande
627e5dfbb5
feat: bump blocksuite ( #4706 )
2023-10-24 09:00:27 +00:00
Joooye_34
21604a2cad
Merge pull request #4699 from toeverything/61/subscription-edge-case
...
fix(server): subscription edge case
2023-10-24 16:11:37 +08:00
dependabot[bot]
fd6536ea90
ci: bump actions/checkout from 2 to 4 ( #4700 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-24 06:00:00 +00:00
dependabot[bot]
a42d218962
ci: bump actions/setup-node from 3 to 4 ( #4704 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-24 05:59:16 +00:00
JimmFly
5226d6c568
feat(core): add search result highlighting ( #4667 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-10-24 05:54:37 +00:00
dependabot[bot]
14bee1811c
ci: bump docker/setup-qemu-action from 2 to 3 ( #4703 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-24 05:13:58 +00:00
forehalo
7ecee01d20
fix(server): respond stripe webhook immediately
2023-10-24 12:09:14 +08:00
forehalo
2e4f6ef2ed
feat(server): combine plan and recurring as stripe lookup key
2023-10-24 12:09:14 +08:00
forehalo
9b43380b05
fix(server): cancel scheduled subscription
2023-10-24 12:09:14 +08:00
liuyi
303dade2ef
fix cancel subscription edge cases ( #4691 )
2023-10-24 11:40:46 +08:00
liuyi
113b20f669
fix(core): payment ui issues ( #4672 )
2023-10-24 11:40:46 +08:00
liuyi
95d37fc63f
refactor(core): make subscription hook ( #4669 )
2023-10-24 11:40:46 +08:00
liuyi
858a1da35f
feat(core): impl billing settings ( #4652 )
2023-10-24 11:40:46 +08:00
forehalo
1d62133f4f
feat(core): impl subscription plans setting
2023-10-24 11:40:46 +08:00
forehalo
df054ac7f6
feat(core): payment backend
2023-10-24 11:40:44 +08:00
Alex Yang
493b815b7b
fix(plugin-cli): use relative path ( #4698 )
2023-10-23 12:14:40 -05:00
dependabot[bot]
e75a0743f8
chore: bump @mui/material from 5.14.13 to 5.14.14 ( #4678 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 08:07:04 +00:00
dependabot[bot]
5573afc8d5
ci: bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 ( #4686 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 07:39:51 +00:00
dependabot[bot]
8b703fd9ad
ci: bump docker/build-push-action from 4 to 5 ( #4690 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 07:23:04 +00:00
dependabot[bot]
2a97194c75
ci: bump docker/setup-buildx-action from 2 to 3 ( #4689 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 07:22:34 +00:00
dependabot[bot]
13b6bb7ee3
ci: bump kentaro-m/auto-assign-action from 1.2.4 to 1.2.5 ( #4687 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 07:22:02 +00:00
dependabot[bot]
43220f6db6
ci: bump cloudflare/wrangler-action from 2.0.0 to 3.3.1 ( #4688 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 07:21:54 +00:00
dependabot[bot]
b52e006bfe
chore: bump @mui/icons-material from 5.14.13 to 5.14.14 ( #4680 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 07:04:49 +00:00
Peng Xiao
a8b10c64b8
fix(component): disable CMDK list animation ( #4685 )
2023-10-23 06:46:11 +00:00
dependabot[bot]
9d6b335829
chore: bump @aws-sdk/client-s3 from 3.428.0 to 3.433.0 ( #4682 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 06:38:37 +00:00
LongYinan
9820c80ee2
ci: dependabot group config
2023-10-23 15:03:50 +08:00
LongYinan
1dd17c6334
ci: fix electron app nightly build workflow ( #4684 )
2023-10-23 06:30:10 +00:00
LongYinan
b6d21c0945
fix(storage): rustix security fix ( #4677 )
2023-10-23 03:00:15 +00:00
LongYinan
aba771e99c
feat: upgrade to yarn@4 ( #4676 )
2023-10-23 02:55:45 +00:00
Alex Yang
d9e2d17a26
refactor: cleanup code
2023-10-20 19:28:04 -05:00
DarkSky
779ac39b36
fix(server): captcha guard ( #4673 )
2023-10-20 08:54:08 +00:00
Peng Xiao
817463c40e
feat(component): checkbox ( #4665 )
2023-10-20 03:46:44 +00:00
LongYinan
890905ed0e
ci: fix electron make script on Windows
2023-10-19 22:44:55 +08:00
LongYinan
54aad58388
ci: fix electron make script on Windows ( #4666 )
2023-10-19 13:00:11 +00:00
LongYinan
37c6560dd6
v0.10.0-canary.2
2023-10-19 17:18:18 +08:00
LongYinan
352420b881
build: fix native module in aarch64 docker image ( #4656 )
2023-10-19 08:59:02 +00:00
Joooye_34
61d9958a4c
feat(core): change favicon ( #4663 )
2023-10-19 08:46:59 +00:00
liuyi
7275d417b2
fix(server): avoid workspace subdoc guid conflict ( #4664 )
2023-10-19 08:12:57 +00:00
Joooye_34
d835be90cb
chore: prettier ignore file generated by napi-rs ( #4661 )
2023-10-19 07:17:04 +00:00
JimmFly
c54489ba6e
fix: wrong confirm button position ( #4657 )
2023-10-19 03:16:12 +00:00
Alex Yang
9958baa843
fix(hooks): use uuid as pageId ( #4658 )
2023-10-18 22:14:41 -05:00
Alex Yang
97d8660a54
refactor(electron): fix vitest and add behavior test ( #4655 )
2023-10-18 22:14:30 -05:00
Alex Yang
b14a6bc29e
build: fix generate-assets.ts
2023-10-18 16:33:09 -05:00
Alex Yang
1d29c26284
docs: update README.md
2023-10-18 15:33:28 -05:00
Joooye_34
bed9310519
refactor(infra): directory structure ( #4615 )
2023-10-18 15:30:08 +00:00
Flrande
814d552be8
feat: bump blocksuite and fix bug in migration ( #4653 )
...
Co-authored-by: JimmFly <yangjinfei001@gmail.com >
2023-10-18 14:45:07 +00:00
DarkSky
63ca9671be
feat: add captcha support for sign in/up ( #4582 )
2023-10-18 08:06:07 +00:00
Alex Yang
524e48c8e6
refactor(electron): typescript check on build scripts ( #4650 )
2023-10-18 06:13:47 +00:00
Peng Xiao
9b3e6bf1f5
fix(docs): update docs
2023-10-18 14:00:44 +08:00
Peng Xiao
4135cfd243
fix(docs): remove secret in readme
2023-10-18 13:45:41 +08:00
Alex Yang
be6bcfdb9a
chore: fix version
2023-10-17 20:11:09 -05:00
Alex Yang
bb046a12dc
refactor(native): remove unused code ( #4651 )
2023-10-17 18:19:06 -05:00
Alex Yang
a430266389
refactor: use jotai-effect ( #4641 )
2023-10-17 16:09:37 -05:00
Peng Xiao
62d2b09e3c
fix(core): remove redundant providers ( #4648 )
2023-10-17 20:24:41 +00:00
LongYinan
e831f612e8
fix(electron): release desktop app workflow ( #4594 )
2023-10-17 06:15:55 +00:00
liuyi
01987990ee
fix: make server guid consistent ( #4341 )
2023-10-17 02:34:13 +00:00
Alex Yang
b3dc4dce9c
test: await setTimeout ( #4643 )
2023-10-16 21:14:45 -05:00
Peng Xiao
5e9eeaddbd
build(electron): allow customizing channel type for internal build ( #4511 )
2023-10-17 01:15:19 +00:00
Alex Yang
a0095496d7
chore: release y-provider package ( #4642 )
2023-10-16 19:47:05 -05:00
Alex Yang
77efcad89d
v0.10.0-canary.1
2023-10-16 16:30:17 -05:00
Alex Yang
1d06114f00
build(y-indexeddb): fix output package.json ( #4640 )
2023-10-16 16:25:09 -05:00
dependabot[bot]
579fa1ae4c
chore: bump @faker-js/faker from 8.1.0 to 8.2.0 ( #4631 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-16 19:23:30 +00:00
Peng Xiao
fea6b81a53
fix(electron): app image icon ( #4442 )
2023-10-16 15:54:28 +00:00
Alex Yang
7911d67439
chore: bump version ( #4604 )
2023-10-16 12:47:06 +00:00
JimmFly
efca651429
feat(core): add history shortcut ( #4595 )
2023-10-16 12:27:06 +00:00
JimmFly
07b5d18441
feat(core): add sign out confirm modal ( #4592 )
2023-10-16 08:44:09 +00:00
electron97
c1d386d932
fix: disabled form item in the settings can still be operated via keyboard ( #4605 )
2023-10-16 05:14:11 +00:00
Alex Yang
710a2f2c97
chore: bump version
2023-10-13 15:40:07 -05:00
JimmFly
2e1e486bc6
chore: bump playwright version ( #4602 )
2023-10-13 14:37:18 -05:00
Alex Yang
227017625d
test(core): fix flaky ( #4597 )
2023-10-13 13:46:32 -05:00
Joooye_34
6ea10860b4
refactor(infra): record legacy data to improve testing stability ( #4590 )
2023-10-13 03:03:42 +00:00
LongYinan
286347420d
0.10.0-canary.0
2023-10-12 15:21:07 +08:00
JimmFly
daa976ca62
fix(component): adjust dialog and input style ( #4566 )
2023-10-12 05:49:39 +00:00
Alex Yang
d05897b724
chore: prohibit unnecessary await ( #4586 )
2023-10-12 05:04:58 +00:00
JimmFly
5ebd82dc04
feat(core): adjust share menu style ( #4584 )
2023-10-12 03:26:13 +00:00
Alex Yang
ae4322b75f
chore: bump version ( #4587 )
2023-10-12 02:46:52 +00:00
Alex Yang
a0e6ff9bd1
test: fix migration ( #4588 )
2023-10-11 19:30:37 -05:00
Alex Yang
491cd75fe0
fix(infra): create template workspace with isolated nanoid ( #4569 )
2023-10-11 13:48:30 -05:00
LongYinan
5be5863693
chore: upgrade yarn@3.6.4 ( #4585 )
2023-10-11 17:23:22 +00:00
LongYinan
23abb97ccb
fix: dependabot security issues ( #4579 )
2023-10-11 07:36:45 +00:00
dependabot[bot]
b09d5f3e18
chore: bump @types/eslint from 8.44.2 to 8.44.3 ( #4551 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-11 07:35:41 +00:00
Alex Yang
a731499024
chore: remove unused file ( #4576 )
2023-10-11 06:05:21 +00:00
Alex Yang
8f5ee9234c
test: remove deprecated api usage ( #4577 )
2023-10-11 06:05:06 +00:00
JimmFly
1f6a105e5c
feat(core): add setting commands ( #4568 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-10-11 03:31:04 +00:00
LongYinan
b1eb926b7b
style: enable no-extraneous-dependencies lint rule ( #4575 )
2023-10-10 17:51:47 +00:00
Alex Yang
c8d1de3a59
chore: bump version ( #4571 )
2023-10-10 17:43:41 +00:00
dependabot[bot]
aa7e0dd85b
chore: bump @vitest/ui from 0.34.5 to 0.34.6 ( #4553 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 03:47:44 +00:00
liuyi
0092a19812
refactor(server): deprecate unstable redis manager ( #4567 )
2023-10-10 03:23:12 +00:00
dependabot[bot]
4a6cfedc4a
chore: bump react-i18next from 13.2.1 to 13.2.2 ( #4562 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 03:11:07 +00:00
dependabot[bot]
8c97fd1d28
chore: bump sinon from 16.0.0 to 16.1.0 ( #4563 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 03:10:21 +00:00
Peng Xiao
d9fe3e73d5
fix: list page storybook not rendering issue ( #4560 )
2023-10-09 07:54:05 +00:00
dependabot[bot]
59a4b3bc31
chore: bump electron from 26.2.2 to 26.3.0 ( #4564 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-09 07:14:50 +00:00
Zero King
0161c98d65
chore: reword template galleries introduction ( #4548 )
2023-10-06 16:11:08 +08:00
dependabot[bot]
d3ffa2c5f2
chore: bump marked from 7.0.5 to 9.0.3 ( #4554 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-03 15:28:38 +00:00
dependabot[bot]
0a6859a1d7
chore: bump esbuild from 0.19.3 to 0.19.4 ( #4550 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-03 15:28:10 +00:00
JimmFly
69db99636b
feat(core): add editor commanads ( #4514 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-10-02 03:22:12 +00:00
Alex Yang
aab1a1e50a
fix(electron): output check ( #4547 )
2023-09-30 02:02:17 -05:00
Alex Yang
19646a97af
fix: twitter preview ( #4545 )
2023-09-30 01:19:54 -05:00
Qinghao Huang
f59a35d8d2
fix: spacing issue in getting-started template ( #4540 )
2023-09-30 01:02:43 -05:00
Alex Yang
c911806062
refactor: remove bookmark plugin ( #4544 )
2023-09-30 00:48:33 -05:00
Qinghao Huang
b440c3a820
docs: update CLA.md ( #4541 )
2023-09-30 00:26:50 +00:00
Alex Yang
98cabc44e4
ci: remove unstable nx.yml ( #4543 )
2023-09-29 18:57:31 -05:00
LongYinan
dd94ea5b45
ci: speedup ci by reduce installation packages in certain job ( #4457 )
2023-09-29 03:02:26 +00:00
Joooye_34
b012e615ba
fix(component): content should subtract height of the header ( #4507 )
2023-09-28 07:04:12 +00:00
Alex Yang
603f82ffc2
refactor: using unified nanoid ( #4519 )
2023-09-28 02:53:04 +00:00
Alex Yang
56f75160f3
refactor: remove unused packages ( #4532 )
2023-09-28 01:33:42 +00:00
dependabot[bot]
a860cf8e43
chore: bump electron from 26.1.0 to 26.2.1 ( #4527 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-27 10:40:30 +00:00
liuyi
504dda2092
fix(core): setting ui regression ( #4525 )
2023-09-27 09:56:01 +00:00
JimmFly
1df8b6edfb
feat(component): add private copy link button ( #4508 )
2023-09-27 04:54:02 +00:00
Alex Yang
ddfa5d394d
chore: bump version ( #4518 )
2023-09-27 02:02:54 +00:00
Alex Yang
a69820e4ca
fix: type in pluginImportsFunctionMap ( #4517 )
2023-09-27 01:53:01 +00:00
Peng Xiao
369db3fea5
fix(component): cmdk flaky ( #4512 )
2023-09-27 01:37:00 +00:00
liuyi
4a03fa65d1
fix(server): wrong member count query ( #4506 )
2023-09-26 15:36:08 +00:00
Alex Yang
a633fb6dea
fix: current page atom ( #4515 )
2023-09-26 14:53:01 +00:00
JimmFly
1b6cd70247
chore(core): temporarily remove set-syncing-mode ( #4489 )
2023-09-26 14:11:04 +00:00
Peng Xiao
29fa237dfb
fix: storybook previews ( #4504 )
2023-09-26 05:51:39 +00:00
Alex Yang
61044d91a8
fix(core): page update date ( #4502 )
2023-09-26 04:09:52 +00:00
Peng Xiao
eb728f7ef2
fix: give content match a lower score ( #4499 )
2023-09-26 03:15:40 +00:00
JimmFly
1bdc402b7b
fix: adjust 404 page style ( #4491 )
2023-09-26 02:51:58 +00:00
Alex Yang
127a84b4e1
refactor(plugin-cli): use @plugxjs/vite-plugin ( #4501 )
2023-09-26 02:49:23 +00:00
JimmFly
2e1acec3c0
fix: unexpected pop ups ( #4468 )
2023-09-26 02:41:45 +00:00
dependabot[bot]
672a01b385
chore: bump sinon from 15.2.0 to 16.0.0 ( #4480 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-25 20:17:25 +00:00
Joooye_34
ad63c5a525
fix(component): background animation is different ( #4495 )
2023-09-25 16:50:39 +00:00
Alex Yang
3a79346ce0
test: workspace provider ( #4497 )
2023-09-25 16:49:23 +00:00
dependabot[bot]
bf729df7fe
chore: bump vite-tsconfig-paths from 4.2.0 to 4.2.1 ( #4481 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-25 16:05:09 +00:00
dependabot[bot]
b785840d91
chore: bump marked-gfm-heading-id from 3.0.6 to 3.1.0 ( #4479 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-25 16:04:47 +00:00
Peng Xiao
e8410b948d
chore(component): bump themes ( #4484 )
2023-09-25 12:03:28 +00:00
Peng Xiao
3f09ba92bc
fix: cmdk scrollbar gutter ( #4488 )
2023-09-25 12:03:02 +00:00
JimmFly
35dc6d6687
fix: unexpected hover behavior of collection sidebar ( #4490 )
2023-09-25 10:22:59 +00:00
JimmFly
5b4ce75e13
feat: add commands ( #4477 )
2023-09-25 10:10:53 +00:00
Peng Xiao
dc6b66c32f
fix: register command re-rendering ( #4476 )
2023-09-25 02:40:53 +00:00
LongYinan
5f7f5b74ca
fix(core): error state for non early access user while signing in with email ( #4467 )
2023-09-23 00:00:09 -07:00
LongYinan
7b5157aa89
fix(server): missing dependency in sync app ( #4465 )
2023-09-22 21:32:45 +00:00
Alex Yang
bd0ed7f474
test: fix flaky ( #4463 )
2023-09-22 20:18:41 +00:00
Alex Yang
2da6702991
refactor(infra): simplify currentWorkspaceAtom ( #4462 )
2023-09-22 20:07:26 +00:00
Alex Yang
56d8fa5d29
docs: upload LICENSE.md
2023-09-22 14:38:19 -05:00
Alex Yang
4e5e48ce9f
docs: update README.md
...
There are no core members actually, people is just a paid guy.
2023-09-22 14:31:15 -05:00
Peng Xiao
e0063ebc9b
feat: new CMD-K ( #4408 )
2023-09-22 14:31:26 +00:00
Peng Xiao
27e4599c94
chore: bump components version ( #4454 )
2023-09-22 08:56:10 +00:00
JimmFly
edd7d00104
refactor: workspace list ( #4432 )
2023-09-22 15:02:31 +08:00
Alex Yang
092e2e0a3d
fix(electron): missing video ( #4451 )
2023-09-22 05:56:43 +00:00
LongYinan
a6d19abc73
fix(core): bump latest blocksuite fixes ( #4450 )
2023-09-22 00:00:37 +00:00
Om Raut
cf7a55b3e8
fix: some english words when switched to chinese. ( #4448 )
2023-09-21 17:45:47 +00:00
Alex Yang
d09f6fb7cc
refactor: replace with data source ( #4447 )
2023-09-21 17:31:17 +00:00
Alex Yang
98f6b3e685
test: workspace passive provider ( #4446 )
2023-09-21 15:50:14 +00:00
Hongtao Lye
d5f4fbcdb5
fix: providers get disconnected after opening the setting and close it ( #4429 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-21 09:22:23 -05:00
DarkSky
1ddae40fb2
feat: add auth support for websocket ( #4445 )
2023-09-21 13:05:26 +00:00
Peng Xiao
872dc3521b
fix: allow file protocol streaming ( #4441 )
2023-09-21 19:10:03 +08:00
Alex Yang
2521f2ed12
v0.9.0-canary.13
2023-09-21 01:02:19 -05:00
Alex Yang
dc95b1ded5
chore: bump version ( #4434 )
2023-09-21 01:01:46 -05:00
dependabot[bot]
f4e49bf0ff
chore: bump vitest-mock-extended from 1.2.0 to 1.2.1 ( #4397 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-20 18:52:12 +00:00
Alex Yang
e55fc3b74d
docs: update LICENSE
2023-09-20 13:36:04 -05:00
Joooye_34
73f83cc97e
fix(core): editor popover covered header popover ( #4342 )
2023-09-20 14:07:15 +00:00
Peng Xiao
6e79858f41
fix: add prompt select_account for google login ( #4415 )
2023-09-20 03:22:43 +00:00
Joooye_34
e2764179bc
ci(storybook): fix import page failed problem ( #4424 )
2023-09-20 01:59:03 +00:00
Alex Yang
9b449e9a28
chore: bump version ( #4421 )
2023-09-19 15:16:05 -05:00
dependabot[bot]
9ed32e6bec
chore: bump @types/cookie-parser from 1.4.3 to 1.4.4 ( #4398 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-19 17:56:15 +00:00
JimmFly
38417878fc
chore: add back&forward for web ( #4403 )
2023-09-19 17:49:39 +00:00
Joooye_34
f395a955a2
ci(storybook): add production file of deps to be inputs of storybook ( #4414 )
2023-09-18 23:53:12 -05:00
Alex Yang
9aafaf865e
test(electron): fix cloud test ( #4411 )
2023-09-19 02:08:35 +00:00
dependabot[bot]
63bd1fbf02
chore: bump ky from 0.33.3 to 1.0.1 ( #4399 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-18 19:20:13 +00:00
X1a0t
feb3e64839
feat: apply higher priority for doc request ( #4401 )
2023-09-18 19:19:56 +00:00
DarkSky
65bb30558e
fix: read permission for subpage ( #4405 )
2023-09-18 16:13:36 +08:00
Alex Yang
cdad7edf15
test(electron): add cloud test ( #4184 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-09-17 20:26:06 +00:00
Alex Yang
40e094dcdd
test: fix e2e ( #4390 )
2023-09-17 03:50:26 +00:00
Alex Yang
bebe69d483
chore: fix tsconfig ( #4389 )
2023-09-16 14:40:33 -07:00
Qi
26877ffd52
feat: modify 404 page ( #4383 )
2023-09-15 17:57:08 -07:00
LongYinan
70e731e066
test(server): move env variables into playwright config ( #4384 )
2023-09-15 17:56:26 -07:00
Qi
acecb4bf69
fix: error style of setting sidebar ( #4368 )
2023-09-15 17:56:08 -07:00
JimmFly
d3635208f6
refactor: delete page style ( #4347 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-15 17:55:56 -07:00
Peng Xiao
b9656b1e22
fix: orderby in members list ( #4375 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2023-09-15 19:24:00 +00:00
Qi
4577fb7e1a
fix: remove useRef in menu & tooltip ( #4369 )
2023-09-15 12:29:55 -07:00
Alex Yang
c41c3c81c8
fix(core): local workspace collections ( #4378 )
2023-09-15 02:19:22 -07:00
Peng Xiao
eea38a08c5
fix: add platform selector to storybook ( #4380 )
2023-09-15 08:59:29 +00:00
Chi Zhang
f730f2b242
docs: update licenses ( #4180 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-15 07:50:00 +00:00
LongYinan
1aec1ce7d0
test(server): move tests out of src folder ( #4366 )
2023-09-15 07:34:14 +00:00
Peng Xiao
b5e8fecfd0
fix: update windows install gif ( #4379 )
2023-09-15 15:07:58 +08:00
X1a0t
7d1b66c13f
fix: add missing static file list ( #4374 )
2023-09-14 23:44:10 -07:00
JimmFly
4ad0e2ffd6
chore: adjust workspace card style ( #4371 )
2023-09-14 23:19:38 -07:00
Qi
d5c41d29af
fix: pagation items are not easy to trigger ( #4372 )
2023-09-14 23:15:21 -07:00
LongYinan
a9b6529bcb
fix(server): workspace memebers sort ( #4370 )
2023-09-14 23:08:09 -07:00
Qi
d550804cf5
fix: error style of quick search modal ( #4359 )
2023-09-15 02:40:22 +00:00
LongYinan
d68545cb29
chore(i18n): fix sync languages script ( #4367 )
2023-09-14 17:37:32 -07:00
Alex Yang
d01203daad
chore: bump version ( #4352 )
2023-09-14 14:42:06 -07:00
3720
5418d3048e
feat: hide page info in public pages ( #4365 )
2023-09-14 18:43:55 +00:00
Qi
465098cc9a
feat: support remove user & workspace avatar ( #4302 )
2023-09-14 14:35:05 +00:00
X1a0t
e1a330a0a6
fix: use cdn api when querying static CDN files ( #4361 )
...
Co-authored-by: DarkSky <25152247+darkskygit@users.noreply.github.com >
2023-09-14 16:56:55 +08:00
X1a0t
f79cd76cec
fix: should return null when getting blob fails ( #4360 )
2023-09-14 16:55:57 +08:00
LongYinan
aa3b97b056
style: imporve tsconfig ( #4358 )
2023-09-14 01:47:15 -07:00
Alex Yang
8fb0620bc8
chore: bump version ( #4354 )
2023-09-14 06:33:47 +00:00
LongYinan
f0de34a60b
fix(server): everyone can share page in workspace ( #4357 )
2023-09-14 06:26:41 +00:00
Qi
1016a47b51
fix: error invite email title ( #4355 )
2023-09-13 23:20:51 -07:00
Peng Xiao
1d77b2c9da
docs: add readme for developing @affine/server ( #4351 )
2023-09-14 02:58:13 +00:00
fourdim
10a3a05e70
fix: incomplete URL substring sanitization ( #4309 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-09-13 19:38:48 -07:00
Peng Xiao
b023c79d5c
fix: test hang ( #4349 )
2023-09-14 02:13:36 +00:00
Alex Yang
09510479e2
v0.9.0-canary.12
2023-09-13 17:10:43 -07:00
Qi
0be142e4e2
feat: add verify process in change email progress ( #4306 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-09-13 16:54:02 +00:00
Qi
0b1ba6bf43
feat: replace modal with new design ( #4324 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-09-13 16:05:19 +08:00
Alex Yang
49e0172316
chore(server): ignore build test files ( #4337 )
2023-09-13 06:41:17 +00:00
Alex Yang
74faee887e
refactor: move mailer test ( #4328 )
2023-09-13 05:11:19 +00:00
JimmFly
bdc2695caf
fix: wrong share status display ( #4336 )
2023-09-13 05:11:05 +00:00
Qi
32ee946670
feat: add tooltip in user & workspace setting ( #4260 )
2023-09-13 04:37:25 +00:00
Alex Yang
5e0fd0b839
chore: add circular check ( #4334 )
2023-09-13 04:14:38 +00:00
Peng Xiao
ab7be0b940
fix: remove open app timeout ( #4332 )
2023-09-13 05:08:44 +00:00
Alex Yang
37e5c464d6
refactor(core): move notification center top level ( #4331 )
2023-09-13 04:01:31 +00:00
Joooye_34
f445604e5e
fix(core): back home botton has no reaction ( #4318 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-13 03:19:00 +00:00
Peng Xiao
923148d841
fix: force syncing DB when export db ( #4312 )
2023-09-13 03:13:38 +00:00
Peng Xiao
9ec2b9cf51
fix: signout account when logging through oauth signin via desktop ( #4321 )
2023-09-13 02:10:03 +00:00
JimmFly
7d6c150ecd
fix: unexpected react warning ( #4316 )
2023-09-12 22:32:45 +00:00
JimmFly
a94512a3fb
feat: add animation for add favorites ( #4317 )
2023-09-12 16:06:03 +00:00
Peng Xiao
9e5213f074
fix: potential issue that may push whole window up a bit ( #4311 )
2023-09-12 06:45:41 +00:00
Alex Yang
944a128b53
chore: bump version ( #4310 )
2023-09-12 05:44:00 +00:00
Peng Xiao
fc76163dd1
fix: get auth token for development ( #4295 )
2023-09-12 13:31:58 +08:00
Qi
98429bf89e
feat: support pagination for member list ( #4231 )
2023-09-12 03:37:59 +00:00
dependabot[bot]
9fe9efe465
chore: bump nestjs-throttler-storage-redis from 0.3.3 to 0.4.0 ( #4299 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-12 03:36:21 +00:00
Peng Xiao
ea2196b039
fix: circular dependencies ( #4307 )
2023-09-11 17:00:48 +00:00
Peng Xiao
892cae5599
fix: SHOULD_REPORT_TRACE condition ( #4273 )
...
Co-authored-by: X1a0t <405028157@qq.com >
2023-09-11 09:47:02 +00:00
X1a0t
a25a31c105
test: always exec afterEach in ava test ( #4303 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-09-11 09:30:39 +00:00
JimmFly
49c8928a09
chore: adjust preloading page ( #4225 )
2023-09-11 06:42:45 +00:00
JimmFly
b7b14c2241
fix: menu style ( #4287 )
2023-09-11 06:41:36 +00:00
Peng Xiao
46fd732ee6
fix: cookie name ( #4293 )
2023-09-08 23:42:09 -07:00
Alex Yang
2db0cec443
chore: bump version ( #4294 )
2023-09-09 04:28:17 +00:00
Alex Yang
162016884c
refactor: remove unused package ( #4291 )
2023-09-09 00:00:26 +00:00
Peng Xiao
e00f40537b
fix: allow login with credentials on production ( #4288 )
2023-09-08 23:02:01 +00:00
Whitewater
56e653140b
fix: sort plugin list in test ( #4289 )
2023-09-08 22:36:48 +00:00
Alex Yang
5f0605a5d9
feat: page view storage with cloud support ( #4238 )
2023-09-08 22:02:22 +00:00
LongYinan
58a935b31d
test(server): make testing more isolated ( #4290 )
2023-09-08 13:02:27 -07:00
DarkSky
a97fd486c3
feat: keep the multiline log in single log ( #4281 )
2023-09-08 17:33:46 +08:00
X1a0t
157ce7ac69
fix: edge case when upgrading page ( #4283 )
2023-09-08 07:43:18 +00:00
Qi
f9eea85577
fix: can not enable workspace if not sign in ( #4265 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-08 07:41:07 +00:00
Qi
81a3bcee4f
fix: modify back text ( #4257 )
2023-09-08 07:37:01 +00:00
LongYinan
05c27ed164
fix(core): temporary remove blockVersions assertion ( #4285 )
2023-09-08 00:45:07 -07:00
DarkSky
b261d97ed2
fix: revoke permission if failed to send email ( #4279 )
2023-09-07 23:21:38 -07:00
LongYinan
538c150950
fix(electron): api url mapping in electron ( #4276 )
2023-09-07 22:36:56 -07:00
LongYinan
aa025b0d46
fix(server): storage usage should be float rather than int ( #4275 )
2023-09-08 05:15:33 +00:00
Alex Yang
0bc3d9ebf5
build: fix internal release
2023-09-07 19:44:06 -07:00
Alex Yang
0ee0790295
ci: workflow dispatch
2023-09-07 16:52:10 -07:00
Alex Yang
211e960d58
chore: bump version ( #4272 )
2023-09-07 23:21:47 +00:00
Alex Yang
544dcde4c5
v0.9.0-canary.11
2023-09-07 15:22:44 -07:00
DarkSky
f4340da478
refactor(server): rate limit and permission ( #4198 )
...
Co-authored-by: LongYinan <lynweklm@gmail.com >
2023-09-07 14:32:41 -07:00
Alex Yang
4c4bb65be8
fix(server): flaky test ( #4271 )
2023-09-07 20:55:04 +00:00
Peng Xiao
bf3a3379ae
fix: disable set-db-location step ( #4263 )
2023-09-07 17:41:27 +00:00
Peng Xiao
d54f027f50
fix: sigin in different window may not refresh workspace list ( #4270 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-07 17:30:21 +00:00
Qi
719917d445
fix: incorrect invitation email style ( #4269 )
2023-09-07 17:17:22 +00:00
Joooye_34
96545c97d0
feat(core): use double click to activate title renaming ( #4214 )
2023-09-07 17:12:07 +00:00
Peng Xiao
185546b8ea
fix: logout 404 ( #4253 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-07 16:14:02 +00:00
Qi
fcf041024f
fix: incorrect toast after signed in ( #4268 )
2023-09-07 15:45:31 +00:00
Garfield Lee
4dbc5412a5
feat: add new locale key for not found page back home button ( #4266 )
2023-09-07 15:45:22 +00:00
Qi
4fe90ea3b3
fix: wrong content in invitation email ( #4258 )
2023-09-07 15:36:53 +00:00
Peng Xiao
0c4277e5b9
fix: better transition ( #4267 )
2023-09-07 15:20:48 +00:00
Peng Xiao
2813ad36b8
fix: disable simutanous updater download ( #4254 )
2023-09-07 06:54:51 +00:00
Alex Yang
0de6b748bb
chore(i18n): fix nx config ( #4249 )
2023-09-07 06:54:28 +00:00
Alex Yang
a766279867
test: enhance 0.8.3 migration test ( #4251 )
2023-09-07 06:03:31 +00:00
Qi
498683ff4c
feat: send email to owner after member accepted invitation / leave workspace ( #4152 )
...
Co-authored-by: DarkSky <darksky2048@gmail.com >
2023-09-07 05:08:23 +00:00
Peng Xiao
1301605db5
fix: workspace list dnd issues ( #4219 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-07 05:06:03 +00:00
JimmFly
0992841673
style: add hover style to the setting button in workspace card ( #4193 )
2023-09-07 05:05:38 +00:00
Qi
f789e366f2
fix: wrong text in change password page ( #4244 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-07 05:02:33 +00:00
Alex Yang
57c5f6cd2c
fix(core): display user name dynamically ( #4248 )
2023-09-07 05:02:21 +00:00
Alex Yang
4d96d2dd02
feat(core): add share page error boundary ( #4245 )
...
Co-authored-by: JimmFly <yangjinfei001@gmail.com >
2023-09-07 04:42:47 +00:00
Qi
10f2e9300a
fix: wrong copywriting in change email modal ( #4243 )
2023-09-07 04:28:49 +00:00
Qi
798238df4d
fix: can not close menu in all page ( #4232 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-07 04:26:16 +00:00
Alex Yang
1d1fb6ca31
feat(core): await sync doc ( #4247 )
2023-09-07 03:54:39 +00:00
Garfield Lee
8656530049
fix: correct sign out display name ( #4211 )
2023-09-07 03:46:58 +00:00
Alex Yang
fc7919e172
v0.9.0-canary.10
2023-09-06 16:11:57 -07:00
Alex Yang
075986b2e3
fix(core): upload binary after migration ( #4241 )
2023-09-06 22:38:11 +00:00
Alex Yang
685db33b25
fix(core): data migration incorrect in cloud
2023-09-06 14:26:12 -07:00
Alex Yang
90013780e0
fix: display user on selection
2023-09-06 11:48:21 -07:00
LongYinan
97c201836f
chore(server): redirect /api/auth/signin ( #4237 )
2023-09-06 11:11:57 -07:00
Qi
dd75062da7
feat: modify workspace setting description ( #4234 )
2023-09-06 10:16:24 -07:00
LongYinan
b8e3e4994e
fix(core): location.state maybe null ( #4236 )
2023-09-06 10:15:46 -07:00
LongYinan
264d33823b
chore(server): add log to early access redirect ( #4235 )
2023-09-06 10:11:31 -07:00
X1a0t
22d3411e6e
fix: logger filter should pass graphql context ( #4209 )
2023-09-06 08:16:38 -07:00
Alex Yang
1b6a78cd00
feat!: unified migration logic in server electron, and browser ( #4079 )
...
Co-authored-by: Mirone <Saul-Mirone@outlook.com >
2023-09-06 07:44:53 +00:00
Garfield Lee
925c18300f
refactor: change locale key ( #3838 )
2023-09-06 07:20:44 +00:00
Alex Yang
b3d902e33f
fix(core): sign out jump to 404 ( #4204 )
2023-09-06 06:58:05 +00:00
Qi
d8c9f10bc1
feat: replace menu with new design ( #4012 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-06 04:36:43 +00:00
X1a0t
ef3d3a34e2
feat: auth metric and trace ( #4063 )
2023-09-05 21:20:06 -07:00
Om Raut
d29514c995
fix: notification text cannot be selected when there is a modal ( #4157 )
2023-09-05 22:00:34 +00:00
Alex Yang
f5c2aaf28a
v0.9.0-canary.9
2023-09-05 14:58:09 -07:00
Alex Yang
d2484d0b8d
fix(core): remove write version ( #4202 )
2023-09-05 19:22:58 +00:00
LongYinan
6af7aefe00
fix(core): location.state maybe null ( #4203 )
2023-09-05 19:21:28 +00:00
Qi
ff808881ee
fix: can not scroll in mermber list ( #4182 )
2023-09-05 18:17:17 +00:00
Peng Xiao
1dc94277c2
fix: use database session cookie for production ( #4200 )
2023-09-05 17:30:50 +00:00
Peng Xiao
8407b2dd7c
fix: force reset callbackurl cookie in electron ( #4199 )
2023-09-05 12:54:17 +00:00
Yifeng Wang
d7838633e6
fix: preloading typo ( #4197 )
2023-09-05 10:18:28 +00:00
Peng Xiao
bf40d41c86
fix: cloud workspace sometimes converted to local workspace ( #4194 )
2023-09-05 09:53:22 +00:00
Peng Xiao
8b4f2a6c50
fix: sidebar ui fix ( #4187 )
2023-09-05 09:48:48 +00:00
LongYinan
dfa5fefa7f
test(server): use mock PrismaService in tests ( #4101 )
2023-09-05 01:01:45 -07:00
LongYinan
3d5e1d2f3d
chore(server): debug blob sizes limit ( #4181 )
2023-09-04 23:16:01 -07:00
Chi Zhang
14ae3cf6d6
docs: update BUG-REPORT.yml ( #4174 )
2023-09-05 02:45:59 +00:00
LongYinan
2da22e2fc2
chore(server): debug blob sizes limit ( #4178 )
2023-09-04 19:44:22 -07:00
LongYinan
ff66e2635a
chore: upgrade yarn to 3.6.3 ( #4173 )
2023-09-05 01:37:38 +00:00
LongYinan
801d769877
fix(server): storage usage calculation issue ( #4170 )
2023-09-05 00:56:47 +00:00
Peng Xiao
d57f995e87
feat: add fav button ( #4159 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-04 17:14:02 +00:00
dependabot[bot]
6609f712e7
chore: bump @toeverything/theme from 0.7.13 to 0.7.15 ( #4146 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-04 17:04:03 +00:00
dependabot[bot]
3907802e09
chore: bump @electron/remote from 2.0.10 to 2.0.11 ( #4147 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-04 17:03:27 +00:00
Peng Xiao
5288645e33
fix: header ui styles ( #4156 )
2023-09-04 10:13:20 +00:00
DarkSky
e72a10153e
feat: enable https in production ( #4154 )
...
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
2023-09-04 17:20:11 +08:00
Peng Xiao
1066a8ca74
fix: style fixes to windows app control buttons ( #4150 )
2023-09-04 09:01:31 +00:00
Peng Xiao
f245b4f5ce
fix: api url for electron ( #4142 )
2023-09-04 07:43:39 +00:00
X1a0t
ed76417ba3
feat: log all exceptions In HTTP context ( #4149 )
2023-09-04 07:42:55 +00:00
DarkSky
80195ca2a0
feat: remove yrs ( #4153 )
2023-09-04 07:31:00 +00:00
X1a0t
5b7d076a90
fix: add keyv types ( #4148 )
2023-09-04 05:24:51 +00:00
3720
e60e2236ea
fix: filter of tags does not work ( #4138 )
2023-09-03 15:50:21 +00:00
DarkSky
2e97079a5e
fix: server deps ( #4140 )
2023-09-03 14:33:56 +00:00
LongYinan
3211451b21
fix(server): missing nanoid dependency ( #4139 )
2023-09-03 14:30:00 +00:00
Alex Yang
d0e8a1f0df
refactor(infra): move initEmptyPage ( #4135 )
2023-09-03 05:19:43 +00:00
TinsFox
c3cca85184
docs(i18n): update i18n usage ( #4129 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-02 18:18:48 +00:00
Alex Yang
a2623e1352
test: email sending e2e ( #4130 )
2023-09-02 18:13:59 +00:00
Alex Yang
3d8a91aab0
docs: update README.md
2023-09-02 01:33:03 -05:00
Alex Yang
9f0e67a673
v0.9.0-canary.8
2023-09-02 01:22:50 -05:00
Qi
138aaed05d
feat: add a reminder for early access in the invitation email ( #4097 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-09-02 06:07:49 +00:00
Qi
3edfc46307
feat: optimize sign in experience ( #4099 )
2023-09-02 06:07:38 +00:00
Alex Yang
be9ae57a8e
test: cover basic collaborative ( #4127 )
2023-09-02 01:06:47 -05:00
Alex Yang
4f97ea8a5d
test: cover share page e2e ( #4126 )
2023-09-02 00:57:04 -05:00
Alex Yang
8825678ca9
test: add name change test ( #4125 )
2023-09-02 00:11:10 -05:00
Alex Yang
70b5a9deeb
test: improve data migration suite ( #4124 )
2023-09-02 03:31:07 +00:00
Alex Yang
eb1a21265f
refactor(server): use ava ( #4120 )
2023-09-01 19:41:29 +00:00
JimmFly
8845bb9b4b
chore: optimized style ( #4098 )
2023-09-01 19:28:16 +00:00
Whitewater
189e91e6ca
fix(core): sort tags by count ( #4122 )
2023-09-01 19:13:33 +00:00
Qi
442d06fc69
fix: error invitation url ( #4110 )
2023-09-01 18:22:26 +00:00
Peng Xiao
c9c76983de
fix: cookie issues in Electron ( #4115 )
2023-09-01 17:34:08 +00:00
DarkSky
3c4f45bcb6
feat: add user info edit verify ( #4117 )
2023-09-01 16:59:33 +00:00
LongYinan
db3a6efaf3
build(core): fix non-canary assets bucket ( #4116 )
2023-09-02 00:32:11 +08:00
DarkSky
7d3b1ad2b9
feat: add user level blob quota ( #4114 )
2023-09-01 12:56:27 +00:00
LongYinan
e76cdf4d71
fix(server): set right AFFINE_SERVER_HOST env variable ( #4108 )
2023-09-01 18:37:48 +08:00
LongYinan
18ac355df3
chore(server): change the log level ( #4106 )
2023-09-01 18:37:31 +08:00
X1a0t
c0bf82d3ff
fix: beta serverUrlPrefix ( #4103 )
2023-09-01 04:27:12 -05:00
Qi
a1f4cbc568
fix: error in @toeverything/components ( #4102 )
2023-09-01 09:00:37 +00:00
Yifeng Wang
10c609348f
fix: preload typo ( #4096 )
2023-09-01 06:59:06 +00:00
Alex Yang
88f94d5b61
test(server): run test in single thread ( #4095 )
2023-09-01 01:25:18 -05:00
Alex Yang
92f0b31196
feat: support force sync by click ( #4089 )
...
Co-authored-by: JimmFly <yangjinfei001@gmail.com >
2023-09-01 01:15:07 -05:00
LongYinan
83e7e9db8d
fix(server): relax the rate limits ( #4092 )
2023-09-01 13:51:37 +08:00
LongYinan
3f21b0b45d
fix(server): redirect logic in earlyAccessPreview ( #4091 )
2023-09-01 13:51:20 +08:00
Peng Xiao
d4a2b3f4d1
fix: not be able to login with Google in desktop ( #4093 )
2023-08-31 23:34:55 -05:00
X1a0t
d4a83c1c6f
feat: exception logger ( #4059 )
2023-09-01 12:05:35 +08:00
Peng Xiao
b0024080bd
fix: add back sourcemaps to electron build ( #4090 )
2023-09-01 03:34:18 +00:00
Alex Yang
c937b88978
test(server): fix flaky ( #4088 )
2023-09-01 01:03:46 +00:00
Ricardo Emanuel
0f2223ddf0
docs: fixed typo in README.md of the root ( #4049 )
2023-08-31 19:08:56 -05:00
Alex Yang
364fc517cc
docs: update BUILDING.md ( #4087 )
2023-08-31 18:50:54 -05:00
Alex Yang
25671e2134
chore: bump version ( #4083 )
2023-08-31 18:50:03 -05:00
Alex Yang
1e30a3c7fe
fix(core): forwardRef in count down render ( #4086 )
2023-08-31 18:37:56 -05:00
Alex Yang
06d5ecd597
docs: update indexeddb document ( #4084 )
2023-08-31 17:16:27 -05:00
KaranPant
b18596fc57
fix: show border around pagetitle when renaming ( #4080 )
2023-08-31 17:06:58 -05:00
Alex Yang
7082937b62
refactor(workspace): sync doc update in background using data source ( #4081 )
2023-08-31 16:20:57 -05:00
Pranay Prajapati
4091ff8e36
fix: corrected the preposition in "Save As New Collection" ( #4070 )
2023-08-31 13:35:10 -05:00
Alex Yang
0fa1bdf7d2
v0.9.0-canary.7
2023-08-31 13:18:25 -05:00
JimmFly
df4d71b0c8
feat: add worksapce type label ( #4045 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-31 13:16:58 -05:00
Priyansh Gupta
18d5a99af5
feat(core): added code to handle keyboard inputs ( #4006 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-31 13:15:55 -05:00
JimmFly
6be176b4e3
fix: the web version should not display client borders ( #4040 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-31 13:15:22 -05:00
Alex Yang
97a0969583
fix(core): skip background syncing in the web ( #4077 )
2023-08-31 12:59:34 -05:00
Peng Xiao
a2e4ef904b
refactor: remove hacky email login ( #4075 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-31 12:49:22 -05:00
Qi
f99a7a5ecd
fix: shortcut key style ( #4072 )
2023-08-31 08:08:10 -05:00
Alex Yang
f21426d23d
fix(core): blockVersions check ( #4073 )
2023-08-31 08:07:21 -05:00
Qi
3f5e649295
fix: sign in issues ( #4047 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-31 08:07:05 -05:00
Peng Xiao
13857d59dc
fix: some style issues to sidebar and switch ( #4046 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-31 20:46:06 +08:00
Qi
260c25acf3
feat: add storage panel in setting ( #4069 )
2023-08-31 07:36:05 -05:00
DarkSky
4ef1425299
feat: rate limiter ( #4011 )
2023-08-31 20:29:25 +08:00
Peng Xiao
8e48255ef8
fix: userinfo title ( #4068 )
2023-08-31 09:46:26 +00:00
liuyi
e10868cd20
fix(server): deal with unexpected updates ( #4064 )
2023-08-31 16:56:33 +08:00
LongYinan
9bffe3cf24
fix(server): do not override auth.privateKey ( #4065 )
2023-08-31 16:44:37 +08:00
DarkSky
0add43f8db
feat: blob size api ( #4060 )
2023-08-31 16:39:19 +08:00
LongYinan
cc00da9325
chore(server): enable earlyAccessPreview for canary ( #4061 )
2023-08-31 14:41:43 +08:00
Alex Yang
49d203ac57
v0.9.0-canary.6
2023-08-31 00:48:00 -05:00
Alex Yang
55b3182799
feat(core): support syncing workspaces and blobs in the background ( #4057 )
2023-08-31 00:40:34 -05:00
Peng Xiao
4e45554585
feat: support google login on desktop ( #4053 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-31 12:51:49 +08:00
X1a0t
ba735d8b57
chore: bump octobase ( #4042 )
2023-08-30 21:06:50 -05:00
Alex Yang
517f4afb31
fix(core): refresh metadata after refresh ( #4054 )
2023-08-30 21:22:34 +00:00
X1a0t
441e706746
fix: flaky unit test should be able to timer ( #4043 )
2023-08-30 13:58:25 -05:00
Alex Yang
7c4e65a5be
ci: use 'pull_request' on publish-storybook.yml ( #4051 )
2023-08-30 11:09:04 -05:00
Alex Yang
e042152681
ci: update chromatic build ( #4050 )
2023-08-30 10:55:28 -05:00
Alex Yang
2e042e03b2
v0.9.0-canary.5
2023-08-30 09:51:35 -05:00
Peng Xiao
d6c0e67bf0
fix: electron white screen ( #4048 )
2023-08-30 09:41:06 -05:00
Alex Yang
e75ff52ec1
v0.9.0-canary.4
2023-08-30 00:13:22 -05:00
Alex Yang
00e7cf9a06
fix(core): incorrect blocksuite data format ( #4039 )
2023-08-30 00:04:16 -05:00
Peng Xiao
82f8ac50de
fix: replace dmg bg ( #4038 )
2023-08-29 23:30:45 -05:00
Alex Yang
880375a6d1
chore: bump version ( #4028 )
2023-08-29 23:30:15 -05:00
Alex Yang
02bd9fc2d1
fix(core): find lost data ( #4035 )
2023-08-29 23:30:03 -05:00
Peng Xiao
cbb5b6e4a5
fix: crash on close ( #4033 )
2023-08-30 03:06:43 +00:00
DarkSky
d3bd369420
chore: add bump octobase script ( #3931 )
2023-08-29 19:37:12 -05:00
Alex Yang
4aabe2ea5e
refactor(core): use element atom ( #4026 )
2023-08-29 18:59:39 -05:00
Alex Yang
591bfc3320
v0.9.0-canary.3
2023-08-29 18:21:49 -05:00
Alex Yang
60bdeebcc6
chore: bump version ( #4025 )
2023-08-29 18:21:18 -05:00
Peng Xiao
800f3c3cb6
feat: add open app route ( #3899 )
2023-08-29 22:40:25 +00:00
Alex Yang
71b195d9a9
feat(server): add compatibility field ( #4022 )
2023-08-29 21:30:59 +00:00
pdx
e3b105f1cd
feat(core): use enter change workspace the name ( #4007 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-29 21:20:30 +00:00
Alex Yang
5c0f73c535
ci: split server test ( #4023 )
2023-08-29 15:57:09 -05:00
Peng Xiao
849e225a2d
fix: disable auto updater on dev ( #4019 )
2023-08-29 14:04:27 -05:00
Alex Yang
02026e0bb6
fix(server): invite user type might be null ( #4020 )
2023-08-29 14:04:12 -05:00
Alex Yang
12aef95ba2
chore: downgrade swr to 2.2.0
2023-08-29 12:07:15 -05:00
Alex Yang
6b206e59a5
v0.9.0-canary.2
2023-08-29 11:53:49 -05:00
Peng Xiao
7b0e5b89ed
fix: electron whitescreen ( #4013 )
2023-08-29 11:51:57 -05:00
Peng Xiao
3ef0db7512
fix: add arch key to setup-node cached files ( #4016 )
2023-08-29 16:36:21 +00:00
Peng Xiao
92f9cb01f3
fix: enable electron sourcemap ( #4014 )
2023-08-29 23:42:50 +08:00
Peng Xiao
4abb407b5c
fix: adjust email template font-family ( #4015 )
2023-08-29 23:27:20 +08:00
LongYinan
54574e5cc3
fix(server): signup/signin logic ( #4008 )
2023-08-29 19:22:56 +08:00
Alex Yang
a046cdafa3
chore: bump version ( #4010 )
2023-08-29 06:21:04 -05:00
Mirone
0d70d3727d
fix: preloading issues caused by reference change in template ( #4009 )
2023-08-29 05:33:08 -05:00
Alex Yang
0ded20fcb7
ci: only deploy in the canary version
2023-08-29 05:27:14 -05:00
Alex Yang
06cec822f0
fix(core): options might undefined ( #3999 )
...
Co-authored-by: zuozijian3720 <zuozijian1994@gmail.com >
2023-08-29 05:19:21 -05:00
Alex Yang
41f2420533
v0.9.0-canary.1
2023-08-29 05:18:22 -05:00
Alex Yang
2f6c4e3696
feat!: affine cloud support ( #3813 )
...
Co-authored-by: Hongtao Lye <codert.sn@gmail.com >
Co-authored-by: liuyi <forehalo@gmail.com >
Co-authored-by: LongYinan <lynweklm@gmail.com >
Co-authored-by: X1a0t <405028157@qq.com >
Co-authored-by: JimmFly <yangjinfei001@gmail.com >
Co-authored-by: Peng Xiao <pengxiao@outlook.com >
Co-authored-by: xiaodong zuo <53252747+zuoxiaodong0815@users.noreply.github.com >
Co-authored-by: DarkSky <25152247+darkskygit@users.noreply.github.com >
Co-authored-by: Qi <474021214@qq.com >
Co-authored-by: danielchim <kahungchim@gmail.com >
2023-08-29 05:07:05 -05:00
Alex Yang
d0145c6f38
chore: run npx nolyfill ( #4005 )
2023-08-29 04:15:46 -05:00
Alex Yang
d9cb45f466
fix(electron): upgrade db file ( #3984 )
2023-08-28 20:38:40 +00:00
Peng Xiao
d62935935f
fix: left sidebar style fixes ( #3950 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-28 16:04:22 +00:00
Camol
e92d27549a
fix: position of sidebar switch button ( #3995 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-28 15:58:59 +00:00
dependabot[bot]
b9c3a11a95
chore: bump eslint-plugin-sonarjs from 0.20.0 to 0.21.0 ( #3977 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-28 01:49:11 -05:00
dependabot[bot]
33dec0f486
chore: bump eslint from 8.47.0 to 8.48.0 ( #3975 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-28 01:48:08 -05:00
dependabot[bot]
26df16ed13
chore: bump rollup-plugin-swc3 from 0.9.1 to 0.10.1 ( #3979 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-28 01:47:55 -05:00
Alex Yang
171b2c47dd
chore: bump version ( #3986 )
2023-08-28 01:47:04 -05:00
Qi
1e87707b2e
feat: replace tooltip with new design ( #3969 )
2023-08-28 01:15:12 -05:00
Alex Yang
b9c4b88a6b
refactor: migration logic ( #3973 )
2023-08-28 00:31:56 -05:00
Peng Xiao
c2d902bd1e
fix: reduce the number of files being packed ( #3974 )
2023-08-28 04:08:46 +00:00
Nishant Choudhary
0ff4d9d0b1
fix: swap navigation bar items ( #3967 )
2023-08-27 15:37:22 +00:00
Sarvesh Kumar.A
118165bf72
fix(electron): set client border style to false by default on windows ( #3960 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-26 15:26:48 -05:00
Alex Yang
54607aed6f
docs: update README.md
2023-08-26 13:23:06 -05:00
Peng Xiao
36bb3957ab
feat: custom updater provider ( #3959 )
2023-08-25 17:08:28 -05:00
Alex Yang
18a9d67e37
v0.9.0-canary.0
2023-08-25 13:15:50 -05:00
Alex Yang
7906b7bc5f
chore: bump version ( #3955 )
2023-08-25 11:52:33 -05:00
Alex Yang
98b8fbc8cf
chore: bump version ( #3947 )
2023-08-24 21:45:16 -05:00
Qi
61ac597cba
feat: icon not align center in filter button ( #3938 )
2023-08-24 13:01:11 -05:00
Alex Yang
a79284b65e
v0.8.0-canary.34
2023-08-24 11:30:29 -05:00
JimmFly
40fbf1bd41
chore: update preload page ( #3943 )
2023-08-24 11:21:17 -05:00
JimmFly
59e54917af
chore: bump version ( #3942 )
2023-08-24 10:05:09 +00:00
Peng Xiao
765e160ba2
fix: add missing matrix value ( #3937 )
2023-08-24 07:26:49 +00:00
Peng Xiao
efb6de3435
fix: incorrect workflow file ( #3935 )
2023-08-24 06:52:13 +00:00
Peng Xiao
fb6eada410
fix: disable windows signing for nightly ( #3933 )
2023-08-24 05:11:20 +00:00
Peng Xiao
4247a5d0d9
fix: remove use of glob ( #3932 )
2023-08-24 04:34:36 +00:00
Alex Yang
e1816c165b
v0.8.0-canary.33
2023-08-23 19:09:40 -05:00
Alex Yang
873d40d1c3
fix: add missing package ( #3927 )
2023-08-23 19:08:53 -05:00
Alex Yang
52f736fb77
v0.8.0-canary.32
2023-08-23 16:53:32 -05:00
Alex Yang
dd60106b5d
Revert "ci: retry install three times ( #3924 )"
...
This reverts commit 4a003878e2 .
2023-08-23 16:52:34 -05:00
Alex Yang
340e10f765
v0.8.0-canary.31
2023-08-23 15:01:51 -05:00
Alex Yang
301f3219e5
refactor: add content to be selectable and remove swipe gesture ( #3923 )
...
Co-authored-by: JimmFly <yangjinfei001@gmail.com >
2023-08-23 13:22:15 -05:00
Alex Yang
4a003878e2
ci: retry install three times ( #3924 )
2023-08-23 13:22:04 -05:00
Alex Yang
834771878e
fix(workspace): remove item not in the adapter ( #3922 )
2023-08-23 17:51:17 +00:00
Alex Yang
ede61387c6
chore: bump version ( #3919 )
2023-08-23 10:53:44 -05:00
Garfield Lee
4c5b4f03e8
chore: modify code style ( #3914 )
2023-08-23 14:45:57 +00:00
Alex Yang
e397f18316
chore(storybook): remove cache ( #3917 )
2023-08-23 09:50:25 -05:00
JimmFly
a600626b83
chore: update preloading page ( #3909 )
2023-08-23 09:22:22 -05:00
Peng Xiao
213f42a8b6
fix: support windows auto update ( #3911 )
2023-08-23 09:14:37 -05:00
Hongtao Lye
9ea66a1658
fix: debug local blocksuite ( #3915 )
2023-08-23 09:08:37 -05:00
Alex Yang
1f03ece1a4
fix(storybook): lazy load app ( #3905 )
2023-08-22 21:56:47 -05:00
Alex Yang
2b71c69732
v0.8.0-canary.30
2023-08-22 19:41:29 -05:00
Alex Yang
3b6e145b23
fix(core): search feature not working ( #3902 )
2023-08-22 19:38:02 -05:00
Alex Yang
c7a4805e5c
fix(y-provider): syncing status ( #3903 )
2023-08-22 19:18:35 -05:00
fourdim
bf062fb6d4
fix: make media print overflow visible ( #3893 )
2023-08-22 18:49:05 -05:00
Alex Yang
4da4583668
chore: bump version ( #3901 )
2023-08-22 15:55:01 -05:00
Alex Yang
9efec5b233
v0.8.0-canary.29
2023-08-22 11:00:12 -05:00
Peng Xiao
7d6e91f56e
build: sign windows app ( #3809 )
2023-08-22 10:16:26 -05:00
Alex Yang
507b5dcfb3
test: loose cmdk result check ( #3888 )
2023-08-21 23:17:45 -05:00
Alex Yang
8ec005f7de
chore: bump version ( #3885 )
2023-08-21 19:29:47 -05:00
Alex Yang
b5afbe385f
test: fix flaky title insert ( #3884 )
2023-08-21 19:19:59 -05:00
Noothan am
2a5ef04397
fix(core): add toast message ( #3847 )
2023-08-21 23:57:11 +00:00
Alex Yang
58184679ca
fix(cli): read environment variable ( #3883 )
2023-08-21 18:59:01 -05:00
Alex Yang
bf00299bc7
ci: do not build core in e2e test ( #3882 )
2023-08-21 18:36:39 -05:00
Camol
fc9981335b
fix: timers type in browser env ( #3875 )
2023-08-21 14:14:25 -05:00
danielchim
eda5ff4d3f
feat: e2e for recent search list ( #3872 )
2023-08-21 12:01:53 -05:00
KaranPant
54d74f6f0b
fix: recent pages list doesn't update ( #3848 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-21 06:29:52 +00:00
dependabot[bot]
c689c08b9a
chore: bump @storybook/jest from 0.1.0 to 0.2.1 ( #3859 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-21 05:15:44 +00:00
Alex Yang
0e99f25fea
chore: bump version ( #3865 )
2023-08-21 00:28:47 -05:00
danielchim
a6d5bde059
fix: remove tooltip ( #3862 )
2023-08-20 23:36:37 -05:00
Alex Yang
b22563b3b8
v0.8.0-canary.28
2023-08-20 20:33:38 -05:00
xiaodong zuo
72de11b8ca
chore: bump blocksuite version ( #3852 )
2023-08-20 20:31:39 -05:00
xiaodong zuo
cae6133f7e
fix: jump to the correct url after importing notion ( #3844 )
2023-08-20 22:13:01 +00:00
Alex Yang
a348df4c47
ci: add cancel id
2023-08-20 15:35:03 -05:00
Alex Yang
940dbbe9c3
ci: split desktop test ( #3849 )
2023-08-20 14:29:22 -05:00
Alex Yang
8a42592ff7
v0.8.0-canary.27
2023-08-19 13:57:20 -05:00
Alex Yang
956cde308e
feat(storybook): avoid refresh ( #3841 )
2023-08-19 12:30:24 -05:00
Alex Yang
37c1d9bab1
fix(infra): dynamic import ( #3842 )
2023-08-19 12:30:11 -05:00
Alex Yang
e6cd193bf4
feat: run app in closure ( #3790 )
2023-08-18 14:50:35 -05:00
Peng Xiao
bd826bb7f9
fix: reference page crash for deleted items ( #3835 )
2023-08-18 18:52:09 +00:00
Peng Xiao
ba676eb937
fix: page blink issue on navigation ( #3833 )
2023-08-18 16:45:21 +00:00
Peng Xiao
0ae6c977aa
fix: workaround for fullscreen mode ( #3829 )
2023-08-18 11:26:21 -05:00
JimmFly
e389bf902f
chore: change divider style ( #3826 )
2023-08-18 02:31:10 -05:00
Alex Yang
f6311e73cc
chore: bump version
2023-08-18 00:40:12 -05:00
Alex Yang
55c512942d
chore: update changelog url ( #3823 )
2023-08-17 23:44:26 -05:00
Alex Yang
71cf36a300
fix: cleanup editor layout ( #3822 )
2023-08-17 23:37:56 -05:00
Peng Xiao
e4e17ff606
fix: disable updater for internal ( #3819 )
2023-08-17 22:21:30 -05:00
Alex Yang
81afecdb0e
v0.8.0-canary.26
2023-08-17 21:33:59 -05:00
Alex Yang
f1cb2fc6d6
chore: bump version ( #3816 )
2023-08-17 21:33:34 -05:00
Alex Yang
96b64e1c78
chore: bump version ( #3815 )
2023-08-17 21:01:49 -05:00
JimmFly
4d58f2b4c7
fix: wrong cascading relationship ( #3800 )
2023-08-17 19:59:37 -05:00
fourdim
ab9452969b
chore: update the top tip ( #3797 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-17 19:59:08 -05:00
JimmFly
aea508573b
chore: adjust preloading tags ( #3803 )
2023-08-17 19:58:50 -05:00
Peng Xiao
068c697be9
fix: app sidebar ui issues ( #3783 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-17 18:36:17 +00:00
Qi
7a31089c4b
feat: modify shortcut key style ( #3807 )
2023-08-17 18:27:24 +00:00
Alex Yang
d50fcaa94e
build: fix turbosnap rootDir
2023-08-17 13:03:08 -05:00
danielchim
7f8dfc17a0
fix: workspace dropdown fix ( #3808 )
2023-08-17 17:47:18 +00:00
Hongtao Lye
fb47a04f55
fix: toc tooltip ( #3812 )
2023-08-17 17:10:37 +00:00
Alex Yang
da3dd1e324
fix(core): cleanup layout when switch page ( #3794 )
2023-08-16 23:34:56 -05:00
Alex Yang
c3e465d644
fix(core): editor height incorrect ( #3799 )
2023-08-16 23:20:27 -05:00
Mirone
d8d6620c5f
chore: bump blocksuite version ( #3798 )
2023-08-16 22:57:21 -05:00
Alex Yang
9853d0f6ef
fix: disable unstable snapshot ( #3791 )
2023-08-16 21:44:48 -05:00
Alex Yang
9d723fd487
v0.8.0-canary.25
2023-08-16 21:34:42 -05:00
Alex Yang
ef7ad4f111
build: fix file ignore
2023-08-16 20:08:59 -05:00
Alex Yang
c59d1e67ab
v0.8.0-canary.24
2023-08-16 17:42:16 -05:00
danielchim
9ab9c0c70d
feat: new workspace switch dropdown design ( #3700 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-16 17:18:43 -05:00
Alex Yang
f369ca39f7
fix(core): correct the suspense behavior ( #3789 )
2023-08-16 16:42:35 -05:00
Rohit Yadav
804b8f38b8
fix(core): unused z-index ( #3781 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-16 16:25:51 -05:00
Alex Yang
dd23917e3e
docs: rename to upstreams section
2023-08-16 16:09:29 -05:00
Alex Yang
b604d9b47e
docs: update README.md
2023-08-16 16:06:37 -05:00
Alex Yang
1e5a4a6849
feat(storybook): improve code ( #3786 )
2023-08-16 15:07:55 -05:00
LongYinan
64656c3c98
fix(native): static link msvc runtime on Windows ( #3773 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-16 14:55:37 -05:00
Alex Yang
61ba85e1f3
chore: bump version ( #3784 )
2023-08-16 14:53:33 -05:00
Peng Xiao
61ffc4220c
fix: ignore some files to be bundled ( #3770 )
2023-08-16 18:29:47 +00:00
danielchim
866408015e
fix: tooltip arrow ( #3769 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-16 17:48:13 +00:00
Alex Yang
651e815b42
chore: bump version ( #3771 )
...
Co-authored-by: Mirone <Saul-Mirone@outlook.com >
2023-08-16 12:02:07 -05:00
Alex Yang
645a300112
ci: add environment
2023-08-16 11:31:13 -05:00
Peng Xiao
e0a3c7f2bc
fix: disable secondary db test ( #3774 )
2023-08-17 00:11:04 +08:00
Alex Yang
3dbefda6ed
feat(storybook): import plugins ( #3768 )
2023-08-16 03:01:14 -05:00
Alex Yang
73eddc2386
v0.8.0-canary.23
2023-08-16 02:43:10 -05:00
Alex Yang
6f9dfcc3c1
feat: add outline plugin ( #3624 )
...
Co-authored-by: codert <codert.sn@gmail.com >
2023-08-16 02:34:26 -05:00
Alex Yang
93d352f3d8
ci: checkout pull request ref
2023-08-16 00:54:57 -05:00
Alex Yang
7546b080ea
ci: add name
2023-08-16 00:38:45 -05:00
Alex Yang
6988b6f034
ci: publish storybook on push to master
2023-08-16 00:37:53 -05:00
Alex Yang
de2cb1a3bc
ci: add publish-storybook.yml
2023-08-16 00:36:24 -05:00
KaranPant
08f01ea1b3
fix: add min height to footer ( #3717 )
2023-08-16 03:03:30 +00:00
Alex Yang
0df30e43c6
feat(storybook): add not found page ( #3767 )
2023-08-15 16:58:14 -05:00
Alex Yang
67b33d9b8f
feat(storybook): preview app ( #3765 )
2023-08-15 15:34:02 -05:00
Alex Yang
42dfd0a4bb
fix(core): default page mode ( #3745 )
2023-08-15 14:49:53 -05:00
Alex Yang
25052220a4
feat: add chromatic ( #3764 )
2023-08-15 14:32:24 -05:00
Qi
48e96cd399
fix: wrong style of cancel button in create workspace modal ( #3761 )
2023-08-15 12:44:03 -05:00
JimmFly
ca016f1dd1
chore: adjust preloading page ( #3753 )
2023-08-15 05:53:53 +00:00
Qi
a4fe7dd119
fix: ui issues ( #3755 )
2023-08-15 05:53:19 +00:00
JimmFly
8d2df468ee
chore: update en.json ( #3754 )
2023-08-15 05:08:48 +00:00
Peng Xiao
2830cb19fe
fix: show recursive items ( #3750 )
2023-08-15 04:01:46 +00:00
Alex Yang
8487b2c4af
fix(electron): type on handlers ( #3747 )
2023-08-15 01:06:25 +00:00
Alex Yang
720a90fe93
v0.8.0-canary.22
2023-08-14 20:37:04 -04:00
Alex Yang
623fa87d5c
fix(core): first page ( #3744 )
2023-08-14 23:16:46 +00:00
Alex Yang
4ad50bf8cf
docs: update badge in README.md ( #3743 )
2023-08-14 16:41:37 -04:00
Alex Yang
efd02a015a
chore: bump version ( #3742 )
2023-08-14 19:23:19 +00:00
Qi
75a2bbdfac
fix: ui issues ( #3738 )
...
Co-authored-by: Alex Yang <himself65@outlook.com >
2023-08-14 18:48:18 +00:00
Quincy Qiu
52102ee792
fix(plugin): allow multiple loads assets ( #3741 )
2023-08-14 18:44:52 +00:00
Qi
58dae07b5f
fix: error style of empty page ( #3733 )
2023-08-14 18:28:39 +00:00
Qi
d0e33c748b
fix: shaky header ( #3727 )
2023-08-14 18:03:14 +00:00
Peng Xiao
08da58aa1e
fix: allow multiple versions to be installed on windows ( #3740 )
2023-08-14 15:40:00 +00:00
JimmFly
1072db632e
chore: adjust translation ( #3734 )
2023-08-14 14:34:42 +00:00