Skip to content

Commit 23e4dbf

Browse files
committed
bump beta.3
1 parent cd24cba commit 23e4dbf

12 files changed

Lines changed: 20 additions & 20 deletions

File tree

framework/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"main": "base.mjs",
66
"dependencies": {
7-
"@eslint-react/eslint-plugin": "^1.50.0",
7+
"@eslint-react/eslint-plugin": "^1.51.0",
88
"@eslint/compat": "^1.2.9",
99
"@eslint/eslintrc": "^3.3.1",
1010
"@stylistic/eslint-plugin": "^4.4.0",

framework/framework/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export class ApiService extends Service {
150150
await emitHook?.(`api/before/${callOrName}`, args);
151151
}
152152
let result = await func(context, args as any, sendPayload);
153-
if (result && 'next' in result) {
153+
if (result && typeof result === 'object' && 'next' in result) {
154154
const it = result as AsyncGenerator<any, any, never>;
155155
while (true) {
156156
const value = await it.next(); // eslint-disable-line no-await-in-loop

framework/framework/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hydrooj/framework",
3-
"version": "0.2.0-beta.2",
3+
"version": "0.2.0-beta.3",
44
"main": "index.ts",
55
"license": "MIT",
66
"peerDependencies": {

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hydrooj/components",
3-
"version": "1.0.0-beta.2",
3+
"version": "1.0.0-beta.3",
44
"main": "./frontend/index.ts",
55
"dependencies": {
66
"allotment": "^1.20.3",

packages/hydrojudge/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hydrooj/hydrojudge",
33
"bin": "bin/hydrojudge.js",
4-
"version": "3.5.0-beta.2",
4+
"version": "3.5.0-beta.3",
55
"main": "./src/index.ts",
66
"author": "undefined <i@undefined.moe>",
77
"repository": "https://github.com/hydro-dev/Hydro.git",

packages/hydrooj/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hydrooj",
3-
"version": "5.0.0-beta.2",
3+
"version": "5.0.0-beta.3",
44
"bin": "bin/hydrooj.js",
55
"main": "src/plugin-api",
66
"module": "src/plugin-api",
@@ -38,7 +38,7 @@
3838
"lru-cache": "^11.1.0",
3939
"mime-types": "^3.0.1",
4040
"moment-timezone": "^0.5.48",
41-
"mongodb": "^6.16.0",
41+
"mongodb": "^6.17.0",
4242
"mongodb-uri": "^0.9.7",
4343
"nanoid": "^5.1.5",
4444
"nodemailer": "^7.0.3",

packages/import-qduoj/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hydrooj/import-qduoj",
3-
"version": "1.6.0-beta.1",
3+
"version": "1.6.0-beta.2",
44
"description": "Import QDUOJ problem export",
55
"main": "index.ts",
66
"repository": "https://github.com/hydro-dev/Hydro.git",

packages/migrate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "AGPL-3.0-or-later",
88
"dependencies": {
99
"mariadb": "^3.4.2",
10-
"mongodb": "^6.16.0",
10+
"mongodb": "^6.17.0",
1111
"turndown": "^7.2.0",
1212
"xml2js": "^0.6.2"
1313
},

packages/onsite-toolkit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hydrooj/onsite-toolkit",
3-
"version": "0.1.0-beta.1",
3+
"version": "0.1.0-beta.2",
44
"dependencies": {
55
"@react-spring/web": "^10.0.1",
66
"react-use": "^17.6.0"

packages/ui-default/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hydrooj/ui-default",
3-
"version": "4.58.0-beta.2",
3+
"version": "4.58.0-beta.3",
44
"author": "undefined <i@undefined.moe>",
55
"license": "AGPL-3.0",
66
"main": "index.ts",
@@ -21,7 +21,7 @@
2121
"@fontsource/source-code-pro": "^5.2.6",
2222
"@fontsource/ubuntu-mono": "^5.2.5",
2323
"@hydrooj/utils": "workspace:^",
24-
"@sentry/browser": "^9.24.0",
24+
"@sentry/browser": "^9.25.1",
2525
"@sentry/webpack-plugin": "^3.5.0",
2626
"@simplewebauthn/browser": "13.1.0",
2727
"@svgr/webpack": "^8.1.0",
@@ -34,8 +34,8 @@
3434
"@types/nunjucks": "^3.2.6",
3535
"@types/pickadate": "^3.5.35",
3636
"@types/qrcode": "^1.5.5",
37-
"@types/react": "^19.1.6",
38-
"@types/react-dom": "^19.1.5",
37+
"@types/react": "^18.3.23",
38+
"@types/react-dom": "^18.3.7",
3939
"@types/redux-logger": "^3.0.13",
4040
"@types/uuid": "^10.0.0",
4141
"@types/webpack-env": "^1.18.8",
@@ -66,7 +66,7 @@
6666
"jquery.easing": "^1.4.1",
6767
"jquery.transit": "^0.9.12",
6868
"matchmedia-polyfill": "^0.3.2",
69-
"md-editor-rt": "^5.6.0",
69+
"md-editor-rt": "^5.6.1",
7070
"mini-css-extract-plugin": "^2.9.2",
7171
"moment": "^2.30.1",
7272
"monaco-editor": "0.52.2",
@@ -117,7 +117,7 @@
117117
"web-streams-polyfill": "^4.1.0",
118118
"webpack": "^5.99.9",
119119
"webpack-bundle-analyzer": "^4.10.2",
120-
"webpack-dev-server": "^5.2.1",
120+
"webpack-dev-server": "^5.2.2",
121121
"webpack-manifest-plugin": "^5.0.1",
122122
"webpackbar": "^7.0.0"
123123
},

0 commit comments

Comments
 (0)