bump version

pull/549/head
undefined 2 years ago
parent 626375537c
commit dbd12bd9d9
No known key found for this signature in database

@ -39,6 +39,15 @@ Telegram [@webpack_exports_undefined](https://t.me/webpack_exports_undefined)
<details> <details>
<summary><h2>更新日志(点击展开)</h2></summary> <summary><h2>更新日志(点击展开)</h2></summary>
### Hydro 4.9.8 / UI 4.48.11
- core: 修复 strictioi 下的计分板显示问题
- core: 允许普通用户查看比赛讨论
- core: 启动时自动建立静态资源文件夹
- core: 允许使用其他 UI 模块
- judge: 修复文件 IO 题目输出重定向的问题
- core: 不再向 Guest 用户分配 sessionId
- judge: 修复提交答案题
### Hydro 4.9.7 / UI 4.48.10 ### Hydro 4.9.7 / UI 4.48.10
- ui: websocket: 添加心跳包 - ui: websocket: 添加心跳包
- judge: 修复客观题和文件 IO 题提交 - judge: 修复客观题和文件 IO 题提交

@ -36,8 +36,6 @@
"@types/node": "^18.14.1", "@types/node": "^18.14.1",
"@types/semver": "^7.3.13", "@types/semver": "^7.3.13",
"@types/supertest": "^2.0.12", "@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autocannon": "^7.10.0", "autocannon": "^7.10.0",
"cac": "^6.7.14", "cac": "^6.7.14",
"chokidar": "^3.5.3", "chokidar": "^3.5.3",
@ -68,7 +66,7 @@
"stylus-loader": "^7.1.0", "stylus-loader": "^7.1.0",
"supertest": "^6.3.3", "supertest": "^6.3.3",
"ts-loader": "^9.4.2", "ts-loader": "^9.4.2",
"typescript": "5.0.2", "typescript": "^5.0.2",
"webpack": "^5.76.3", "webpack": "^5.76.3",
"webpack-bundle-analyzer": "^4.8.0", "webpack-bundle-analyzer": "^4.8.0",
"webpack-dev-server": "^4.13.1", "webpack-dev-server": "^4.13.1",

@ -4,6 +4,8 @@
"license": "MIT", "license": "MIT",
"main": "react.yaml", "main": "react.yaml",
"dependencies": { "dependencies": {
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0", "eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "2.27.5", "eslint-plugin-import": "2.27.5",

@ -1,6 +1,6 @@
{ {
"name": "hydrooj", "name": "hydrooj",
"version": "4.9.7", "version": "4.9.8",
"bin": "bin/hydrooj.js", "bin": "bin/hydrooj.js",
"main": "src/plugin-api", "main": "src/plugin-api",
"module": "src/plugin-api", "module": "src/plugin-api",

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

Loading…
Cancel
Save