updated CHANGELOG

This commit is contained in:
marvzhang
2020-04-19 18:06:23 +08:00
parent b0806d2e94
commit 13803cdb35
4 changed files with 24 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
# 0.4.10 (TBC)
### 功能 / 优化
- **优化日志管理**. 集中化管理日志储存在 MongoDB减少对 PubSub 的依赖允许日志异常检测.
- **自动安装依赖**. 允许从 `requirements.txt` `package.json` 自动安装依赖.
- **自动生成结果集**. 如果没有设置自动设置结果集为 `results_<spider_name>`.
- **优化项目列表**. 项目列表中不展示 "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)
### 功能 / 优化
- **挑战**. 用户可以完成不同的趣味挑战..

View File

@@ -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_<spider_name>` 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.

View File

@@ -38,7 +38,7 @@ task:
workers: 4
other:
tmppath: "/tmp"
version: 0.4.9
version: 0.4.10
setting:
allowRegister: "N"
enableTutorial: "N"

View File

@@ -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",