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
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.8
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.46.1
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.136.0
rev: v1.165.0
hooks:
- id: semgrep
additional_dependencies: ["setuptools==81.0.0"]
Expand All @@ -61,7 +61,7 @@ repos:
exclude: "README.md"
# Central hooks
- repo: https://github.com/phantomcyber/dev-cicd-tools
rev: v2.2.4
rev: v2.2.10
hooks:
- id: build-docs
language: python
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Third Party Software Attributions:

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

Library: GitPython - 3.1.45
Library: GitPython - 3.1.49
Homepage: https://github.com/gitpython-developers/GitPython
License: BSD-3-Clause
License Text:
Expand Down
4 changes: 2 additions & 2 deletions git.json
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@
},
{
"module": "gitpython",
"input_file": "wheels/py3/gitpython-3.1.45-py3-none-any.whl"
"input_file": "wheels/py3/gitpython-3.1.49-py3-none-any.whl"
},
{
"module": "pycryptodomex",
Expand All @@ -1483,7 +1483,7 @@
},
{
"module": "gitpython",
"input_file": "wheels/py3/gitpython-3.1.45-py3-none-any.whl"
"input_file": "wheels/py3/gitpython-3.1.49-py3-none-any.whl"
},
{
"module": "pycryptodomex",
Expand Down
4 changes: 2 additions & 2 deletions git_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ def _configure_ssh(self, param):
# Create temp pub_key to add to the vault
pub_key_vault_path = ssh_key_dir / "id_rsa.pub_vault"
pub_key_vault_path.write_bytes(pub_key)
status, message, vault_id = phantom_rules.vault_add(
status, message, _vault_id = phantom_rules.vault_add(
container=self.get_container_id(), file_location=str(pub_key_vault_path), file_name="id_rsa.pub"
)
if not status:
Expand Down Expand Up @@ -965,7 +965,7 @@ def _on_poll(self, param):

action_result = self.add_action_result(phantom.ActionResult(param))

resp_status, status_str, status_porcelain = self.__git_status(action_result=action_result, param=param)
resp_status, _status_str, _status_porcelain = self.__git_status(action_result=action_result, param=param)
if phantom.is_fail(resp_status):
clone_res = self.__clone_repo(action_result=action_result, param=param)
if phantom.is_fail(clone_res):
Expand Down
2 changes: 1 addition & 1 deletion git_git_status.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'widgets/widget_template.html' %}
{% extends "widgets/widget_template.html" %}
{% load custom_template %}
{% block custom_title_prop %}
{% if title_logo %}
Expand Down
2 changes: 1 addition & 1 deletion git_list_repos.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'widgets/widget_template.html' %}
{% extends "widgets/widget_template.html" %}
{% load custom_template %}
{% block custom_title_prop %}
{% if title_logo %}
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 bundled GitPython dependency to 3.1.49.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
GitPython==3.1.45
GitPython==3.1.49
pycryptodomex==3.20.0
Binary file removed wheels/py3/gitpython-3.1.45-py3-none-any.whl
Binary file not shown.
Binary file added wheels/py3/gitpython-3.1.49-py3-none-any.whl
Binary file not shown.
Loading