Skip to content

Commit b5b7d6a

Browse files
committed
Update GraphQLer version
1 parent d071634 commit b5b7d6a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ options:
6262
mode to run the program in
6363
--auth AUTH authentication token Example: 'Bearer arandompat-abcdefgh'
6464
--proxy PROXY proxy to use for requests (ie. http://127.0.0.1:8080)
65-
--node NODE node to run
65+
--node NODE node to run (only used in single mode)
6666
--version display version
6767
```
6868

graphqler/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def run_single_mode(path: str, url: str, name: str):
114114
parser.add_argument("--mode", help="mode to run the program in", choices=['compile', 'fuzz', 'idor', 'run', 'single'], required=True)
115115
parser.add_argument("--auth", help="authentication token Example: 'Bearer arandompat-abcdefgh'", required=False)
116116
parser.add_argument("--proxy", help="proxy to use for requests (ie. http://127.0.0.1:8080)", required=False)
117-
parser.add_argument("--node", help="node to run", required=False)
117+
parser.add_argument("--node", help="node to run (only used in single mode)", required=False)
118118
parser.add_argument("--version", help="display version", action="store_true")
119119
args = parser.parse_args()
120120

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ exclude = '''
1717

1818
[tool.poetry]
1919
name = "GraphQLer"
20-
version = "2.1.8"
20+
version = "2.1.9"
2121
description = "A dependency-aware GraphQL API fuzzing tool"
2222
authors = ["Omar2535 <omar2535@alumni.ubc.ca>"]
2323
license = "MIT"

0 commit comments

Comments
 (0)