-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* API client: * Add ip_multi command to support bulk IP Context lookups * Fix issue with "include_invalid" option on quick command failing with "riot" key missing * CLI: * Add ip-multi command to support bulk IP Context lookups * Add support for comma separated IP lists for ip-multi and quick commands * Add size and scroll arguments for query and stats command * Update quick command to not error completely when non-routable IP is passed as an input in a list * Dependencies: * Added colorama dependency * Update Click to 8.0.3 * Updated cachetools to 5.0.0 * Updated jinja to 3.0.3 * Updated more-itertools to 8.12.0 * Updated requests to 2.27.1 * Updated structlog to 21.5.0
- Loading branch information
1 parent
d512ace
commit 21ef5e4
Showing
25 changed files
with
641 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 1.1.0 | ||
current_version = 1.2.0 | ||
tag = False | ||
commit = False | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Github codeowners file to improve our lives when selecting users for PR's | ||
|
||
* @bradchiappetta @elliottminns @Obsecurus @superducktoes @nathanqthai |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,6 +90,8 @@ venv/ | |
venv_py2/ | ||
venv3/ | ||
ENV/ | ||
bin/ | ||
pyvenv.cfg | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
Click==8.0.1 | ||
Click==8.0.3 | ||
ansimarkup==1.4.0 | ||
cachetools==4.2.2;python_version>='3' | ||
cachetools==5.0.0;python_version>='3' | ||
colorama==0.4.4 | ||
click-default-group==1.2.2 | ||
click-repl==0.2.0 | ||
dict2xml==1.7.0;python_version>='3' | ||
ipaddress==1.0.23 | ||
jinja2==2.11.3;python_version=='3.5' # pyup: ignore | ||
jinja2==3.0.1;python_version>='3.6' | ||
more-itertools==8.8.0;python_version>='3' | ||
requests==2.25.1 | ||
jinja2==3.0.3;python_version>='3.6' | ||
more-itertools==8.12.0;python_version>='3' | ||
requests==2.27.1 | ||
six==1.16.0 | ||
structlog==20.1.0;python_version=='3.5' # pyup: ignore | ||
structlog==21.1.0;python_version>='3.6' | ||
structlog==21.5.0;python_version>='3.6' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Requirements needed to develop the application | ||
-r test.txt | ||
advbumpversion==1.2.0 | ||
ipython==7.25.0;python_version>='3' | ||
pre-commit==2.13.0 | ||
tox==3.23.1 | ||
ipython==8.0.1;python_version>='3' | ||
pre-commit==2.17.0 | ||
tox==3.24.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Requirements needed to build the documentation | ||
-r common.txt | ||
Sphinx==4.0.2 | ||
sphinx-click==3.0.1 | ||
sphinx-rtd-theme==0.5.2 | ||
Sphinx==4.4.0 | ||
sphinx-click==3.0.3 | ||
sphinx-rtd-theme==1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
black==21.6b0;python_version>='3.6' | ||
flake8==3.9.2 | ||
black==22.1.0;python_version>='3.6' | ||
flake8==3.9.2;python_version=='3.5' # pyup: ignore | ||
flake8==4.0.1;python_version>='3.6' | ||
isort==4.3.21;python_version=='3.5' # pyup: ignore | ||
isort==5.9.1;python_version>='3.6' | ||
isort==5.10.1;python_version>='3.6' | ||
mock==3.0.5;python_version=='3.5' # pyup: ignore | ||
mock==4.0.3;python_version>='3.6' | ||
pylint==2.6.2;python_version=='3.5' # pyup: ignore | ||
pylint==2.9.0;python_version>='3.6' | ||
pytest-cov==2.12.1 | ||
pylint==2.12.2;python_version>='3.6' | ||
pytest-cov==2.12.1;python_version=='3.5' # pyup: ignore | ||
pytest-cov==3.0.0;python_version>='3.6' | ||
pytest==6.1.2;python_version=='3.5' # pyup: ignore | ||
pytest==6.2.4;python_version>='3.6' | ||
pytest==6.2.5;python_version>='3.6' | ||
restructuredtext-lint==1.3.2 | ||
twine==3.4.1;python_version>='3.6' | ||
yamllint==1.26.1;python_version>='3' | ||
twine==3.7.1;python_version>='3.6' | ||
yamllint==1.26.3;python_version>='3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
max-complexity = 10 | ||
ignore = C901,W503 | ||
|
||
[isort] | ||
multi_line_output = 3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
__maintainer__ = "GreyNoise Intelligence" | ||
__email__ = "[email protected]" | ||
__status__ = "BETA" | ||
__version__ = "1.1.0" | ||
__version__ = "1.2.0" |
Oops, something went wrong.