File tree 3 files changed +22
-2
lines changed
3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,26 @@ If you don't want to provide the Socket API Token every time then you can use th
76
76
| --timeout | False | | Timeout in seconds for API requests |
77
77
| --include-module-folders | False | False | If enabled will include manifest files from folders like node_modules |
78
78
79
+ # ### Plugins
80
+
81
+ The Python CLI currently Supports the following plugins:
82
+
83
+ - Jira
84
+
85
+ # #### Jira
86
+
87
+ | Environment Variable | Required | Default | Description |
88
+ | :------------------------| :---------| :--------| :-----------------------------------|
89
+ | SOCKET_JIRA_ENABLED | False | false | Enables/Disables the Jira Plugin |
90
+ | SOCKET_JIRA_CONFIG_JSON | True | None | Required if the Plugin is enabled. |
91
+
92
+ Example ` SOCKET_JIRA_CONFIG_JSON` value
93
+
94
+ ` ` ` ` json
95
+ {
" url" :
" https://REPLACE_ME.atlassian.net" ,
" email" :
" [email protected] " ,
" api_token" :
" REPLACE_ME" ,
" project" :
" REPLACE_ME" }
96
+ ` ` ` `
97
+
98
+
79
99
# # File Selection Behavior
80
100
81
101
The CLI determines which files to scan based on the following logic:
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
6
7
7
[project ]
8
8
name = " socketsecurity"
9
- version = " 2.0.49 "
9
+ version = " 2.0.50 "
10
10
requires-python = " >= 3.10"
11
11
license = {"file" = " LICENSE" }
12
12
dependencies = [
Original file line number Diff line number Diff line change 1
1
__author__ = 'socket.dev'
2
- __version__ = '2.0.49 '
2
+ __version__ = '2.0.50 '
You can’t perform that action at this time.
0 commit comments