chore: bump version (#4083)

This commit is contained in:
Alex Yang 2023-08-31 18:50:03 -05:00 committed by GitHub
parent 1e30a3c7fe
commit 25671e2134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 503 additions and 775 deletions

View File

@ -47,7 +47,7 @@
"cssnano": "^6.0.1",
"graphql": "^16.8.0",
"intl-segmenter-polyfill-rs": "^0.1.6",
"jotai": "^2.4.0",
"jotai": "^2.4.1",
"jotai-devtools": "^0.6.2",
"lit": "^2.8.0",
"lottie-web": "^5.12.2",
@ -74,8 +74,8 @@
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@sentry/webpack-plugin": "^2.7.0",
"@svgr/webpack": "^8.1.0",
"@swc/core": "^1.3.80",
"@types/lodash-es": "^4.17.8",
"@swc/core": "^1.3.81",
"@types/lodash-es": "^4.17.9",
"@types/webpack-env": "^1.18.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",

View File

@ -17,7 +17,7 @@
"@blocksuite/lit": "0.0.0-20230829150056-df43987c-nightly",
"@blocksuite/store": "0.0.0-20230829150056-df43987c-nightly",
"express": "^4.18.2",
"jotai": "^2.4.0",
"jotai": "^2.4.1",
"react": "18.3.0-canary-7118f5dd7-20230705",
"react-dom": "18.3.0-canary-7118f5dd7-20230705",
"react-server-dom-webpack": "18.3.0-canary-7118f5dd7-20230705",

View File

@ -44,7 +44,7 @@
"@reforged/maker-appimage": "^3.3.1",
"@toeverything/infra": "workspace:*",
"@types/fs-extra": "^11.0.1",
"@types/uuid": "^9.0.2",
"@types/uuid": "^9.0.3",
"cross-env": "7.0.3",
"electron": "^26.1.0",
"electron-log": "^5.0.0-beta.28",
@ -52,8 +52,8 @@
"electron-window-state": "^5.0.3",
"esbuild": "^0.19.2",
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"jotai": "^2.4.0",
"glob": "^10.3.4",
"jotai": "^2.4.1",
"lodash-es": "^4.17.21",
"rxjs": "^7.8.1",
"ts-node": "^10.9.1",

View File

@ -19,19 +19,19 @@
"postinstall": "prisma generate"
},
"dependencies": {
"@apollo/server": "^4.9.2",
"@apollo/server": "^4.9.3",
"@auth/prisma-adapter": "^1.0.1",
"@aws-sdk/client-s3": "^3.400.0",
"@google-cloud/opentelemetry-cloud-monitoring-exporter": "^0.17.0",
"@google-cloud/opentelemetry-cloud-trace-exporter": "^2.1.0",
"@nestjs/apollo": "^12.0.7",
"@nestjs/common": "^10.2.2",
"@nestjs/core": "^10.2.2",
"@nestjs/common": "^10.2.4",
"@nestjs/core": "^10.2.4",
"@nestjs/graphql": "^12.0.8",
"@nestjs/platform-express": "^10.2.2",
"@nestjs/platform-socket.io": "^10.2.2",
"@nestjs/platform-express": "^10.2.4",
"@nestjs/platform-socket.io": "^10.2.4",
"@nestjs/throttler": "^4.2.1",
"@nestjs/websockets": "^10.2.2",
"@nestjs/websockets": "^10.2.4",
"@node-rs/argon2": "^1.5.2",
"@node-rs/crc32": "^1.7.2",
"@node-rs/jsonwebtoken": "^0.2.3",
@ -52,7 +52,7 @@
"dotenv": "^16.3.1",
"express": "^4.18.2",
"file-type": "^18.5.0",
"get-stream": "^7.0.1",
"get-stream": "^8.0.1",
"graphql": "^16.8.0",
"graphql-type-json": "^0.3.2",
"graphql-upload": "^16.0.2",
@ -76,11 +76,11 @@
"devDependencies": {
"@affine/storage": "workspace:*",
"@napi-rs/image": "^1.6.1",
"@nestjs/testing": "^10.2.2",
"@nestjs/testing": "^10.2.4",
"@types/cookie-parser": "^1.4.3",
"@types/engine.io": "^3.1.7",
"@types/express": "^4.17.17",
"@types/lodash-es": "^4.17.8",
"@types/lodash-es": "^4.17.9",
"@types/node": "^18.17.12",
"@types/nodemailer": "^6.4.9",
"@types/on-headers": "^1.0.0",

View File

@ -2,6 +2,8 @@ import { PutObjectCommand, S3Client } from '@aws-sdk/client-s3';
import { Inject, Injectable } from '@nestjs/common';
import { crc32 } from '@node-rs/crc32';
import { fileTypeFromBuffer } from 'file-type';
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore - no types
import { getStreamAsBuffer } from 'get-stream';
import { Config } from '../../config';

View File

@ -106,11 +106,11 @@ describe('Workspace Module', () => {
const user = await signUp(app, 'u1', 'u1@affine.pro', '1');
const workspace = await createWorkspace(app, user.token.token);
rejects(
await rejects(
getPublicWorkspace(app, 'not_exists_ws'),
'must not get not exists workspace'
);
rejects(
await rejects(
getPublicWorkspace(app, workspace.id),
'must not get private workspace'
);

View File

@ -41,7 +41,7 @@
"check-password-strength": "^2.0.7",
"clsx": "^2.0.0",
"dayjs": "^1.11.9",
"jotai": "^2.4.0",
"jotai": "^2.4.1",
"lit": "^2.8.0",
"lottie-web": "^5.12.2",
"react": "18.2.0",

View File

@ -14,7 +14,7 @@
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@types/lodash-es": "^4.17.8",
"@types/lodash-es": "^4.17.9",
"lodash-es": "^4.17.21",
"prettier": "^3.0.3"
},

View File

@ -53,7 +53,7 @@
"@blocksuite/blocks": "0.0.0-20230829150056-df43987c-nightly",
"@blocksuite/global": "0.0.0-20230829150056-df43987c-nightly",
"@blocksuite/store": "0.0.0-20230829150056-df43987c-nightly",
"jotai": "^2.4.0",
"jotai": "^2.4.1",
"zod": "^3.22.2"
},
"devDependencies": {
@ -63,7 +63,7 @@
"electron": "link:../../apps/electron/node_modules/electron",
"react": "^18.2.0",
"vite": "^4.4.9",
"vite-plugin-dts": "3.5.2",
"vite-plugin-dts": "3.5.3",
"yjs": "^13.6.7"
},
"peerDependencies": {

View File

@ -3,7 +3,7 @@
"private": true,
"main": "./src/index.ts",
"dependencies": {
"jotai": "^2.4.0"
"jotai": "^2.4.1"
},
"devDependencies": {
"@blocksuite/block-std": "0.0.0-20230829150056-df43987c-nightly",

View File

@ -20,7 +20,7 @@
"devDependencies": {
"@napi-rs/cli": "^2.16.2",
"@types/node": "^18.17.12",
"@types/uuid": "^9.0.2",
"@types/uuid": "^9.0.3",
"cross-env": "^7.0.3",
"rxjs": "^7.8.1",
"ts-node": "^10.9.1",

View File

@ -11,7 +11,7 @@
],
"dependencies": {
"@endo/static-module-record": "^0.8.1",
"@swc/core": "^1.3.80",
"@swc/core": "^1.3.81",
"@toeverything/infra": "workspace:^",
"@vanilla-extract/rollup-plugin": "^1.3.0",
"@vitejs/plugin-vue": "^4.3.4",

View File

@ -25,11 +25,11 @@
"@blocksuite/blocks": "0.0.0-20230829150056-df43987c-nightly",
"@blocksuite/global": "0.0.0-20230829150056-df43987c-nightly",
"@blocksuite/store": "0.0.0-20230829150056-df43987c-nightly",
"jotai": "^2.4.0",
"jotai": "^2.4.1",
"zod": "^3.22.2"
},
"devDependencies": {
"vite": "^4.4.9",
"vite-plugin-dts": "3.5.2"
"vite-plugin-dts": "3.5.3"
}
}

View File

@ -25,7 +25,7 @@
"@toeverything/hooks": "workspace:*",
"@toeverything/y-indexeddb": "workspace:*",
"async-call-rpc": "^6.3.1",
"jotai": "^2.4.0",
"jotai": "^2.4.1",
"js-base64": "^3.7.5",
"ky": "^0.33.3",
"lib0": "^0.2.83",

View File

@ -41,7 +41,7 @@
"@blocksuite/blocks": "0.0.0-20230829150056-df43987c-nightly",
"@blocksuite/store": "0.0.0-20230829150056-df43987c-nightly",
"vite": "^4.4.9",
"vite-plugin-dts": "3.5.2",
"vite-plugin-dts": "3.5.3",
"y-indexeddb": "^9.0.11"
},
"peerDependencies": {

View File

@ -18,7 +18,7 @@
"@affine/sdk": "workspace:*",
"@toeverything/components": "^0.0.24",
"idb": "^7.1.1",
"langchain": "^0.0.136",
"langchain": "^0.0.138",
"marked": "^7.0.5",
"marked-gfm-heading-id": "^3.0.6",
"marked-mangle": "^1.1.2",
@ -27,7 +27,7 @@
"devDependencies": {
"@affine/plugin-cli": "workspace:*",
"@types/marked": "^5.0.1",
"jotai": "^2.4.0",
"jotai": "^2.4.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},

View File

@ -22,7 +22,7 @@
},
"devDependencies": {
"@affine/plugin-cli": "workspace:*",
"jotai": "^2.4.0",
"jotai": "^2.4.1",
"react": "18.2.0",
"react-dom": "18.2.0"
}

View File

@ -17,7 +17,7 @@
"dependencies": {
"@affine/component": "workspace:*",
"@affine/sdk": "workspace:*",
"element-plus": "^2.3.10",
"element-plus": "^2.3.12",
"vue": "^3.3.4"
},
"devDependencies": {

1210
yarn.lock

File diff suppressed because it is too large Load Diff