Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #1213

Merged
merged 3 commits into from
Jan 22, 2025
Merged

Master #1213

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,46 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.7.0] - 2025-01-19

### Added

- Support building docker images for multiple architectures
- Support WASM to allow dynamic plugin

### Fixed

- Upgrade versions of some third-paty modules for security reasons
- Fix format issue in bfe_http/request_test.go
- Temporarily remove some test cases using legacy test data
- mod_tcp_keepalive: fix broken unit tests
- http2: close connections when receiving too many headers
- Fix readloop goroutine leak

### Removed

- The previous experimental dynamic plugin is deprecated

## [v1.6.0] - 2022-10-21

### Added

- Allow user to disable monitor port ([Issue #936](https://github.com/bfenetworks/bfe/issues/936))
- Support HTTP2 fingerprint ([Issue #1071](https://github.com/bfenetworks/bfe/issues/1071))
- Documents optimization

### Changed

- Optimize idle connection handling ([Pull #1044](https://github.com/bfenetworks/bfe/pull/1044))
- Performance optimize in smooth least connection balancing algorithm([Pull #1062](https://github.com/bfenetworks/bfe/pull/1062))
- Miscellaneous golang dependency updates
- Miscellaneous improvements in makefile and other CI tools

### Fixed

- mod_trust_clientip: fix incorrect private IP address range ([Issue #856](https://github.com/bfenetworks/bfe/issues/856))
- arm build error in golang 1.18

## [v1.6.0] - 2022-10-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.0
1.7.0
1 change: 1 addition & 0 deletions bfe_tls/handshake_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,7 @@ func TestHandshakeServerSNI(t *testing.T) {
runServerTestTLS12(t, test)
}


func TestResumption(t *testing.T) {
sessionFilePath := tempFile("")
defer os.Remove(sessionFilePath)
Expand Down
11 changes: 11 additions & 0 deletions docs/en_us/DOWNLOAD.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
We provide precompiled binaries for bfe components. [Download the latest release](https://github.com/bfenetworks/bfe/releases) of BFE for your platform.

## bfe v1.7.0

* 2025-01-19 [Release notes](https://github.com/bfenetworks/bfe/releases/tag/v1.7.0)

| File Name | OS | Arch | Size | SHA256 Checksum |
| ------------------------------------------------------------ | -------- | --------- | ------ | ------------------------------------------------------------ |
| [bfe_1.7.0_darwin_amd64.tar.gz](https://github.com/bfenetworks/bfe/releases/download/v1.7.0/bfe_1.7.0_darwin_amd64.tar.gz) | darwin | amd 64 | 12.2MB | ca8704784989cf84590552a0a641b284c7ff377fe81c78ad49ada04a364d950d |
| [bfe_1.7.0_linux_amd64.tar.gz](https://github.com/bfenetworks/bfe/releases/download/v1.7.0/bfe_1.7.0_linux_amd64.tar.gz) | linux | amd64 | 12.4MB | ef8886e8068c6323070e689da6d2958f0f129f63d96d14b3c426cdce20c2c0da |
| [bfe_1.7.0_linux_arm64.tar.gz](https://github.com/bfenetworks/bfe/releases/download/v1.7.0/bfe_1.7.0_linux_arm64.tar.gz) | linux | arm64 | 11.6MB | 53c0fe287ac93bca3d4454cfb22b5f0a11c47cd5bb51626453d4672852f17cb8 |
| [bfe_1.7.0_windows_amd64.tar.gz](https://github.com/bfenetworks/bfe/releases/download/v1.7.0/bfe_1.7.0_windows_amd64.tar.gz) | windows | amd64 | 12.5MB | 2579940f8a1854cb5de1f4bd6197e7615b53c784db1ef17ed5063fcfc1d82598 |

## bfe v1.6.0

* 2022-10-25 [Release notes](https://github.com/bfenetworks/bfe/releases/tag/v1.6.0)
Expand Down
3 changes: 3 additions & 0 deletions docs/mkdocs_en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ nav:
- 'mod_auth_request': 'modules/mod_auth_request/mod_auth_request.md'
- 'mod_block': 'modules/mod_block/mod_block.md'
- 'mod_compress': 'modules/mod_compress/mod_compress.md'
- 'mod_cors': 'modules/mod_cors/mod_cors.md'
- 'mod_doh': 'modules/mod_doh/mod_doh.md'
- 'mod_errors': 'modules/mod_errors/mod_errors.md'
- 'mod_geo': 'modules/mod_geo/mod_geo.md'
Expand All @@ -125,12 +126,14 @@ nav:
- 'mod_prison': 'modules/mod_prison/mod_prison.md'
- 'mod_redirect': 'modules/mod_redirect/mod_redirect.md'
- 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md'
- 'mod_secure_link': 'modules/mod_secure_link/mod_secure_link.md'
- 'mod_static': 'modules/mod_static/mod_static.md'
- 'mod_tag': 'modules/mod_tag/mod_tag.md'
- 'mod_tcp_keepalive': 'modules/mod_tcp_keepalive/mod_tcp_keepalive.md'
- 'mod_trace': 'modules/mod_trace/mod_trace.md'
- 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md'
- 'mod_userid': 'modules/mod_userid/mod_userid.md'
- 'mod_wasmplugin': 'modules/mod_wasmplugin/mod_wasmplugin.md'
- 'Operations':
- 'Command line options': 'operation/command.md'
- 'Environment variables': 'operation/env_var.md'
Expand Down
3 changes: 3 additions & 0 deletions docs/mkdocs_zh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ nav:
- 'mod_auth_request': 'modules/mod_auth_request/mod_auth_request.md'
- 'mod_block': 'modules/mod_block/mod_block.md'
- 'mod_compress': 'modules/mod_compress/mod_compress.md'
- 'mod_cors': 'modules/mod_cors/mod_cors.md'
- 'mod_doh': 'modules/mod_doh/mod_doh.md'
- 'mod_errors': 'modules/mod_errors/mod_errors.md'
- 'mod_geo': 'modules/mod_geo/mod_geo.md'
Expand All @@ -125,12 +126,14 @@ nav:
- 'mod_prison': 'modules/mod_prison/mod_prison.md'
- 'mod_redirect': 'modules/mod_redirect/mod_redirect.md'
- 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md'
- 'mod_secure_link': 'modules/mod_secure_link/mod_secure_link.md'
- 'mod_static': 'modules/mod_static/mod_static.md'
- 'mod_tag': 'modules/mod_tag/mod_tag.md'
- 'mod_tcp_keepalive': 'modules/mod_tcp_keepalive/mod_tcp_keepalive.md'
- 'mod_trace': 'modules/mod_trace/mod_trace.md'
- 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md'
- 'mod_userid': 'modules/mod_userid/mod_userid.md'
- 'mod_wasmplugin': 'modules/mod_wasmplugin/mod_wasmplugin.md'
- '运维管理':
- '命令行工具及参数': 'operation/command.md'
- '环境变量说明': 'operation/env_var.md'
Expand Down
11 changes: 11 additions & 0 deletions docs/zh_cn/DOWNLOAD.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
BFE提供预编译二进制文件供下载。也可在GitHub下载各平台[最新版本BFE](https://github.com/bfenetworks/bfe/releases)。

## bfe v1.7.0

* 2025-01-19 [发布说明](https://github.com/bfenetworks/bfe/releases/tag/v1.7.0)

| 文件名 | 操作系统 | 平台 | 大小 | SHA256检验和 |
| --------- | -------- | ---- | ---- | ------------ |
| [bfe_1.7.0_darwin_amd64.tar.gz](https://github.com/bfenetworks/bfe/releases/download/v1.7.0/bfe_1.7.0_darwin_amd64.tar.gz) | darwin | amd 64 | 12.2MB | ca8704784989cf84590552a0a641b284c7ff377fe81c78ad49ada04a364d950d |
| [bfe_1.7.0_linux_amd64.tar.gz](https://github.com/bfenetworks/bfe/releases/download/v1.7.0/bfe_1.7.0_linux_amd64.tar.gz) | linux | amd64 | 12.4MB | ef8886e8068c6323070e689da6d2958f0f129f63d96d14b3c426cdce20c2c0da |
| [bfe_1.7.0_linux_arm64.tar.gz](https://github.com/bfenetworks/bfe/releases/download/v1.7.0/bfe_1.7.0_linux_arm64.tar.gz) | linux | arm64 | 11.6MB | 53c0fe287ac93bca3d4454cfb22b5f0a11c47cd5bb51626453d4672852f17cb8 |
| [bfe_1.7.0_windows_amd64.tar.gz](https://github.com/bfenetworks/bfe/releases/download/v1.7.0/bfe_1.7.0_windows_amd64.tar.gz) | windows | amd64 | 12.5MB | 2579940f8a1854cb5de1f4bd6197e7615b53c784db1ef17ed5063fcfc1d82598 |

## bfe v1.6.0

* 2022-10-25 [发布说明](https://github.com/bfenetworks/bfe/releases/tag/v1.6.0)
Expand Down
Loading