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
2 changes: 1 addition & 1 deletion .github/workflows/v10-principal-multi-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
GOOS=windows GOARCH=amd64 go build -o utmstack_agent_service.exe -v .
GOOS=windows GOARCH=arm64 go build -o utmstack_agent_service_arm64.exe -v .

if [[ {{ needs.setup_deployment.outputs.tag }} != "v10-dev" ]]; then
if [[ ${{ needs.setup_deployment.outputs.tag }} != "v10-dev" ]]; then
echo "Signing Windows Agent..."
FILES_TO_SIGN=("utmstack_agent_service.exe" "utmstack_agent_service_arm64.exe")
for file in "${FILES_TO_SIGN[@]}"; do
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/v11-principal-production-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:
version_tag: ${{ github.event.inputs.version_tag }}
event_processor_tag: ${{ github.event.inputs.event_processor_tag }}
environment: prod
ghcr_token: ${{ secrets.GITHUB_TOKEN }}
secrets:
AGENT_SECRET_PREFIX: ${{ secrets.AGENT_SECRET_PREFIX }}
SIGNER_TOKEN: ${{ secrets.SIGNER_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# UTMStack 10.8.5 Release Notes
# UTMStack 10.8.6 Release Notes

- Expanded the exclusion dictionary for malicious IP connection logs to reduce false positives.
- Automatically close alerts with SOC-AI when the feature is enabled.
- Added support for older Linux versions (RedHat 7, RedHat 8, Ubuntu 20.04).
3 changes: 3 additions & 0 deletions correlation/ti/ti.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ func blocked(log string) bool {
"deny",
"timeout",
"closed",
"close",
"client-rst",
"server-rst",
}

for _, e := range exclusionList {
Expand Down
2 changes: 1 addition & 1 deletion version.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 10.8.5
version: 10.8.6
Loading