Skip to content

Commit 5ec6958

Browse files
authored
Merge pull request #192 from intelowlproject/develop
4.4.4
2 parents cea2726 + ca7ae35 commit 5ec6958

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

.flake8

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ ignore =
44
W503, # line break before binary operator
55
E231, # missing whitespace after ',' (caused by black style)
66
W605, # invalid escape sequence (caused by regex)
7+
W291 # trailing whitespace
78
exclude =
89
setup.py
910
*venv*

.github/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [4.4.4](https://github.com/intelowlproject/pyintelowl/releases/tag/4.4.4)
4+
- Little fixes
5+
36
## [4.4.3](https://github.com/intelowlproject/pyintelowl/releases/tag/4.4.3)
47
- Fixed client results management in case of errors
58
- Removed support for Python 3.7

.github/dependabot.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,11 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
day: "tuesday"
78
target-branch: "develop"
8-
open-pull-requests-limit: 1
9+
open-pull-requests-limit: 5
10+
ignore:
11+
# ignore all patch updates since we are using ~=
12+
# this does not work for security updates
13+
- dependency-name: "*"
14+
update-types: [ "version-update:semver-patch" ]

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import os
1414
import sys
1515

16-
VERSION = "4.4.3"
16+
VERSION = "4.4.4"
1717
GITHUB_URL = "https://github.com/intelowlproject/pyintelowl"
1818

1919
sys.path.append(os.path.abspath("../"))

pyintelowl/pyintelowl.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -507,16 +507,17 @@ def __send_analysis_request(self, data=None, files=None, playbook_mode=False):
507507
errors = answer.get("errors", {})
508508
if self.cli:
509509
info_log = f"""New Job running..
510-
ID: {answer['job_id']} | Status: [u blue]{answer['status']}[/].
510+
ID: {answer.get('job_id')} |
511+
Status: [u blue]{answer.get('status')}[/].
511512
Got {len(warnings)} warnings:
512513
[i yellow]{warnings if warnings else None}[/]
513514
Got {len(errors)} errors:
514515
[i red]{errors if errors else None}[/]
515516
"""
516517
else:
517518
info_log = (
518-
f"New Job running.. ID: {answer['job_id']} "
519-
f"| Status: {answer['status']}."
519+
f"New Job running.. ID: {answer.get('job_id')} "
520+
f"| Status: {answer.get('status')}."
520521
f" Got {len(warnings)} warnings:"
521522
f" {warnings if warnings else None}"
522523
f" Got {len(errors)} errors:"

pyintelowl/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.4.3"
1+
__version__ = "4.4.4"

0 commit comments

Comments
 (0)