Skip to content
Open
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ default_stages: [pre-commit]
# This is a template for connector pre-commit hooks
repos:
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v4.1.0
rev: v4.4.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
args: [--verbose]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-merge-conflict
- id: end-of-file-fixer
Expand All @@ -27,13 +27,13 @@ repos:
- id: check-json
- id: check-yaml
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.7
rev: v0.16.3
hooks:
- id: ruff
args: [ "--fix", "--unsafe-fixes"] # Allow unsafe fixes (ruff pretty strict about what it can fix)
- id: ruff-format
- repo: https://github.com/djlint/djLint
rev: v1.36.4
rev: v1.44.2
hooks:
- id: djlint-reformat-django
- id: djlint-django
Expand All @@ -43,12 +43,12 @@ repos:
- id: soar-app-linter
args: ["--single-repo", "--message-level", "error"]
- repo: https://github.com/hukkin/mdformat
rev: 0.7.22
rev: 1.0.0
hooks:
- id: mdformat
exclude: "release_notes/.*"
- repo: https://github.com/returntocorp/semgrep
rev: v1.89.0
rev: v1.165.0
hooks:
- id: semgrep
language_version: python3.13
Expand All @@ -62,7 +62,7 @@ repos:
exclude: "README.md"
# Central hooks
- repo: https://github.com/phantomcyber/dev-cicd-tools
rev: v2.1.6
rev: v2.2.9
hooks:
- id: build-docs
language: python
Expand Down
40 changes: 5 additions & 35 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Third Party Software Attributions:

@@@@============================================================================

Library: Authlib - 1.7.2
Library: Authlib - 1.7.1
Homepage: https://github.com/authlib/authlib
License: BSD License
License Text:
Expand Down Expand Up @@ -352,36 +352,6 @@ permanent authorization for you to choose that version for the
Library.


@@@@============================================================================

Library: annotated-doc - 0.0.4
Homepage: https://github.com/fastapi/annotated-doc
License: MIT
License Text:

The MIT License (MIT)

Copyright (c) 2025 Sebastián Ramírez

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


@@@@============================================================================

Library: annotated-types - 0.7.0
Expand Down Expand Up @@ -3388,7 +3358,7 @@ OTHER DEALINGS IN THE SOFTWARE.

@@@@============================================================================

Library: rich - 15.0.0
Library: rich - 14.3.4
Homepage: https://github.com/Textualize/rich
License: MIT License
License Text:
Expand Down Expand Up @@ -3438,7 +3408,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

@@@@============================================================================

Library: splunk-soar-sdk - 3.22.2
Library: splunk-soar-sdk - 4.1.2
Homepage: https://github.com/phantomcyber/splunk-soar-sdk
License: Apache-2.0
License Text:
Expand Down Expand Up @@ -3951,9 +3921,9 @@ License Text:

@@@@============================================================================

Library: typer - 0.26.7
Library: typer - 0.17.5
Homepage: https://github.com/fastapi/typer
License: MIT
License: MIT License
License Text:

The MIT License (MIT)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires-python = ">=3.13, <3.15"
authors = [
]
dependencies = [
"splunk-soar-sdk>=3.22.2",
"splunk-soar-sdk>=4.1.2",
]

[tool.soar.app]
Expand Down
2 changes: 2 additions & 0 deletions release_notes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
**Unreleased**

* Updated the Splunk SOAR SDK dependency to version 4.1.2 while preserving existing action read-only declarations.
8 changes: 8 additions & 0 deletions src/actions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,49 +86,57 @@ def register_actions(app: App) -> App:
description="Retrieve an issue for the GitHub repository",
action_type="investigate",
render_as="table",
read_only=True,
)
app.register_action(
action=list_comments,
description="List comments for an issue on the GitHub repository",
action_type="investigate",
render_as="table",
read_only=True,
)
app.register_action(
action=list_events,
description="List events performed by a user",
action_type="investigate",
verbose="Action will list a maximum of 300 events. Only events from the past 90 days will be listed.",
render_as="table",
read_only=True,
)
app.register_action(
action=list_issues,
description="Get a list of issues for the GitHub repository",
action_type="investigate",
render_as="table",
read_only=True,
)
app.register_action(
action=list_organizations,
description="List all organizations",
action_type="investigate",
render_as="table",
read_only=True,
)
app.register_action(
action=list_repos,
description="List all repos of an organization",
action_type="investigate",
render_as="table",
read_only=True,
)
app.register_action(
action=list_teams,
description="List all teams of an organization",
action_type="investigate",
render_as="table",
read_only=True,
)
app.register_action(
action=list_users,
description="List users of an organization",
action_type="investigate",
render_as="table",
read_only=True,
)
app.register_action(
action=remove_collaborator,
Expand Down
41 changes: 17 additions & 24 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading