Conversation
Major refactoring with new features: - Modular package structure (cloudrip/) - REST API with FastAPI (async scanning, batch checks) - SOCKS4/5 proxy support with rotation - Container support (Podman/Docker) - Remote wordlist downloads - Multiple output formats (JSON, YAML, CSV) - IPv6 support - Comprehensive test suite (208 tests, 86% coverage) - Full documentation (CLI, API, Library, Container)
- Add CI workflow for lint (ruff, mypy) and test jobs - Add pyproject.toml with ruff, mypy, pytest configuration - Replace black+flake8 with ruff for linting and formatting - Add mypy with strict type hint enforcement (disallow_untyped_defs) - Fix all type annotations across codebase - Test matrix: Python 3.11, 3.12, 3.13 - Codecov integration for coverage reporting
- Remove unused imports across test files - Sort import blocks with isort - Remove unused local variables - Add SIM117 to ignored rules (nested with statements) - Replace .format() with f-string
- Add requirements/api.txt to lint job for pydantic/fastapi stubs - Remove pydantic/fastapi from mypy ignore list (now installed) - Restore type: ignore comment for dict unpacking
- Build container on push to main branch or version tags - Push to ghcr.io with automatic tagging: - latest on main branch - semver tags (v3.0.0 -> 3.0.0, 3.0, 3) - sha prefix for traceability - Multi-arch builds: linux/amd64, linux/arm64 - Uses GitHub Actions cache for faster builds - Requires lint and test jobs to pass first
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.