Skip to content

Commit d43e2b3

Browse files
committed
Release v0.8.54: version bump
- Updated version from 0.8.53 to 0.8.54 - Added release notes for Issue #45 fix (multi-parameter devicesearch) - Updated .gitignore to exclude API PDF documentation files - Verified all version references updated correctly
1 parent 89a4db7 commit d43e2b3

3 files changed

Lines changed: 6 additions & 56 deletions

File tree

.gitignore

Lines changed: 3 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,3 @@
1-
# Ignore VS Code history extension files
2-
.history/*
3-
# Python package files
4-
__pycache__/
5-
*.py[cod]
6-
*$py.class
7-
*.so
8-
.Python
9-
env/
10-
build/
11-
develop-eggs/
12-
dist/
13-
downloads/
14-
eggs/
15-
.eggs/
16-
lib/
17-
lib64/
18-
parts/
19-
sdist/
20-
var/
21-
wheels/
22-
*.egg-info/
23-
.installed.cfg
24-
*.egg
25-
darktrace_sdk.egg-info/
26-
27-
# Virtual environments
28-
test_env/
29-
venv/
30-
ENV/
31-
32-
# IDE files
33-
.idea/
34-
.vscode/
35-
*.swp
36-
*.swo
37-
*.cursor/
38-
39-
# OS specific files
40-
.DS_Store
41-
Thumbs.db
42-
43-
# Project specific files
44-
Darktrace_API_Guide.txt
45-
fix_modules.py
46-
fix_syntax.py
47-
update_endpoints.py
48-
check_endpoints.py
49-
commit_and_push.sh
50-
generate_docs.py
51-
52-
# Test scripts with credentials
53-
test_advanced_search_post.py
54-
update_version.py
1+
# API Guide PDF (for reference only, not to be committed)
2+
*.pdf
3+
*.pdf:Zone.Identifier

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
---
1313

1414

15-
## 🆕 Latest Updates (v0.8.53)
15+
## 🆕 Latest Updates (v0.8.54)
1616

17+
- **Fix: Multi-parameter devicesearch query format (fixes #45)** - Changed query parameter joining from explicit ' AND ' to space separation per Darktrace API specification
1718
- **Fix: ensure host URL includes protocol (default to https if missing)**
1819

1920
---

darktrace/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Version information for darktrace-sdk
22
# This is the single source of truth for version information
33
# after that the script update_version.py needs to be run
4-
__version__ = "0.8.53"
4+
__version__ = "0.8.54"

0 commit comments

Comments
 (0)