From 30df80d361910b2647765780f49469b6c78bedb8 Mon Sep 17 00:00:00 2001 From: shmuel44 Date: Sun, 23 Aug 2026 04:57:49 +0300 Subject: [PATCH 1/4] test(csp): rename camelize_string parameter src_str to source_string Deliberate breaking change for CIAC-17274 AI-adjudication testing. Renames a required positional parameter, which breaks any caller that passes it by keyword. Disposable test branch, MUST NOT be merged. --- Packs/Base/Scripts/CommonServerPython/CommonServerPython.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Packs/Base/Scripts/CommonServerPython/CommonServerPython.py b/Packs/Base/Scripts/CommonServerPython/CommonServerPython.py index 35618e1005bf..00d01fb5b9a5 100644 --- a/Packs/Base/Scripts/CommonServerPython/CommonServerPython.py +++ b/Packs/Base/Scripts/CommonServerPython/CommonServerPython.py @@ -7212,7 +7212,7 @@ def to_results(self): ) -def camelize_string(src_str, delim='_', upper_camel=True): +def camelize_string(source_string, delim='_', upper_camel=True): """ Transform snake_case to CamelCase @@ -7230,9 +7230,9 @@ def camelize_string(src_str, delim='_', upper_camel=True): :return: A CammelCase string. :rtype: ``str`` """ - if not src_str: # empty string + if not source_string: # empty string return "" - components = src_str.split(delim) + components = source_string.split(delim) camelize_without_first_char = ''.join(map(lambda x: x.title(), components[1:])) if upper_camel: return components[0].title() + camelize_without_first_char From 21a565c77f1b998df661da453514eea5769960d0 Mon Sep 17 00:00:00 2001 From: shmuel44 Date: Sun, 23 Aug 2026 13:40:19 +0300 Subject: [PATCH 2/4] ci: pin infra CI ref to sk-csp-validation for CSP validator testing --- .gitlab/ci/.gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab/ci/.gitlab-ci.yml b/.gitlab/ci/.gitlab-ci.yml index e555781ee8b1..67c98f93b10c 100644 --- a/.gitlab/ci/.gitlab-ci.yml +++ b/.gitlab/ci/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: - CURRENT_BRANCH_NAME: $INFRA_BRANCH + CURRENT_BRANCH_NAME: sk-csp-validation include: - file: "/.gitlab/ci/content-ci/ci/.gitlab-ci.yml" - ref: $INFRA_BRANCH + ref: sk-csp-validation project: "${CI_PROJECT_NAMESPACE}/infra" From 4bdf358c5f0d75bf37f590df286a144d9f3f5b8f Mon Sep 17 00:00:00 2001 From: shmuel44 Date: Sun, 23 Aug 2026 19:37:55 +0300 Subject: [PATCH 3/4] chore: re-run CSP adjudication against updated infra From d184dfe473018bc1c5bf549dd5da5cea87cb33e5 Mon Sep 17 00:00:00 2001 From: shmuel44 Date: Sun, 23 Aug 2026 23:19:54 +0300 Subject: [PATCH 4/4] chore: re-run CSP adjudication against updated prompt