feat: FT199 uuid — UUID v3/v4/v5 生成・構造解析・バリデーション#548
Merged
Conversation
- uuid モジュールの generate_v4/v5/v3, analyze_uuid, validate_uuid を実装 - uuid.UUID.variant が str 定数を返す点(F-1)を観察・記録 - 25 テスト全通過、mypy/ruff/pip-audit クリア - FT199 レポート・INDEX.md 更新・v1.8.71 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
uuidモジュールをテーマに FT199 を実施generate_v4/generate_v5/generate_v3/analyze_uuid/validate_uuidを実装し FastAPI エンドポイント化uuid.UUID.variantがintでなく文字列定数(uuid.RFC_4122 = "specified in RFC 4122")を返す点を記録Test plan
uv run pytest— 25 passeduv run mypy demos.py app.py— no issuesuv run ruff check .— passeduv run ruff format --check .— passeduv run pip-audit— no vulnerabilities🤖 Generated with Claude Code