Skip to content
Merged
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
9 changes: 2 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# UTMStack 10.6.0 Release Notes
# UTMStack 10.6.1 Release Notes
## Bug Fixes
- Reorganized GeoIP database loading into more modular functions for improved maintainability and code readability. Simplified caching, removed unused database function, and restructured rule-handling logic. Improved consistency by standardizing variable names and logging practices.
- Removed unused docker volume configuration for GeoIp.
- Fixed Kernel modules weren't loaded because incorrect function call.

## New Features
- Introduced automatic threat intelligence rules to detect blacklisted ips, hostnames and domains.
- Fixed ISM policy to ensure snapshots include only indices older than 24 hours.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public void updatePolicy(PolicySettings settings) {
.ifPresent(state -> {
Transition transition = state.getTransitions().get(0);
transition.setStateName(Constants.STATE_BACKUP);
transition.setConditions(null);
transition.setConditions(new TransitionCondition("24h"));
});

// open -> safe_delete
Expand All @@ -178,6 +178,7 @@ public void updatePolicy(PolicySettings settings) {
.ifPresent(state -> {
Transition transition = state.getTransitions().get(0);
transition.setStateName(Constants.STATE_OPEN);
transition.setConditions(new TransitionCondition("24h"));
});

// open -> delete
Expand Down
2 changes: 1 addition & 1 deletion version.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 10.6.0
version: 10.6.1