Skip to content

Commit

Permalink
🔀 🔖 🐛 🚸 Merge changes from the v3.1.0.
Browse files Browse the repository at this point in the history
🔀 🚩 More accurate visit frequency statistics.

🔀 🐛 Constant blocking time of one minute.

🔀 🐛 Segmentation fault.

🔀 🐛 Correctly handle memory request failures.

🔀 🐛 Segmentation fault. #18

🔀 🚸 Output debug log if necessary.
  • Loading branch information
ADD-SP committed Jan 17, 2021
1 parent ed030e5 commit e6930da
Show file tree
Hide file tree
Showing 11 changed files with 939 additions and 531 deletions.
24 changes: 24 additions & 0 deletions CHANGES-ZH-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,34 @@
### 修复


***

## [3.1.0] - 2021-01-17

### 注意

* 因为在 `v3.0.3` 测试过程中新增了向下兼容的功能,所以 `v3.0.3` 被跳过。

### 新增

* 增加调试日志便于排障([bac1d02](https://github.com/ADD-SP/ngx_waf/commit/bac1d026e9e902d9a49881e899cba4965f3388a4))。

### 修复

* 修复了一个段错误([57d7719](https://github.com/ADD-SP/ngx_waf/commit/57d7719654caddc40ee655c797f0984f42c25495))。

* 更精确的访问频次统计([53d3b14](https://github.com/ADD-SP/ngx_waf/commit/53d3b149a524252dbb9b8170e31f4b1f4895a6b7))。

***

## [3.0.2] - 2021-01-10

### 注意

* 因为在 `v3.0.1`上有热修复,所以 `v3.0.2` 的一切测试版本作废,请不要使用这些测试版。

### 修复

* 修复一个了在 `Alpine Linux` 下的编译错误([e989aa3](https://github.com/ADD-SP/ngx_waf/commit/e989aa34370da73f03627601188ca33844372c4f))。

***
Expand Down
22 changes: 22 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,32 @@
### Fixed


***

## [3.1.0] - 2021-01-17

### Note

* `v3.0.3` was skipped because a backward compatibility feature was added during the `v3.0.3` test.

### Added

* Add debug log for easy troubleshooting ([bac1d02](https://github.com/ADD-SP/ngx_waf/commit/bac1d026e9e902d9a49881e899cba4965f3388a4)).

### Fixed

* Fixed a segmentation fault ([57d7719](https://github.com/ADD-SP/ngx_waf/commit/57d7719654caddc40ee655c797f0984f42c25495))。

* More accurate visit frequency statistics ([53d3b14](https://github.com/ADD-SP/ngx_waf/commit/53d3b149a524252dbb9b8170e31f4b1f4895a6b7)).

***

## [3.0.2] - 2021-01-10

### Note

* Because of hotfixes performed on `v3.0.1`, all beta versions of `v3.0.2` are voided, please do not use these beta versions.

### Fixed

* Fixed a build error on `Alpine Linux` ([e989aa3](https://github.com/ADD-SP/ngx_waf/commit/e989aa34370da73f03627601188ca33844372c4f)).
Expand Down
4 changes: 2 additions & 2 deletions config
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ deps="$ngx_addon_dir/inc/ngx_http_waf_module_check.h \
$ngx_addon_dir/inc/ngx_http_waf_module_macro.h \
$ngx_addon_dir/inc/ngx_http_waf_module_type.h \
$ngx_addon_dir/inc/ngx_http_waf_module_util.h \
$ngx_addon_dir/inc/ngx_http_waf_module_ip_hash_table.h \
$ngx_addon_dir/inc/ngx_http_waf_module_ip_trie.h"
$ngx_addon_dir/inc/ngx_http_waf_module_ip_trie.h \
$ngx_addon_dir/inc/ngx_http_waf_module_token_bucket_set.h"

srcs="$ngx_addon_dir/src/ngx_http_waf_module_core.c"

Expand Down
Loading

0 comments on commit e6930da

Please sign in to comment.