aiwaf 0.1.9.1.5__py3-none-any.whl → 0.1.9.1.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aiwaf might be problematic. Click here for more details.
- aiwaf/__init__.py +1 -1
- aiwaf/management/commands/check_dependencies.py +17 -1
- {aiwaf-0.1.9.1.5.dist-info → aiwaf-0.1.9.1.6.dist-info}/METADATA +7 -1
- {aiwaf-0.1.9.1.5.dist-info → aiwaf-0.1.9.1.6.dist-info}/RECORD +7 -7
- {aiwaf-0.1.9.1.5.dist-info → aiwaf-0.1.9.1.6.dist-info}/WHEEL +0 -0
- {aiwaf-0.1.9.1.5.dist-info → aiwaf-0.1.9.1.6.dist-info}/licenses/LICENSE +0 -0
- {aiwaf-0.1.9.1.5.dist-info → aiwaf-0.1.9.1.6.dist-info}/top_level.txt +0 -0
aiwaf/__init__.py
CHANGED
|
@@ -498,7 +498,9 @@ class Command(BaseCommand):
|
|
|
498
498
|
else u['package']['name']
|
|
499
499
|
for u in safe_upgrades
|
|
500
500
|
])
|
|
501
|
-
self.stdout.write(f"
|
|
501
|
+
self.stdout.write(f"Commands that would be executed:")
|
|
502
|
+
self.stdout.write(f" {upgrade_cmd}")
|
|
503
|
+
self.stdout.write(f" pip cache purge # Clear pip cache after upgrades")
|
|
502
504
|
return []
|
|
503
505
|
return []
|
|
504
506
|
else:
|
|
@@ -537,6 +539,20 @@ class Command(BaseCommand):
|
|
|
537
539
|
self.stdout.write(f"\n🎉 Upgrade complete: {success_count}/{len(safe_upgrades)} packages upgraded successfully")
|
|
538
540
|
|
|
539
541
|
if success_count > 0:
|
|
542
|
+
# Clear pip cache after successful upgrades
|
|
543
|
+
self.stdout.write(self.style.HTTP_INFO("\n🧹 Clearing pip cache..."))
|
|
544
|
+
try:
|
|
545
|
+
cache_result = subprocess.run(['pip', 'cache', 'purge'],
|
|
546
|
+
capture_output=True, text=True, timeout=60)
|
|
547
|
+
if cache_result.returncode == 0:
|
|
548
|
+
self.stdout.write(self.style.SUCCESS(" ✅ Pip cache cleared successfully"))
|
|
549
|
+
else:
|
|
550
|
+
self.stdout.write(self.style.WARNING(f" ⚠️ Cache clear warning: {cache_result.stderr}"))
|
|
551
|
+
except subprocess.TimeoutExpired:
|
|
552
|
+
self.stdout.write(self.style.WARNING(" ⚠️ Pip cache clear timed out"))
|
|
553
|
+
except Exception as e:
|
|
554
|
+
self.stdout.write(self.style.WARNING(f" ⚠️ Could not clear pip cache: {e}"))
|
|
555
|
+
|
|
540
556
|
self.stdout.write(self.style.HTTP_INFO("\n💡 Recommendations after upgrade:"))
|
|
541
557
|
self.stdout.write(" 1. Run tests to ensure everything works correctly")
|
|
542
558
|
self.stdout.write(" 2. Run 'python manage.py check_dependencies' again to verify")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiwaf
|
|
3
|
-
Version: 0.1.9.1.
|
|
3
|
+
Version: 0.1.9.1.6
|
|
4
4
|
Summary: AI-powered Web Application Firewall
|
|
5
5
|
Home-page: https://github.com/aayushgauba/aiwaf
|
|
6
6
|
Author: Aayush Gauba
|
|
@@ -249,6 +249,7 @@ python manage.py check_dependencies --upgrade --check-security --update-requirem
|
|
|
249
249
|
- ✅ **Dry run mode** for testing upgrade plans
|
|
250
250
|
- ✅ **AIWAF compatibility validation**
|
|
251
251
|
- ✅ **Automatic requirements.txt updates** after successful upgrades
|
|
252
|
+
- ✅ **Pip cache clearing** to prevent cache-related issues
|
|
252
253
|
|
|
253
254
|
**Safe Upgrade System:**
|
|
254
255
|
|
|
@@ -305,6 +306,9 @@ The upgrade system is designed to maintain AIWAF stability while keeping your pa
|
|
|
305
306
|
|
|
306
307
|
🎉 Upgrade complete: 2/2 packages upgraded successfully
|
|
307
308
|
|
|
309
|
+
🧹 Clearing pip cache...
|
|
310
|
+
✅ Pip cache cleared successfully
|
|
311
|
+
|
|
308
312
|
📝 Updating requirements.txt...
|
|
309
313
|
📋 Backup created: requirements.txt.backup
|
|
310
314
|
📦 pandas: pandas>=1.3 → pandas>=1.5.3
|
|
@@ -323,6 +327,7 @@ The upgrade system is designed to maintain AIWAF stability while keeping your pa
|
|
|
323
327
|
- 🧪 **Dry Run Mode**: Test upgrade plans before execution
|
|
324
328
|
- ⚠️ **Clear Blocking Reasons**: Explains why upgrades are blocked
|
|
325
329
|
- 📝 **Requirements.txt Updates**: Automatically updates dependency files
|
|
330
|
+
- 🧹 **Cache Management**: Clears pip cache after successful upgrades
|
|
326
331
|
|
|
327
332
|
**Recommended Upgrade Workflow:**
|
|
328
333
|
|
|
@@ -361,6 +366,7 @@ The system uses a multi-layer decision process:
|
|
|
361
366
|
- **Layer 3**: Analyze cross-package dependencies
|
|
362
367
|
- **Layer 4**: Select highest safe version within constraints
|
|
363
368
|
- **Layer 5**: Execute with error handling and rollback capability
|
|
369
|
+
- **Layer 6**: Clear pip cache and update requirements.txt after success
|
|
364
370
|
|
|
365
371
|
This will ensure the IP is never blocked by AI‑WAF. You can also manage exemptions via the Django admin interface.
|
|
366
372
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
aiwaf/__init__.py,sha256=
|
|
1
|
+
aiwaf/__init__.py,sha256=a8AUvwMuCDX-PCu3FtSH2GKroDDvM1zG6q6KbYyuo6k,220
|
|
2
2
|
aiwaf/apps.py,sha256=nCez-Ptlv2kaEk5HenA8b1pATz1VfhrHP1344gwcY1A,142
|
|
3
3
|
aiwaf/blacklist_manager.py,sha256=LYCeKFB-7e_C6Bg2WeFJWFIIQlrfRMPuGp30ivrnhQY,1196
|
|
4
4
|
aiwaf/decorators.py,sha256=IUKOdM_gdroffImRZep1g1wT6gNqD10zGwcp28hsJCs,825
|
|
@@ -15,7 +15,7 @@ aiwaf/management/commands/add_ipexemption.py,sha256=sSf3d9hGK9RqqlBYkCrnrd8KZWGT
|
|
|
15
15
|
aiwaf/management/commands/aiwaf_diagnose.py,sha256=nXFRhq66N4QC3e4scYJ2sUngJce-0yDxtBO3R2BllRM,6134
|
|
16
16
|
aiwaf/management/commands/aiwaf_logging.py,sha256=FCIqULn2tii2vD9VxL7vk3PV4k4vr7kaA00KyaCExYY,7692
|
|
17
17
|
aiwaf/management/commands/aiwaf_reset.py,sha256=0FIBqpZS8xgFFvAKJ-0zAC_-QNQwRkOHpXb8N-OdFr8,3740
|
|
18
|
-
aiwaf/management/commands/check_dependencies.py,sha256=
|
|
18
|
+
aiwaf/management/commands/check_dependencies.py,sha256=GOZl00pDwW2cJjDvIaCeB3yWxmeYcJDRTIpmOTLvy2c,37204
|
|
19
19
|
aiwaf/management/commands/clear_cache.py,sha256=cdnuTgxkhKLqT_6k6yTcEBlREovNRQxAE51ceXlGYMA,647
|
|
20
20
|
aiwaf/management/commands/debug_csv.py,sha256=Lddqp37mIn0zdvHf4GbuNTWYyJ5h8bumDcGmFSAioi0,6801
|
|
21
21
|
aiwaf/management/commands/detect_and_train.py,sha256=-o-LZ7QZ5GeJPCekryox1DGXKMmFEkwwrcDsiM166K0,269
|
|
@@ -27,8 +27,8 @@ aiwaf/management/commands/test_exemption_fix.py,sha256=ngyGaHUCmQQ6y--6j4q1viZJt
|
|
|
27
27
|
aiwaf/resources/model.pkl,sha256=5t6h9BX8yoh2xct85MXOO60jdlWyg1APskUOW0jZE1Y,1288265
|
|
28
28
|
aiwaf/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
aiwaf/templatetags/aiwaf_tags.py,sha256=XXfb7Tl4DjU3Sc40GbqdaqOEtKTUKELBEk58u83wBNw,357
|
|
30
|
-
aiwaf-0.1.9.1.
|
|
31
|
-
aiwaf-0.1.9.1.
|
|
32
|
-
aiwaf-0.1.9.1.
|
|
33
|
-
aiwaf-0.1.9.1.
|
|
34
|
-
aiwaf-0.1.9.1.
|
|
30
|
+
aiwaf-0.1.9.1.6.dist-info/licenses/LICENSE,sha256=Ir8PX4dxgAcdB0wqNPIkw84fzIIRKE75NoUil9RX0QU,1069
|
|
31
|
+
aiwaf-0.1.9.1.6.dist-info/METADATA,sha256=d9OfrFnIC8H5G1l8_hASPjqdF4Fe3nRk9I6YEBN5RnI,22145
|
|
32
|
+
aiwaf-0.1.9.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
33
|
+
aiwaf-0.1.9.1.6.dist-info/top_level.txt,sha256=kU6EyjobT6UPCxuWpI_BvcHDG0I2tMgKaPlWzVxe2xI,6
|
|
34
|
+
aiwaf-0.1.9.1.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|