2022-09-22 10:39:53 +03:00
{
2023-06-09 19:46:24 +03:00
"name" : "@affine/monorepo" ,
2024-01-25 08:17:35 +03:00
"version" : "0.12.0" ,
2022-10-14 14:29:36 +03:00
"private" : true ,
2022-12-30 16:40:15 +03:00
"author" : "toeverything" ,
2023-09-20 04:19:54 +03:00
"license" : "MIT" ,
2023-03-20 10:05:02 +03:00
"workspaces" : [
2023-06-09 19:46:24 +03:00
"." ,
2023-10-18 18:30:08 +03:00
"packages/*/*" ,
"tools/*" ,
2024-01-02 15:46:27 +03:00
"docs/reference" ,
2023-10-18 18:30:08 +03:00
"tools/@types/*" ,
"tests/*" ,
"tests/affine-legacy/*"
2023-03-20 10:05:02 +03:00
] ,
2023-07-10 09:19:59 +03:00
"engines" : {
"node" : ">=18.16.1 <19.0.0"
} ,
2022-10-14 14:29:36 +03:00
"scripts" : {
2023-07-18 19:53:10 +03:00
"dev" : "dev-core" ,
2023-08-10 16:58:46 +03:00
"dev:electron" : "yarn workspace @affine/electron dev" ,
2023-07-18 19:53:10 +03:00
"build" : "yarn nx build @affine/core" ,
2023-06-30 11:10:35 +03:00
"build:electron" : "yarn nx build @affine/electron" ,
2023-07-01 11:34:30 +03:00
"build:storage" : "yarn nx run-many -t build -p @affine/storage" ,
2023-06-30 11:10:35 +03:00
"build:storybook" : "yarn nx build @affine/storybook" ,
2023-07-18 19:53:10 +03:00
"start:web-static" : "yarn workspace @affine/core static-server" ,
2023-10-18 18:30:08 +03:00
"start:storybook" : "yarn exec serve tests/storybook/storybook-static -l 6006" ,
2023-05-09 09:09:39 +03:00
"serve:test-static" : "yarn exec serve tests/fixtures --cors -p 8081" ,
2023-07-06 06:49:17 +03:00
"lint:eslint" : "eslint . --ext .js,mjs,.ts,.tsx --cache" ,
"lint:eslint:fix" : "yarn lint:eslint --fix" ,
"lint:prettier" : "prettier --ignore-unknown --cache --check ." ,
"lint:prettier:fix" : "prettier --ignore-unknown --cache --write ." ,
2023-12-28 08:09:30 +03:00
"lint:ox" : "oxlint --import-plugin --deny-warnings -D correctness -D nursery -D prefer-array-some -D no-useless-promise-resolve-reject -D perf -A no-undef -A consistent-type-exports -A default -A named -A ban-ts-comment -A export" ,
2023-07-06 06:49:17 +03:00
"lint" : "yarn lint:eslint && yarn lint:prettier" ,
"lint:fix" : "yarn lint:eslint:fix && yarn lint:prettier:fix" ,
2023-07-28 06:06:50 +03:00
"test" : "vitest --run" ,
"test:ui" : "vitest --ui" ,
"test:coverage" : "vitest run --coverage" ,
2023-07-10 15:51:49 +03:00
"typecheck" : "tsc -b tsconfig.json --diagnostics" ,
2024-01-26 09:37:39 +03:00
"postinstall" : "node ./scripts/check-version.mjs && yarn i18n-codegen gen && yarn husky install" ,
"prepare" : "husky"
2022-10-14 14:29:36 +03:00
} ,
2022-12-30 16:40:15 +03:00
"lint-staged" : {
2023-04-13 23:30:18 +03:00
"*" : "prettier --write --ignore-unknown --cache" ,
2023-07-03 09:00:50 +03:00
"*.{ts,tsx,mjs,js,jsx}" : [
2023-11-21 17:24:24 +03:00
"prettier --ignore-unknown --write" ,
2023-07-03 09:00:50 +03:00
"eslint --cache --fix"
] ,
2023-05-10 12:16:48 +03:00
"*.toml" : [
"taplo format"
2023-12-04 09:42:54 +03:00
] ,
"*.rs" : [
"cargo fmt --"
2023-05-10 12:16:48 +03:00
]
2022-12-30 16:40:15 +03:00
} ,
2022-10-14 14:29:36 +03:00
"devDependencies" : {
2023-04-25 06:12:48 +03:00
"@affine-test/kit" : "workspace:*" ,
2023-03-22 01:39:13 +03:00
"@affine/cli" : "workspace:*" ,
2023-11-23 08:18:05 +03:00
"@commitlint/cli" : "^18.4.3" ,
"@commitlint/config-conventional" : "^18.4.3" ,
"@faker-js/faker" : "^8.3.1" ,
2023-03-25 09:39:57 +03:00
"@istanbuljs/schema" : "^0.1.3" ,
2023-05-04 08:35:09 +03:00
"@magic-works/i18n-codegen" : "^0.5.0" ,
2024-02-01 17:33:25 +03:00
"@nx/vite" : "17.3.1" ,
2024-01-19 06:16:06 +03:00
"@playwright/test" : "^1.41.0" ,
2024-02-01 17:33:25 +03:00
"@taplo/cli" : "^0.7.0" ,
2023-11-23 08:18:05 +03:00
"@testing-library/react" : "^14.1.2" ,
2023-06-09 19:46:24 +03:00
"@toeverything/infra" : "workspace:*" ,
2023-08-08 18:46:23 +03:00
"@types/affine__env" : "workspace:*" ,
2023-11-23 08:18:05 +03:00
"@types/eslint" : "^8.44.7" ,
"@types/node" : "^20.9.3" ,
2023-11-29 07:43:23 +03:00
"@typescript-eslint/eslint-plugin" : "^6.13.1" ,
"@typescript-eslint/parser" : "^6.13.1" ,
chore: bump up @vanilla-extract/vite-plugin version to v4 (#5730)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@vanilla-extract%2fvite-plugin/4.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vanilla-extract%2fvite-plugin/4.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vanilla-extract%2fvite-plugin/3.9.2/4.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vanilla-extract%2fvite-plugin/3.9.2/4.0.2?slim=true)](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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/545bf82f127598ac72265164c72e1a1aad558491) 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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/545bf82f127598ac72265164c72e1a1aad558491)]:
- [@​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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/d0b84f6340d34b39414fbead3893a6000f9810fe) Thanks [@​mrm007](https://togithub.com/mrm007)! - Skip loading plugins added by Vitest
- [#​1297](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1297) [`85e1131`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/85e11318f0a8b405041e967bd35aaed7f8abe753) 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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/e531c4170da11ba6446e256b3af04a288841491a) 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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/e531c4170da11ba6446e256b3af04a288841491a) 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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/e531c4170da11ba6446e256b3af04a288841491a) 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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/e531c4170da11ba6446e256b3af04a288841491a) 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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/e531c4170da11ba6446e256b3af04a288841491a) Thanks [@​mrm007](https://togithub.com/mrm007)! - Update dependencies
- Updated dependencies \[[`e531c41`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/e531c4170da11ba6446e256b3af04a288841491a), [`e531c41`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/e531c4170da11ba6446e256b3af04a288841491a)]:
- [@​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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/00af9715e522d9caf6e90cb138dee13580b8dea1) Thanks [@​mrm007](https://togithub.com/mrm007)! - Update dependency `@vanilla-extract/integration`
- [#​1254](https://togithub.com/vanilla-extract-css/vanilla-extract/pull/1254) [`f373d7f`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/f373d7f6b59f43236dc713e1b421ef4631f392c0) 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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/610c50b0012ece0d06530faab3f5e442a55fc39e) 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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/610c50b0012ece0d06530faab3f5e442a55fc39e) Thanks [@​mrm007](https://togithub.com/mrm007)! - Lazy load Vite to avoid the CJS warning
- Updated dependencies \[[`610c50b`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/610c50b0012ece0d06530faab3f5e442a55fc39e), [`610c50b`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/610c50b0012ece0d06530faab3f5e442a55fc39e)]:
- [@​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`](https://togithub.com/vanilla-extract-css/vanilla-extract/commit/bc349fd7cb3c50488bb1b169418fbb35b7de5c95) 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 10:02:22 +03:00
"@vanilla-extract/vite-plugin" : "^4.0.0" ,
2023-09-29 06:02:26 +03:00
"@vanilla-extract/webpack-plugin" : "^2.3.1" ,
2023-11-23 08:18:05 +03:00
"@vitejs/plugin-react-swc" : "^3.5.0" ,
2024-02-01 17:33:25 +03:00
"@vitest/coverage-istanbul" : "1.2.2" ,
"@vitest/ui" : "1.2.2" ,
2024-02-01 11:53:20 +03:00
"electron" : "^28.2.1" ,
2023-11-23 08:18:05 +03:00
"eslint" : "^8.54.0" ,
2023-08-10 17:06:46 +03:00
"eslint-config-prettier" : "^9.0.0" ,
2023-11-23 08:18:05 +03:00
"eslint-plugin-i" : "^2.29.0" ,
2023-08-16 22:53:33 +03:00
"eslint-plugin-react" : "^7.33.2" ,
2023-04-14 08:24:44 +03:00
"eslint-plugin-react-hooks" : "^4.6.0" ,
2023-02-17 10:33:32 +03:00
"eslint-plugin-simple-import-sort" : "^10.0.0" ,
2023-11-23 08:18:05 +03:00
"eslint-plugin-sonarjs" : "^0.23.0" ,
2024-02-06 12:42:03 +03:00
"eslint-plugin-unicorn" : "^51.0.0" ,
2023-07-22 16:10:20 +03:00
"eslint-plugin-unused-imports" : "^3.0.0" ,
2023-11-23 08:18:05 +03:00
"eslint-plugin-vue" : "^9.18.1" ,
2024-01-02 07:51:44 +03:00
"fake-indexeddb" : "5.0.2" ,
chore: bump up happy-dom version to v13 (#5569)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [happy-dom](https://togithub.com/capricorn86/happy-dom) | [`^12.10.3` -> `^13.0.0`](https://renovatebot.com/diffs/npm/happy-dom/12.10.3/13.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/happy-dom/13.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/happy-dom/13.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/happy-dom/12.10.3/13.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/happy-dom/12.10.3/13.0.0?slim=true)](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)
##### :bomb: 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))
##### :art: 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))
##### :construction_worker_man: 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! :santa: :sparkles:
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 18:27:23 +03:00
"happy-dom" : "^13.0.0" ,
2024-01-26 09:37:39 +03:00
"husky" : "^9.0.6" ,
2023-11-23 08:18:05 +03:00
"lint-staged" : "^15.1.0" ,
"msw" : "^2.0.8" ,
"nanoid" : "^5.0.3" ,
2024-01-16 09:41:45 +03:00
"nx" : "^17.2.8" ,
2023-02-05 13:41:18 +03:00
"nyc" : "^15.1.0" ,
2024-01-09 07:11:53 +03:00
"oxlint" : "0.0.22" ,
2023-11-23 08:18:05 +03:00
"prettier" : "^3.1.0" ,
2023-07-10 09:19:59 +03:00
"semver" : "^7.5.4" ,
2023-08-25 19:52:33 +03:00
"serve" : "^14.2.1" ,
2023-11-23 08:18:05 +03:00
"string-width" : "^7.0.0" ,
2023-06-30 20:17:31 +03:00
"ts-node" : "^10.9.1" ,
2023-11-23 08:18:05 +03:00
"typescript" : "^5.3.2" ,
chore: bump up vite version to v5 (#5203)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/4.5.1/5.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/4.5.1/5.0.6?slim=true)](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 12:57:11 +03:00
"vite" : "^5.0.6" ,
2023-07-27 07:02:18 +03:00
"vite-plugin-istanbul" : "^5.0.0" ,
2023-12-11 09:55:17 +03:00
"vite-plugin-static-copy" : "^1.0.0" ,
2023-09-25 19:05:09 +03:00
"vite-tsconfig-paths" : "^4.2.1" ,
2024-02-01 17:33:25 +03:00
"vitest" : "1.2.2" ,
2023-04-18 08:07:03 +03:00
"vitest-fetch-mock" : "^0.2.2" ,
2023-10-13 23:40:07 +03:00
"vitest-mock-extended" : "^1.3.1"
2022-12-30 16:40:15 +03:00
} ,
2024-02-01 17:33:25 +03:00
"packageManager" : "yarn@4.1.0" ,
2023-08-29 12:15:46 +03:00
"resolutions" : {
chore: bump up vite version to v5 (#5203)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/4.5.1/5.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/4.5.1/5.0.6?slim=true)](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 12:57:11 +03:00
"vite" : "^5.0.6" ,
2023-08-29 12:15:46 +03:00
"array-buffer-byte-length" : "npm:@nolyfill/array-buffer-byte-length@latest" ,
"array-includes" : "npm:@nolyfill/array-includes@latest" ,
"array.prototype.flat" : "npm:@nolyfill/array.prototype.flat@latest" ,
"array.prototype.flatmap" : "npm:@nolyfill/array.prototype.flatmap@latest" ,
"array.prototype.tosorted" : "npm:@nolyfill/array.prototype.tosorted@latest" ,
"arraybuffer.prototype.slice" : "npm:@nolyfill/arraybuffer.prototype.slice@latest" ,
"asynciterator.prototype" : "npm:@nolyfill/asynciterator.prototype@latest" ,
"available-typed-arrays" : "npm:@nolyfill/available-typed-arrays@latest" ,
"deep-equal" : "npm:@nolyfill/deep-equal@latest" ,
"define-properties" : "npm:@nolyfill/define-properties@latest" ,
"es-iterator-helpers" : "npm:@nolyfill/es-iterator-helpers@latest" ,
"es-set-tostringtag" : "npm:@nolyfill/es-set-tostringtag@latest" ,
"function-bind" : "npm:@nolyfill/function-bind@latest" ,
"function.prototype.name" : "npm:@nolyfill/function.prototype.name@latest" ,
"get-symbol-description" : "npm:@nolyfill/get-symbol-description@latest" ,
"globalthis" : "npm:@nolyfill/globalthis@latest" ,
"gopd" : "npm:@nolyfill/gopd@latest" ,
"has" : "npm:@nolyfill/has@latest" ,
"has-property-descriptors" : "npm:@nolyfill/has-property-descriptors@latest" ,
"has-proto" : "npm:@nolyfill/has-proto@latest" ,
"has-symbols" : "npm:@nolyfill/has-symbols@latest" ,
"has-tostringtag" : "npm:@nolyfill/has-tostringtag@latest" ,
"is-arguments" : "npm:@nolyfill/is-arguments@latest" ,
"is-array-buffer" : "npm:@nolyfill/is-array-buffer@latest" ,
"is-date-object" : "npm:@nolyfill/is-date-object@latest" ,
"is-generator-function" : "npm:@nolyfill/is-generator-function@latest" ,
"is-regex" : "npm:@nolyfill/is-regex@latest" ,
"is-shared-array-buffer" : "npm:@nolyfill/is-shared-array-buffer@latest" ,
"is-string" : "npm:@nolyfill/is-string@latest" ,
"is-symbol" : "npm:@nolyfill/is-symbol@latest" ,
"is-weakref" : "npm:@nolyfill/is-weakref@latest" ,
"iterator.prototype" : "npm:@nolyfill/iterator.prototype@latest" ,
"object-is" : "npm:@nolyfill/object-is@latest" ,
"object-keys" : "npm:@nolyfill/object-keys@latest" ,
"object.assign" : "npm:@nolyfill/object.assign@latest" ,
"object.entries" : "npm:@nolyfill/object.entries@latest" ,
"object.fromentries" : "npm:@nolyfill/object.fromentries@latest" ,
"object.hasown" : "npm:@nolyfill/object.hasown@latest" ,
"object.values" : "npm:@nolyfill/object.values@latest" ,
"reflect.getprototypeof" : "npm:@nolyfill/reflect.getprototypeof@latest" ,
"regexp.prototype.flags" : "npm:@nolyfill/regexp.prototype.flags@latest" ,
"safe-array-concat" : "npm:@nolyfill/safe-array-concat@latest" ,
"safe-regex-test" : "npm:@nolyfill/safe-regex-test@latest" ,
"side-channel" : "npm:@nolyfill/side-channel@latest" ,
"string.prototype.matchall" : "npm:@nolyfill/string.prototype.matchall@latest" ,
"string.prototype.trim" : "npm:@nolyfill/string.prototype.trim@latest" ,
"string.prototype.trimend" : "npm:@nolyfill/string.prototype.trimend@latest" ,
"string.prototype.trimstart" : "npm:@nolyfill/string.prototype.trimstart@latest" ,
"typed-array-buffer" : "npm:@nolyfill/typed-array-buffer@latest" ,
"typed-array-byte-length" : "npm:@nolyfill/typed-array-byte-length@latest" ,
"typed-array-byte-offset" : "npm:@nolyfill/typed-array-byte-offset@latest" ,
"typed-array-length" : "npm:@nolyfill/typed-array-length@latest" ,
"unbox-primitive" : "npm:@nolyfill/unbox-primitive@latest" ,
"which-boxed-primitive" : "npm:@nolyfill/which-boxed-primitive@latest" ,
2023-09-29 06:02:26 +03:00
"which-typed-array" : "npm:@nolyfill/which-typed-array@latest" ,
2023-11-23 08:18:05 +03:00
"next-auth@^4.24.5" : "patch:next-auth@npm%3A4.24.5#~/.yarn/patches/next-auth-npm-4.24.5-8428e11927.patch" ,
2023-12-11 10:43:15 +03:00
"@reforged/maker-appimage/@electron-forge/maker-base" : "7.2.0" ,
2023-11-09 05:43:47 +03:00
"macos-alias" : "npm:macos-alias-building@latest" ,
2024-01-10 08:25:37 +03:00
"fs-xattr" : "npm:@napi-rs/xattr@latest" ,
"@radix-ui/react-dialog" : "npm:@radix-ui/react-dialog@latest"
2023-08-29 12:15:46 +03:00
}
2022-10-14 14:29:36 +03:00
}