Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c99cbbe
adding missing permissions
tpurschke Nov 5, 2025
9796718
versioning
tpurschke Nov 5, 2025
24b4f40
fixes2
tpurschke Nov 7, 2025
d58e233
do not pull if local docker image exists
tpurschke Nov 7, 2025
c6e4dbf
Merge branch 'develop' into fix/hotfix-missing-mw-permissions-for-own…
tpurschke Nov 10, 2025
ed94978
sonar: fix duplicate lines
tpurschke Nov 10, 2025
c9289e4
Merge branch 'fix/hotfix-missing-mw-permissions-for-owner-table' of h…
tpurschke Nov 10, 2025
26764a0
fix query names
tpurschke Nov 10, 2025
269b59c
adding dns client lookup to test fix
tpurschke Nov 12, 2025
27bf26b
fix play
tpurschke Nov 12, 2025
8b7ba62
Merge pull request #3912 from tpurschke/fix/develop/new-docker-syntax
tpurschke Nov 12, 2025
024ca4a
Merge branch 'develop' of https://github.com/CactuseSecurity/firewall…
tpurschke Nov 12, 2025
9ef871c
variable linux architecture
tpurschke Nov 12, 2025
d074bb1
Merge branch 'develop' of https://github.com/CactuseSecurity/firewall…
tpurschke Nov 12, 2025
0b3a993
variable arch
tpurschke Nov 12, 2025
ea42161
typo
tpurschke Nov 12, 2025
ba473a0
Merge branch 'importer-rework' of https://github.com/CactuseSecurity/…
tpurschke Nov 12, 2025
560a97a
add missing arch variable to inventory
tpurschke Nov 12, 2025
c6d5bd3
refactor: Remove background of maintenance image
Laennart Nov 13, 2025
7ad7312
Merge pull request #3888 from tpurschke/fix/hotfix-missing-mw-permiss…
tpurschke Nov 14, 2025
7ae2429
Merge branch 'develop' into refactor/remove-background-of-maintenance…
tpurschke Nov 15, 2025
0ab7065
Merge pull request #3916 from Laennart/refactor/remove-background-of-…
tpurschke Nov 15, 2025
ba52f9d
Merge branch 'develop' of https://github.com/CactuseSecurity/firewall…
tpurschke Nov 15, 2025
92ab4a0
cleanup
tpurschke Nov 15, 2025
182173c
tests
tpurschke Nov 15, 2025
abbb2ee
Merge branch 'develop' of https://github.com/CactuseSecurity/firewall…
tpurschke Nov 15, 2025
215cc3f
Merge branch 'importer-rework' into merge/rework-dev-to-rework
tpurschke Nov 15, 2025
c6db329
.
tpurschke Nov 15, 2025
4ecb866
Merge branch 'merge/rework-dev-to-rework' of https://github.com/tpurs…
tpurschke Nov 15, 2025
6840119
Merge pull request #3922 from tpurschke/fix/revers-lookup-with-multip…
tpurschke Nov 15, 2025
4cd1f6d
download hasura cli via github api and its id
tpurschke Nov 16, 2025
240ec44
Merge branch 'develop' of https://github.com/CactuseSecurity/firewall…
tpurschke Nov 16, 2025
89bc85b
upgrade to hasura 2.48.6
tpurschke Nov 16, 2025
d2f82a4
Merge pull request #3924 from tpurschke/fix/develop/github-hasura-dow…
tpurschke Nov 16, 2025
acef3bd
Merge branch 'develop' of https://github.com/CactuseSecurity/firewall…
tpurschke Nov 16, 2025
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
4 changes: 3 additions & 1 deletion documentation/revision-history-develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,9 @@ bugfix release:
- add manageable ownerLifeCycleState menu
- fix two modelling ui glitches

# 8.9.3 - 05.11.2025 DEVELOP
- hotfix missing permissions for app data import in certain constellations

# 9.0 - 30.06.2025 DEVELOP
- rule to gateway mapping 1:n
- add report output for rule to gw mapping
Expand All @@ -328,4 +331,3 @@ make sure to place your venv outside the repo, e.g. into /home/user/dev/venv
source installer-venv/bin/activate
pip install -r path-to-repo/roles/importer/files/importer/requirements.txt
- also reducing db listener to localhost

9 changes: 9 additions & 0 deletions documentation/revision-history-main.md
Original file line number Diff line number Diff line change
Expand Up @@ -559,3 +559,12 @@ hotfix release
- apache config (information leakage)
- listeners (hasura, postgres)
- log santisation
# 8.9.1 - 02.10.2025 MAIN
- owner-recertification

# 8.9.2 - 17.10.2025 MAIN
- add ownerLifeCycleState
- add manageable ownerLifeCycleState menu

# 8.9.3 - 05.11.2025 MAIN
- hotfix missing permissions for app data import in certain constellations
1 change: 1 addition & 0 deletions inventory/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ debian_testing_version: "12"
# should actually be 13 but microsoft does not yet provide https://packages.microsoft.com/config/debian/13
debian_testing_release_name: trixie
arch: x86_64
linux_architecture: amd64
redhat_major_version: "8"
redhat_arch: "{{ redhat_major_version }}-{{ arch }}"

Expand Down
2 changes: 1 addition & 1 deletion inventory/group_vars/apiserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ api_hasura_admin_test_password: "not4production"
api_user_email: "{{ api_user }}@{{ api_network_listening_ip_address }}"
api_home: "{{ fworch_home }}/api"
api_hasura_cli_bin: "{{ fworch_home }}/api/bin/hasura"
api_hasura_version: "v2.48.5"
api_hasura_version: "v2.48.6"
api_project_name: api
api_no_metadata: false
api_rollback_is_running: false
Expand Down
36 changes: 23 additions & 13 deletions roles/api/files/replace_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10782,20 +10782,25 @@
"check": {},
"columns": [
"active",
"app_id_external",
"common_service_possible",
"is_default",
"recert_active",
"app_id_external",
"criticality",
"dn",
"group_dn",
"id",
"import_source",
"is_default",
"last_recert_check",
"last_recertifier_dn",
"name",
"recert_active",
"recert_check_params",
"id",
"last_recertifier",
"owner_lifecycle_state_id",
"recert_interval",
"tenant_id"
"tenant_id",
"last_recert_check",
"last_recertified",
"next_recert_date"
]
},
"comment": ""
Expand Down Expand Up @@ -11192,20 +11197,25 @@
"permission": {
"columns": [
"active",
"app_id_external",
"common_service_possible",
"is_default",
"recert_active",
"app_id_external",
"criticality",
"dn",
"group_dn",
"id",
"import_source",
"is_default",
"last_recert_check",
"last_recertifier_dn",
"name",
"recert_active",
"recert_check_params",
"id",
"last_recertifier",
"owner_lifecycle_state_id",
"recert_interval",
"tenant_id"
"tenant_id",
"last_recert_check",
"last_recertified",
"next_recert_date"
],
"filter": {},
"check": null
Expand Down Expand Up @@ -28867,4 +28877,4 @@
]
}
}
}
}
Loading
Loading