Skip to content

Commit b7a4a8e

Browse files
author
a.churin
committed
v2.0.2 changelog
1 parent 37992dc commit b7a4a8e

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# 📦 Release Notes — `getsploit` v2.0.2
2+
3+
## ✅ Python Compatibility
4+
- Minimum supported Python version is now **3.10+**.
5+
6+
## 🔐 API Key Management
7+
You can now provide your API key in several ways:
8+
9+
1. Save the key for the current user:
10+
```bash
11+
getsploit --set-key YOUR-KEY
12+
```
13+
14+
2. Alternatively, pass the key:
15+
16+
* via the `--api-key` command-line option
17+
* or through the `VULNERS_API_KEY` environment variable
18+
19+
**Key resolution priority:**
20+
21+
1. If `--api-key` is provided, it takes precedence.
22+
2. If not, the `VULNERS_API_KEY` environment variable is used.
23+
3. If neither is set, the saved key from `--set-key` is used.
24+
25+
## 🔍 Query Behavior
26+
27+
* Search queries are now passed **as-is**, without modification.
28+
29+
### 🔎 Search in title only:
30+
31+
```bash
32+
getsploit title:wordpress AND title:"4.7.0"
33+
```
34+
35+
### 🔎 Search across all fields:
36+
37+
```bash
38+
getsploit wordpress sql injection
39+
```
40+
41+
⚠️ When searching in the local database, queries must be compatible with **FTS4** (Full-Text Search v4).
42+
43+
## 🏷 Available Search Fields
44+
45+
* `id`
46+
* `title`
47+
* `description`
48+
* `sourceData`
49+
* `published`

0 commit comments

Comments
 (0)