bump version

pull/506/head
undefined 2 years ago
parent 6823a1ed2e
commit 092c0ee4eb

@ -40,6 +40,15 @@ Telegram [@webpack_exports_undefined](https://t.me/webpack_exports_undefined)
<details>
<summary><h2>更新日志(点击展开)</h2></summary>
### Hydro 4.7.2 / UI 4.47.2
- core: 修复提交答案题
- ui: 修复作业页面编辑与删除操作
- vjudge: 适配 codeforces 新接口
- core: 过滤空 `$set` 操作
- ui: domain_dashboard 页显示域创建者
- judge: 修复 hack
- core: 提交时检查所选语言是否存在
### Hydro 4.7.0 / UI 4.47.0
- core: 支持检测导致启动卡死的问题
- core: 修复特定情况下 rating 信息无法写入的问题

@ -36,8 +36,8 @@
"@types/node": "^18.11.18",
"@types/semver": "^7.3.13",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"autocannon": "^7.10.0",
"cac": "^6.7.14",
"chokidar": "^3.5.3",
@ -75,7 +75,7 @@
"stylus-loader": "^7.1.0",
"supertest": "^6.3.3",
"ts-loader": "^9.4.2",
"typescript": "4.9.4",
"typescript": "4.9.5",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-dev-server": "^4.11.1",

@ -1,7 +1,7 @@
{
"name": "@hydrooj/hydrojudge",
"bin": "bin/hydrojudge.js",
"version": "3.1.17",
"version": "3.1.18",
"main": "package.json",
"author": "undefined <i@undefined.moe>",
"repository": "https://github.com/hydro-dev/Hydro.git",
@ -12,7 +12,7 @@
"mongodb": "^3.7.3",
"p-queue": "^7.3.0",
"schemastery": "^3.7.0",
"shell-quote": "^1.7.4",
"shell-quote": "^1.8.0",
"superagent": "^8.0.9",
"ws": "^8.12.0"
},

@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "4.7.1",
"version": "4.7.2",
"bin": "bin/hydrooj.js",
"main": "src/plugin-api",
"module": "src/plugin-api",
@ -12,12 +12,12 @@
},
"preferUnplugged": true,
"dependencies": {
"@aws-sdk/client-s3": "^3.259.0",
"@aws-sdk/lib-storage": "^3.259.0",
"@aws-sdk/middleware-endpoint": "^3.257.0",
"@aws-sdk/s3-presigned-post": "^3.259.0",
"@aws-sdk/s3-request-presigner": "^3.259.0",
"@graphql-tools/schema": "^9.0.14",
"@aws-sdk/client-s3": "^3.264.0",
"@aws-sdk/lib-storage": "^3.264.0",
"@aws-sdk/middleware-endpoint": "^3.264.0",
"@aws-sdk/s3-presigned-post": "^3.264.0",
"@aws-sdk/s3-request-presigner": "^3.264.0",
"@graphql-tools/schema": "^9.0.15",
"@hydrooj/utils": "workspace:*",
"@simplewebauthn/server": "^7.0.1",
"adm-zip": "0.5.5",

@ -1,6 +1,6 @@
{
"name": "@hydrooj/ui-default",
"version": "4.47.1",
"version": "4.47.2",
"author": "undefined <i@undefined.moe>",
"license": "AGPL-3.0",
"main": "index.ts",

@ -16,7 +16,7 @@
"mongodb": "^3.7.3",
"reggol": "^1.3.5",
"source-map-support": "^0.5.21",
"systeminformation": "^5.17.7"
"systeminformation": "^5.17.8"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",

@ -1,6 +1,6 @@
{
"name": "@hydrooj/vjudge",
"version": "1.8.1",
"version": "1.8.2",
"description": "Submit problems to remote oj",
"main": "src/model.ts",
"repository": "https://github.com/hydro-dev/Hydro.git",

Loading…
Cancel
Save