Skip to content

Commit e8fe570

Browse files
committed
docs: update changelog and version
1 parent 808102e commit e8fe570

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
### Fixed
1212
### Docs
1313

14+
## [1.4.0] - 2023-11-29
15+
### Added
16+
- Config option to use X-Forwarded-For or X-Real-IP header as client IP
17+
- Config option to whitelist client IPs for both websocket and metrics endpoints
18+
- Config option to enable system metrics (cpu, memory, etc.)
19+
1420
## [1.3.2] - 2023-11-28
1521
### Fixed
1622
- Memory leak related to clients disconnecting from the websocket not being handled properly
@@ -72,7 +78,8 @@ Fixed the connection issue due to the offline Google loglist urls.
7278
## [1.0.0] - 2022-08-08
7379
Initial release! First stable version of certstream-server-go is published as v1.0.0
7480

75-
[unreleased]: https://github.com/d-Rickyy-b/certstream-server-go/compare/v1.3.2...HEAD
81+
[unreleased]: https://github.com/d-Rickyy-b/certstream-server-go/compare/v1.4.0...HEAD
82+
[1.4.0]: https://github.com/d-Rickyy-b/certstream-server-go/compare/v1.3.2...v1.4.0
7683
[1.3.2]: https://github.com/d-Rickyy-b/certstream-server-go/compare/v1.3.1...v1.3.2
7784
[1.3.1]: https://github.com/d-Rickyy-b/certstream-server-go/compare/v1.3.0...v1.3.1
7885
[1.3.0]: https://github.com/d-Rickyy-b/certstream-server-go/compare/v1.2.2...v1.3.0

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
var (
1515
AppConfig Config
16-
Version = "1.3.0"
16+
Version = "1.4.0"
1717
)
1818

1919
type ServerConfig struct {

0 commit comments

Comments
 (0)