Key features implemented: - Updated .gitignore with cleaner Python and build artifact patterns - Enhanced TcpHttpServer with improved exception handling for connection errors and better request parsing - Added detailed error event emission for OSError and other exceptions in TCP server - Improved plugin loader security with enhanced configuration file validation and error handling - Added comprehensive logging for plugin loading and dependency injection processes - Refined PL injection mechanism with stricter function name and route validation The updates provide more robust error handling in the TCP server and strengthen security measures in the plugin loader while improving overall system stability.
26 lines
181 B
Plaintext
26 lines
181 B
Plaintext
```
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Dependencies
|
|
.venv/
|
|
venv/
|
|
.env
|
|
.env.local
|
|
*.env.*
|
|
|
|
# Editors
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
target/
|
|
``` |