diff --git a/CHANGELOG-zh.md b/CHANGELOG-zh.md index b3420b47..ba34ed14 100644 --- a/CHANGELOG-zh.md +++ b/CHANGELOG-zh.md @@ -1,3 +1,14 @@ +# 0.4.10 (TBC) +### 功能 / 优化 +- **优化日志管理**. 集中化管理日志,储存在 MongoDB,减少对 PubSub 的依赖,允许日志异常检测. +- **自动安装依赖**. 允许从 `requirements.txt` 和 `package.json` 自动安装依赖. +- **自动生成结果集**. 如果没有设置,自动设置结果集为 `results_`. +- **优化项目列表**. 项目列表中不展示 "No Project". + +### Bug 修复 +- **爬虫每日数据缺失**. [#684](https://github.com/crawlab-team/crawlab/issues/684) +- **结果数量未即时更新**. [#689](https://github.com/crawlab-team/crawlab/issues/689) + # 0.4.9 (2020-03-31) ### 功能 / 优化 - **挑战**. 用户可以完成不同的趣味挑战.. diff --git a/CHANGELOG.md b/CHANGELOG.md index ae15b56d..3cd46fa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.4.10 (TBC) +### Features / Enhancement +- **Enhanced Log Management**. Centralizing log storage in MongoDB, reduced the dependency of PubSub, allowing log error detection. +- **Auto Install Dependencies**. Allow installing dependencies automatically from `requirements.txt` or `package.json`. +- **Auto Results Collection**. Set results collection to `results_` if it is not set. +- **Optimized Project List**. Not display "No Project" item in the project list. + +### Bug Fixes +- **Missing daily stats in spider**. [#684](https://github.com/crawlab-team/crawlab/issues/684) +- **Results count not update in time**. [#689](https://github.com/crawlab-team/crawlab/issues/689) + # 0.4.9 (2020-03-31) ### Features / Enhancement - **Challenges**. Users can achieve different challenges based on their actions. diff --git a/backend/conf/config.yml b/backend/conf/config.yml index 8b39fece..17341e95 100644 --- a/backend/conf/config.yml +++ b/backend/conf/config.yml @@ -38,7 +38,7 @@ task: workers: 4 other: tmppath: "/tmp" -version: 0.4.9 +version: 0.4.10 setting: allowRegister: "N" enableTutorial: "N" diff --git a/frontend/package.json b/frontend/package.json index 0eb99542..3149be12 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "crawlab", - "version": "0.4.9", + "version": "0.4.10", "private": true, "scripts": { "serve": "vue-cli-service serve --ip=0.0.0.0 --mode=development",