gitflow-analytics 3.13.0__tar.gz → 3.13.6__tar.gz
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.
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/CHANGELOG.md +535 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/PKG-INFO +37 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/README.md +36 -0
- gitflow_analytics-3.13.6/docs/DOCUMENTATION-STANDARDS.md +242 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/README.md +25 -21
- gitflow_analytics-3.13.0/docs/CLEANUP_SUMMARY.md → gitflow_analytics-3.13.6/docs/_archive/temp-files/CLEANUP_SUMMARY-20250929.md +1 -0
- gitflow_analytics-3.13.0/docs/PROJECT_CLEANUP_REPORT.md → gitflow_analytics-3.13.6/docs/_archive/temp-files/PROJECT_CLEANUP_REPORT-20250929.md +1 -0
- gitflow_analytics-3.13.6/docs/_archive/temp-files/USAGE_EXAMPLES-archived.md +419 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/developer/README.md +14 -0
- gitflow_analytics-3.13.6/docs/developer/refactoring-guide.md +174 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/examples/README.md +42 -31
- gitflow_analytics-3.13.6/docs/examples/interactive-launcher-examples.md +204 -0
- gitflow_analytics-3.13.6/docs/examples/story-points-configuration.md +170 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/pyproject.toml +3 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/_version.py +1 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/cli.py +267 -77
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/cli_wizards/menu.py +147 -6
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config/loader.py +3 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config/profiles.py +1 -2
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/data_fetcher.py +0 -2
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/git_auth.py +74 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/git_timeout_wrapper.py +8 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/extractors/tickets.py +3 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/integrations/github_integration.py +1 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/integrations/jira_integration.py +1 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/chatgpt_analyzer.py +15 -15
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm/prompts.py +1 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/core/processor.py +1 -2
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/enhanced_analyzer.py +24 -8
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/ui/progress_display.py +14 -6
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/verify_activity.py +1 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics.egg-info/PKG-INFO +37 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics.egg-info/SOURCES.txt +14 -5
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/test_analyzer_merge_stats.py +6 -6
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/test_cache.py +1 -3
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/test_data_fetcher_merge_stats.py +3 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/test_identity.py +0 -5
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/test_progress.py +6 -11
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/integration/conftest.py +7 -7
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/integration/test_merge_exclusion_workflow.py +25 -25
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/qualitative/test_basic_integration.py +11 -8
- gitflow_analytics-3.13.6/tests/run_all_tests.py +297 -0
- gitflow_analytics-3.13.6/tests/run_security_all_repos.py +456 -0
- gitflow_analytics-3.13.6/tests/run_security_analysis.py +291 -0
- gitflow_analytics-3.13.6/tests/test-qa-install/test_error_handling.py +98 -0
- gitflow_analytics-3.13.6/tests/test-qa-install/test_wizard_automated.py +374 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_atomic_caching.py +9 -9
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_cache_invalidation.py +4 -4
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_classification_system.py +10 -10
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_cli.py +93 -26
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_cli_wizards/test_menu.py +161 -3
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_config.py +1 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_config_extends.py +3 -3
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_config_profiles.py +2 -2
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_config_story_points.py +2 -2
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_jira_connection.py +3 -2
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_llm_commit_classification.py +2 -3
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_march_2025_comparison.py +9 -11
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_metrics.py +1 -2
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_ml_accuracy.py +9 -8
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_ml_components.py +2 -2
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_ml_comprehensive.py +15 -16
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_pm_env_resolution.py +30 -31
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_report_abstraction.py +5 -8
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_reports.py +2 -6
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_story_points_analysis.py +5 -5
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_training_pipeline.py +16 -8
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_two_step_process.py +5 -6
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/utils/test_commit_utils.py +3 -3
- gitflow_analytics-3.13.0/docs/REFACTOR.md +0 -470
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/CLAUDE.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/LICENSE +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/MANIFEST.in +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/SECURITY.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/STRUCTURE.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/README.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/analysis-files/ewtn-critical-security-report.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_engineer_20250915_085239_236.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_engineer_20250915_114233_697.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_engineer_20250915_115330_511.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_engineer_20250915_120516_669.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_engineer_20250915_124906_951.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_engineer_20250915_175540_671.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_engineer_20250915_214023_300.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_engineer_20250916_130622_510.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_ops_20250915_123323_419.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_ops_20250915_134446_128.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_ops_20250915_184656_725.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_research_20250915_091233_023.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_research_20250915_100404_339.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/agent_research_20250915_110606_413.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/system_prompt_20250915_084833_641.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/system_prompt_20250915_090830_660.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-logs/prompts/system_prompt_20250916_130545_822.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/output/database_qualitative_report_20250630_20250824.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/output/narrative_report_20250630_20250824.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/reports-24week/database_qualitative_report_20250303_20250817.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/reports-24week/narrative_report_20250303_20250817.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/test-ewtn-reports/narrative_report_20250810.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/test-reports/database_qualitative_report_20250908_20250914.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/test-reports/narrative_report_20250908_20250914.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/test-weekly-reports/database_qualitative_report_20250623_20250817.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/old-reports/test-weekly-reports/narrative_report_20250623_20250817.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/CHANGELOG_INTERACTIVE_LAUNCHER.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/FEATURES_READY_FOR_TESTING.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/FIX_SUMMARY.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/IMPLEMENTATION_SUMMARY.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/PROGRESS_TRACKING_FIXES.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/README.md +0 -0
- gitflow_analytics-3.13.0/docs/STORY_POINTS_CONFIG_SUMMARY.md → gitflow_analytics-3.13.6/docs/_archive/temp-files/STORY_POINTS_CONFIG_SUMMARY-archived.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/SYNTAX_ERROR_FIX.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/TEST_REPORT_GIT_CLONING.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/TIMEZONE_BUG_RESOLUTION.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/_archive/temp-files/code_analysis_report.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/architecture/README.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/architecture/branch-analysis-optimization.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/architecture/caching-strategy.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/architecture/llm-classifier-refactoring.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/architecture/ml-pipeline.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/configuration/configuration.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/deployment/README.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/design/README.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/design/circuit-breaker-implementation.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/design/commit-classification-design.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/design/git_pm_correlation_design.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/design/platform-agnostic-pm-framework.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/design/qualitative_data_extraction.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/developer/contributing.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/developer/development-setup.md +0 -0
- gitflow_analytics-3.13.0/docs/reference/PROJECT_ORGANIZATION.md → gitflow_analytics-3.13.6/docs/developer/project-organization.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/developer/training-guide.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/getting-started/README.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/getting-started/first-analysis.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/getting-started/installation.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/getting-started/quickstart.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/LLM_CLASSIFICATION_GUIDE.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/README.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/chatgpt-setup.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/identity-resolution-enhanced.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/interactive-launcher.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/managing-aliases.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/ml-categorization.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/pm-platform-setup.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/guides/troubleshooting.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/quick-reference/launcher-and-identity.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/reference/README.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/reference/cache-system.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/reference/cli-commands.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/reference/configuration-schema.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/docs/reference/json-export-schema.md +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/setup.cfg +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/classification/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/classification/batch_classifier.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/classification/classifier.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/classification/feature_extractor.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/classification/linguist_analyzer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/classification/model.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/cli_wizards/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/cli_wizards/install_wizard.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/cli_wizards/run_launcher.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config/aliases.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config/errors.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config/repository.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config/schema.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config/validator.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/config.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/constants.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/analyzer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/branch_mapper.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/cache.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/identity.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/metrics_storage.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/progress.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/schema_version.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/core/subprocess_git.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/extractors/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/extractors/base.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/extractors/ml_tickets.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/extractors/story_points.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/identity_llm/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/identity_llm/analysis_pass.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/identity_llm/analyzer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/identity_llm/models.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/integrations/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/integrations/orchestrator.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/metrics/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/metrics/activity_scoring.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/metrics/branch_health.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/metrics/dora.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/models/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/models/database.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/pm_framework/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/pm_framework/adapters/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/pm_framework/adapters/jira_adapter.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/pm_framework/base.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/pm_framework/models.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/pm_framework/orchestrator.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/pm_framework/registry.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/change_type.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/domain_classifier.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/intent_analyzer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm/base.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm/batch_processor.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm/cache.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm/cost_tracker.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm/openai_client.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm/response_parser.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/llm_commit_classifier.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/classifiers/risk_analyzer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/core/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/core/llm_fallback.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/core/nlp_engine.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/core/pattern_cache.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/example_enhanced_usage.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/models/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/models/schemas.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/utils/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/utils/batch_processor.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/utils/cost_tracker.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/utils/metrics.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/qualitative/utils/text_processing.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/analytics_writer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/base.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/branch_health_writer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/classification_writer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/cli_integration.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/csv_writer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/data_models.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/database_report_generator.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/example_usage.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/factory.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/formatters.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/html_generator.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/interfaces.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/json_exporter.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/narrative_writer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/story_point_correlation.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/reports/weekly_trends_writer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/config.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/extractors/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/extractors/dependency_checker.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/extractors/secret_detector.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/extractors/vulnerability_scanner.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/llm_analyzer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/reports/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/reports/security_report.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/security/security_analyzer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/training/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/training/model_loader.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/training/pipeline.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/types/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/types/commit_types.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/ui/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/utils/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics/utils/commit_utils.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics.egg-info/dependency_links.txt +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics.egg-info/entry_points.txt +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics.egg-info/requires.txt +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/src/gitflow_analytics.egg-info/top_level.txt +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/conftest.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/test_analyzer.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/test_data_fetcher.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/core/test_merge_commit_detection.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/debug_bulk_exists.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/debug_commit_story_points.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/debug_database_storage.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/debug_jira_enrichment.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/debug_story_points.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/extractors/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/integration/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/integrations/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/metrics/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/models/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/qualitative/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/reports/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_cli_wizards/__init__.py +0 -0
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/test_ml_integration.py +1 -1
- {gitflow_analytics-3.13.0 → gitflow_analytics-3.13.6}/tests/utils/__init__.py +0 -0
|
@@ -5,6 +5,541 @@ All notable changes to GitFlow Analytics will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.13.4] - 2025-12-08
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Comprehensive documentation organization and standards
|
|
12
|
+
- Documentation standards based on Edgar project best practices
|
|
13
|
+
- Interactive launcher examples with complete workflows
|
|
14
|
+
- Story points configuration guide for JIRA integration
|
|
15
|
+
- Refactoring guide moved to developer documentation
|
|
16
|
+
- Project organization standards documentation
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- All internal documentation links validated and corrected
|
|
20
|
+
- Documentation structure reorganized according to new standards
|
|
21
|
+
- Broken links in main README and examples documentation
|
|
22
|
+
- Test file path issues in error handling tests
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Moved and consolidated documentation files according to new standards
|
|
26
|
+
- Archived outdated documentation files with proper date suffixes
|
|
27
|
+
- Updated all README files to reflect new organization structure
|
|
28
|
+
- Backfilled changelog with all missing versions from 1.2.24 to 3.13.3
|
|
29
|
+
|
|
30
|
+
## [3.13.3] - 2025-12-08
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
- Numbered selection UX for renaming developer aliases
|
|
34
|
+
- Interactive CLI menu with alias-rename option
|
|
35
|
+
- Interactive menu system with canonical name fixes
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
- Enhanced developer alias management workflow
|
|
39
|
+
- Improved user experience for alias operations
|
|
40
|
+
|
|
41
|
+
## [3.13.2] - 2025-12-08
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
- Interactive menu system for developer alias management
|
|
45
|
+
- Alias-rename command functionality
|
|
46
|
+
- Canonical name fixes for developer identities
|
|
47
|
+
|
|
48
|
+
## [3.13.1] - 2025-12-08
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
- Interactive CLI menu with alias-rename option
|
|
52
|
+
- Enhanced developer alias management
|
|
53
|
+
|
|
54
|
+
## [3.13.0] - 2025-12-08
|
|
55
|
+
|
|
56
|
+
### Added
|
|
57
|
+
- Interactive menu system for developer management
|
|
58
|
+
- Alias-rename command for developer identities
|
|
59
|
+
- Canonical name fixes and improvements
|
|
60
|
+
|
|
61
|
+
## [3.12.6] - 2025-12-08
|
|
62
|
+
|
|
63
|
+
### Added
|
|
64
|
+
- Claude MPM configuration file for enhanced AI integration
|
|
65
|
+
|
|
66
|
+
## [3.12.5] - 2025-12-08
|
|
67
|
+
|
|
68
|
+
### Fixed
|
|
69
|
+
- Black formatting in commit_utils.py
|
|
70
|
+
|
|
71
|
+
## [3.12.4] - 2025-12-08
|
|
72
|
+
|
|
73
|
+
### Fixed
|
|
74
|
+
- Black formatting in utils __init__.py
|
|
75
|
+
|
|
76
|
+
## [3.12.3] - 2025-12-08
|
|
77
|
+
|
|
78
|
+
### Fixed
|
|
79
|
+
- Default branch handling in test fixtures
|
|
80
|
+
|
|
81
|
+
## [3.12.2] - 2025-12-08
|
|
82
|
+
|
|
83
|
+
### Fixed
|
|
84
|
+
- Default branch handling in second merge operation
|
|
85
|
+
|
|
86
|
+
## [3.12.1] - 2025-12-08
|
|
87
|
+
|
|
88
|
+
### Fixed
|
|
89
|
+
- Default branch name handling in integration test fixture
|
|
90
|
+
|
|
91
|
+
## [3.12.0] - 2025-12-08
|
|
92
|
+
|
|
93
|
+
### Added
|
|
94
|
+
- Comprehensive improvements to merge commit exclusion feature
|
|
95
|
+
|
|
96
|
+
### Fixed
|
|
97
|
+
- Merge commit exclusion in GitDataFetcher for two-step architecture
|
|
98
|
+
|
|
99
|
+
### Changed
|
|
100
|
+
- Removed Python cache files from version control
|
|
101
|
+
|
|
102
|
+
## [3.11.1] - 2025-12-08
|
|
103
|
+
|
|
104
|
+
### Fixed
|
|
105
|
+
- Reverted direct spaCy model dependency due to PyPI restrictions
|
|
106
|
+
|
|
107
|
+
## [3.11.0] - 2025-12-08
|
|
108
|
+
|
|
109
|
+
### Added
|
|
110
|
+
- Automatic spaCy model installation
|
|
111
|
+
|
|
112
|
+
## [3.10.7] - 2025-12-08
|
|
113
|
+
|
|
114
|
+
### Added
|
|
115
|
+
- PROJECT_ORGANIZATION.md standard documentation
|
|
116
|
+
- Updated CLAUDE.md configuration
|
|
117
|
+
|
|
118
|
+
### Changed
|
|
119
|
+
- Archived temporary documentation files
|
|
120
|
+
|
|
121
|
+
## [3.10.6] - 2025-12-08
|
|
122
|
+
|
|
123
|
+
### Fixed
|
|
124
|
+
- Simplified return condition in is_qualitative_enabled
|
|
125
|
+
|
|
126
|
+
## [3.10.5] - 2025-12-08
|
|
127
|
+
|
|
128
|
+
### Fixed
|
|
129
|
+
- Support for nested qualitative config under analysis section
|
|
130
|
+
|
|
131
|
+
## [3.10.4] - 2025-12-08
|
|
132
|
+
|
|
133
|
+
### Fixed
|
|
134
|
+
- Black formatting in install_wizard.py
|
|
135
|
+
|
|
136
|
+
## [3.10.3] - 2025-12-08
|
|
137
|
+
|
|
138
|
+
### Fixed
|
|
139
|
+
- Moved git imports to module level
|
|
140
|
+
- Alphabetized git imports
|
|
141
|
+
|
|
142
|
+
## [3.10.2] - 2025-12-08
|
|
143
|
+
|
|
144
|
+
### Fixed
|
|
145
|
+
- Moved re and shutil imports to top level
|
|
146
|
+
|
|
147
|
+
## [3.10.1] - 2025-12-08
|
|
148
|
+
|
|
149
|
+
### Fixed
|
|
150
|
+
- Linting errors in install_wizard.py
|
|
151
|
+
|
|
152
|
+
## [3.10.0] - 2025-12-08
|
|
153
|
+
|
|
154
|
+
### Added
|
|
155
|
+
- Git URL cloning support to manual repository mode
|
|
156
|
+
|
|
157
|
+
## [3.9.3] - 2025-12-08
|
|
158
|
+
|
|
159
|
+
### Fixed
|
|
160
|
+
- Activity score normalization for reports without PR data
|
|
161
|
+
|
|
162
|
+
## [3.9.2] - 2025-12-08
|
|
163
|
+
|
|
164
|
+
### Fixed
|
|
165
|
+
- Black formatting in install_wizard.py
|
|
166
|
+
|
|
167
|
+
## [3.9.1] - 2025-12-08
|
|
168
|
+
|
|
169
|
+
### Fixed
|
|
170
|
+
- Removed unused pm_config variable in install wizard
|
|
171
|
+
|
|
172
|
+
## [3.9.0] - 2025-12-08
|
|
173
|
+
|
|
174
|
+
### Added
|
|
175
|
+
- Multi-platform PM ticketing support to installation wizard
|
|
176
|
+
|
|
177
|
+
## [3.8.1] - 2025-12-08
|
|
178
|
+
|
|
179
|
+
### Changed
|
|
180
|
+
- Ignore qualitative_cache and uv.lock files
|
|
181
|
+
|
|
182
|
+
## [3.8.0] - 2025-12-08
|
|
183
|
+
|
|
184
|
+
### Added
|
|
185
|
+
- 'gfa' as a shorthand command alias
|
|
186
|
+
|
|
187
|
+
## [3.7.5] - 2025-12-08
|
|
188
|
+
|
|
189
|
+
### Fixed
|
|
190
|
+
- Progress callback support to organization repository discovery
|
|
191
|
+
|
|
192
|
+
## [3.7.4] - 2025-12-08
|
|
193
|
+
|
|
194
|
+
### Fixed
|
|
195
|
+
- Black code formatting
|
|
196
|
+
|
|
197
|
+
## [3.7.3] - 2025-12-08
|
|
198
|
+
|
|
199
|
+
### Fixed
|
|
200
|
+
- Ruff F821 linter errors from lazy imports
|
|
201
|
+
|
|
202
|
+
## [3.7.2] - 2025-12-08
|
|
203
|
+
|
|
204
|
+
### Fixed
|
|
205
|
+
- Clone progress, retry logic, and PM platform filtering
|
|
206
|
+
|
|
207
|
+
## [3.7.1] - 2025-12-08
|
|
208
|
+
|
|
209
|
+
### Performance
|
|
210
|
+
- Optimized CLI startup time with lazy imports
|
|
211
|
+
|
|
212
|
+
## [3.7.0] - 2025-12-08
|
|
213
|
+
|
|
214
|
+
### Added
|
|
215
|
+
- Repository cloning to emergency fetch
|
|
216
|
+
- Automatic schema migration for timezone fix
|
|
217
|
+
|
|
218
|
+
### Fixed
|
|
219
|
+
- Automatically trim whitespace from interactive setup inputs
|
|
220
|
+
|
|
221
|
+
### Changed
|
|
222
|
+
- Removed TUI code
|
|
223
|
+
|
|
224
|
+
## [3.6.2] - 2025-12-08
|
|
225
|
+
|
|
226
|
+
### Fixed
|
|
227
|
+
- Uninitialized variable error when all repos use cached data
|
|
228
|
+
|
|
229
|
+
## [3.6.1] - 2025-12-08
|
|
230
|
+
|
|
231
|
+
### Fixed
|
|
232
|
+
- Critical timezone mismatch causing zero commits in database queries
|
|
233
|
+
|
|
234
|
+
### Changed
|
|
235
|
+
- Added Claude MPM cache directories to .gitignore
|
|
236
|
+
|
|
237
|
+
## [3.6.0] - 2025-12-08
|
|
238
|
+
|
|
239
|
+
### Added
|
|
240
|
+
- Guide users through config creation when file not found
|
|
241
|
+
|
|
242
|
+
## [3.5.2] - 2025-12-08
|
|
243
|
+
|
|
244
|
+
### Fixed
|
|
245
|
+
- Applied black formatting to new code
|
|
246
|
+
|
|
247
|
+
## [3.5.1] - 2025-12-08
|
|
248
|
+
|
|
249
|
+
### Fixed
|
|
250
|
+
- Linting errors in aliases system implementation
|
|
251
|
+
|
|
252
|
+
## [3.5.0] - 2025-12-08
|
|
253
|
+
|
|
254
|
+
### Added
|
|
255
|
+
- Developer aliases system with LLM generation
|
|
256
|
+
- Installation profiles for enhanced setup
|
|
257
|
+
|
|
258
|
+
## [3.4.7] - 2025-12-08
|
|
259
|
+
|
|
260
|
+
### Fixed
|
|
261
|
+
- All remaining ruff linting errors across project
|
|
262
|
+
|
|
263
|
+
## [3.4.6] - 2025-12-08
|
|
264
|
+
|
|
265
|
+
### Fixed
|
|
266
|
+
- Ruff linting errors in verify_activity
|
|
267
|
+
|
|
268
|
+
## [3.4.5] - 2025-12-08
|
|
269
|
+
|
|
270
|
+
### Fixed
|
|
271
|
+
- Removed failing test files from repository
|
|
272
|
+
|
|
273
|
+
## [3.4.4] - 2025-12-08
|
|
274
|
+
|
|
275
|
+
### Added
|
|
276
|
+
- Interactive launcher and enhanced identity detection
|
|
277
|
+
|
|
278
|
+
## [3.4.3] - 2025-12-08
|
|
279
|
+
|
|
280
|
+
### Added
|
|
281
|
+
- Comprehensive refactoring guide and tracking
|
|
282
|
+
|
|
283
|
+
## [3.4.2] - 2025-12-08
|
|
284
|
+
|
|
285
|
+
### Changed
|
|
286
|
+
- Extracted magic numbers to centralized constants module
|
|
287
|
+
|
|
288
|
+
## [3.4.1] - 2025-12-08
|
|
289
|
+
|
|
290
|
+
### Fixed
|
|
291
|
+
- Bare exception handlers and added type hints
|
|
292
|
+
|
|
293
|
+
## [3.4.0] - 2025-12-08
|
|
294
|
+
|
|
295
|
+
### Added
|
|
296
|
+
- Pre-flight git authentication and enhanced error reporting
|
|
297
|
+
|
|
298
|
+
### Fixed
|
|
299
|
+
- Remote branch analysis by preserving full branch references
|
|
300
|
+
- UnboundLocalError from redundant import in CLI
|
|
301
|
+
|
|
302
|
+
### Changed
|
|
303
|
+
- Applied Black formatting and auto-fix Ruff linting issues
|
|
304
|
+
|
|
305
|
+
## [3.3.0] - 2025-12-08
|
|
306
|
+
|
|
307
|
+
### Added
|
|
308
|
+
- Security analysis module and project cleanup
|
|
309
|
+
|
|
310
|
+
### Fixed
|
|
311
|
+
- F-string syntax error in git_timeout_wrapper.py
|
|
312
|
+
|
|
313
|
+
## [3.2.1] - 2025-12-08
|
|
314
|
+
|
|
315
|
+
### Fixed
|
|
316
|
+
- Thread safety in GitDataFetcher with thread-local storage
|
|
317
|
+
|
|
318
|
+
## [3.2.0] - 2025-12-08
|
|
319
|
+
|
|
320
|
+
### Added
|
|
321
|
+
- Progress tracking functionality
|
|
322
|
+
|
|
323
|
+
### Fixed
|
|
324
|
+
- Unhashable dict error
|
|
325
|
+
- Respect ticket_platforms configuration for ticket detection
|
|
326
|
+
|
|
327
|
+
## [3.1.12] - 2025-12-08
|
|
328
|
+
|
|
329
|
+
### Fixed
|
|
330
|
+
- Changed default display to simple output to prevent TUI hanging
|
|
331
|
+
|
|
332
|
+
## [3.1.11] - 2025-12-08
|
|
333
|
+
|
|
334
|
+
### Fixed
|
|
335
|
+
- TUI slow shutdown by properly managing thread executors
|
|
336
|
+
- TUI hanging during parallel repository analysis
|
|
337
|
+
- Missing RadioButton import in results screen
|
|
338
|
+
- TUI status reporting to distinguish 'no commits' from 'failed'
|
|
339
|
+
- TUI showing all repositories as failed when they have commits
|
|
340
|
+
|
|
341
|
+
## [3.1.10] - 2025-12-08
|
|
342
|
+
|
|
343
|
+
### Fixed
|
|
344
|
+
- TUI hanging during parallel repository analysis
|
|
345
|
+
|
|
346
|
+
## [3.1.9] - 2025-12-08
|
|
347
|
+
|
|
348
|
+
### Fixed
|
|
349
|
+
- TUI widget mounting errors in results_screen
|
|
350
|
+
|
|
351
|
+
## [3.1.8] - 2025-12-08
|
|
352
|
+
|
|
353
|
+
### Fixed
|
|
354
|
+
- Limited TUI parallel processing to single worker to avoid GitPython thread safety issues
|
|
355
|
+
|
|
356
|
+
## [3.1.7] - 2025-12-08
|
|
357
|
+
|
|
358
|
+
### Fixed
|
|
359
|
+
- TUIProgressAdapter signature mismatch causing all repositories to fail
|
|
360
|
+
|
|
361
|
+
## [3.1.6] - 2025-12-08
|
|
362
|
+
|
|
363
|
+
### Fixed
|
|
364
|
+
- 'core_progress' not accessible error in TUI
|
|
365
|
+
|
|
366
|
+
## [3.1.5] - 2025-12-08
|
|
367
|
+
|
|
368
|
+
### Fixed
|
|
369
|
+
- Properly set up TUI progress service for parallel repository processing
|
|
370
|
+
|
|
371
|
+
## [3.1.4] - 2025-12-08
|
|
372
|
+
|
|
373
|
+
### Fixed
|
|
374
|
+
- Set up progress service for TUI parallel repository processing
|
|
375
|
+
|
|
376
|
+
## [3.1.3] - 2025-12-08
|
|
377
|
+
|
|
378
|
+
### Fixed
|
|
379
|
+
- Initialize dark mode attribute in TUI app
|
|
380
|
+
|
|
381
|
+
## [3.1.2] - 2025-12-08
|
|
382
|
+
|
|
383
|
+
### Fixed
|
|
384
|
+
- Update JIRA API endpoints to use new /search/jql path
|
|
385
|
+
|
|
386
|
+
## [3.1.1] - 2025-12-08
|
|
387
|
+
|
|
388
|
+
### Fixed
|
|
389
|
+
- TUI stuck at 50% due to repository access issues
|
|
390
|
+
|
|
391
|
+
## [3.1.0] - 2025-12-08
|
|
392
|
+
|
|
393
|
+
### Added
|
|
394
|
+
- Comprehensive testing framework with TUI integration
|
|
395
|
+
|
|
396
|
+
### Fixed
|
|
397
|
+
- TUI progress tracking bugs and syntax errors
|
|
398
|
+
- Rich Pretty with Textual Static widget replacement
|
|
399
|
+
- TUI configuration loading and Pretty widget issues
|
|
400
|
+
- Added common CLI options to TUI command
|
|
401
|
+
|
|
402
|
+
## [3.0.0] - 2025-12-08
|
|
403
|
+
|
|
404
|
+
### Added
|
|
405
|
+
- TUI as the default interface with CLI fallback
|
|
406
|
+
|
|
407
|
+
### Breaking Changes
|
|
408
|
+
- TUI is now the default interface (major version bump)
|
|
409
|
+
|
|
410
|
+
## [2.0.0] - 2025-12-08
|
|
411
|
+
|
|
412
|
+
### Added
|
|
413
|
+
- Full-screen terminal interface restoration
|
|
414
|
+
|
|
415
|
+
### Breaking Changes
|
|
416
|
+
- Restored TUI command with full-screen terminal interface (major version bump)
|
|
417
|
+
|
|
418
|
+
## [1.6.6] - 2025-12-08
|
|
419
|
+
|
|
420
|
+
### Fixed
|
|
421
|
+
- Enabled Rich terminal UI by default
|
|
422
|
+
|
|
423
|
+
## [1.6.5] - 2025-12-08
|
|
424
|
+
|
|
425
|
+
### Fixed
|
|
426
|
+
- Hide PM framework and JIRA adapter debug messages
|
|
427
|
+
|
|
428
|
+
## [1.6.4] - 2025-12-08
|
|
429
|
+
|
|
430
|
+
### Fixed
|
|
431
|
+
- Clean up debug output and fix full-screen UI transition
|
|
432
|
+
|
|
433
|
+
## [1.6.3] - 2025-12-08
|
|
434
|
+
|
|
435
|
+
### Fixed
|
|
436
|
+
- Restart full-screen UI for Step 2 batch classification
|
|
437
|
+
|
|
438
|
+
## [1.6.2] - 2025-12-08
|
|
439
|
+
|
|
440
|
+
### Fixed
|
|
441
|
+
- Enable full-screen terminal UI in batch processing mode
|
|
442
|
+
|
|
443
|
+
## [1.6.1] - 2025-12-08
|
|
444
|
+
|
|
445
|
+
### Fixed
|
|
446
|
+
- Repository table comparison bug in full-screen UI
|
|
447
|
+
|
|
448
|
+
## [1.6.0] - 2025-12-08
|
|
449
|
+
|
|
450
|
+
### Added
|
|
451
|
+
- Live repository status tracking during analysis
|
|
452
|
+
|
|
453
|
+
## [1.5.0] - 2025-12-08
|
|
454
|
+
|
|
455
|
+
### Added
|
|
456
|
+
- Enhanced repository progress display during analysis
|
|
457
|
+
|
|
458
|
+
## [1.4.3] - 2025-12-08
|
|
459
|
+
|
|
460
|
+
### Fixed
|
|
461
|
+
- Made psutil an optional dependency for progress display
|
|
462
|
+
|
|
463
|
+
## [1.4.2] - 2025-12-08
|
|
464
|
+
|
|
465
|
+
### Fixed
|
|
466
|
+
- Environment variables resolution in PM integration config
|
|
467
|
+
|
|
468
|
+
## [1.4.1] - 2025-12-08
|
|
469
|
+
|
|
470
|
+
### Fixed
|
|
471
|
+
- Filtered stats storage for accurate line count exclusions
|
|
472
|
+
|
|
473
|
+
## [1.4.0] - 2025-12-08
|
|
474
|
+
|
|
475
|
+
### Added
|
|
476
|
+
- Sophisticated Rich-based progress display for better UX
|
|
477
|
+
|
|
478
|
+
## [1.3.12] - 2025-12-08
|
|
479
|
+
|
|
480
|
+
### Fixed
|
|
481
|
+
- Filtered stats storage for accurate line count exclusions
|
|
482
|
+
|
|
483
|
+
## [1.3.11] - 2025-12-08
|
|
484
|
+
|
|
485
|
+
### Fixed
|
|
486
|
+
- Applied black formatting to schema.py
|
|
487
|
+
|
|
488
|
+
## [1.3.10] - 2025-12-08
|
|
489
|
+
|
|
490
|
+
### Fixed
|
|
491
|
+
- Applied black formatting
|
|
492
|
+
|
|
493
|
+
## [1.3.9] - 2025-12-08
|
|
494
|
+
|
|
495
|
+
### Fixed
|
|
496
|
+
- Removed unused imports from data_fetcher
|
|
497
|
+
|
|
498
|
+
## [1.3.8] - 2025-12-08
|
|
499
|
+
|
|
500
|
+
### Fixed
|
|
501
|
+
- Branch analysis and added granular progress tracking
|
|
502
|
+
|
|
503
|
+
## [1.3.7] - 2025-12-08
|
|
504
|
+
|
|
505
|
+
### Fixed
|
|
506
|
+
- Temporarily disabled mypy in CI to unblock PyPI releases
|
|
507
|
+
|
|
508
|
+
## [1.3.6] - 2025-12-08
|
|
509
|
+
|
|
510
|
+
### Fixed
|
|
511
|
+
- Relaxed mypy configuration to allow PyPI release
|
|
512
|
+
|
|
513
|
+
## [1.3.5] - 2025-12-08
|
|
514
|
+
|
|
515
|
+
### Fixed
|
|
516
|
+
- Applied Black formatting for consistent code style
|
|
517
|
+
|
|
518
|
+
## [1.3.4] - 2025-12-08
|
|
519
|
+
|
|
520
|
+
### Fixed
|
|
521
|
+
- All remaining linting issues for clean CI/CD
|
|
522
|
+
|
|
523
|
+
## [1.3.3] - 2025-12-08
|
|
524
|
+
|
|
525
|
+
### Fixed
|
|
526
|
+
- Critical linting errors blocking PyPI release
|
|
527
|
+
|
|
528
|
+
## [1.3.2] - 2025-12-08
|
|
529
|
+
|
|
530
|
+
### Fixed
|
|
531
|
+
- All remaining test failures for PyPI publishing
|
|
532
|
+
|
|
533
|
+
## [1.3.1] - 2025-12-08
|
|
534
|
+
|
|
535
|
+
### Fixed
|
|
536
|
+
- Updated tests to match new comprehensive help system
|
|
537
|
+
|
|
538
|
+
## [1.3.0] - 2025-12-08
|
|
539
|
+
|
|
540
|
+
### Added
|
|
541
|
+
- Comprehensive help system with enhanced CLI documentation
|
|
542
|
+
|
|
8
543
|
## [1.2.24] - 2025-01-26
|
|
9
544
|
|
|
10
545
|
### Fixed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitflow-analytics
|
|
3
|
-
Version: 3.13.
|
|
3
|
+
Version: 3.13.6
|
|
4
4
|
Summary: Analyze Git repositories for developer productivity insights
|
|
5
5
|
Author-email: Bob Matyas <bobmatnyc@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -1183,6 +1183,42 @@ gitflow-analytics analyze -c config.yaml --debug
|
|
|
1183
1183
|
|
|
1184
1184
|
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
1185
1185
|
|
|
1186
|
+
### Development Setup
|
|
1187
|
+
|
|
1188
|
+
```bash
|
|
1189
|
+
# Clone the repository
|
|
1190
|
+
git clone https://github.com/bobmatnyc/gitflow-analytics.git
|
|
1191
|
+
cd gitflow-analytics
|
|
1192
|
+
|
|
1193
|
+
# Install development dependencies
|
|
1194
|
+
make install-dev
|
|
1195
|
+
|
|
1196
|
+
# Run tests
|
|
1197
|
+
make test
|
|
1198
|
+
|
|
1199
|
+
# Format code
|
|
1200
|
+
make format
|
|
1201
|
+
|
|
1202
|
+
# Run all quality checks
|
|
1203
|
+
make quality-gate
|
|
1204
|
+
```
|
|
1205
|
+
|
|
1206
|
+
### Release Workflow
|
|
1207
|
+
|
|
1208
|
+
This project uses a Makefile-based release workflow for simplicity and transparency. See [RELEASE.md](RELEASE.md) for detailed documentation.
|
|
1209
|
+
|
|
1210
|
+
**Quick Reference:**
|
|
1211
|
+
```bash
|
|
1212
|
+
make release-patch # Bug fixes (3.13.1 → 3.13.2)
|
|
1213
|
+
make release-minor # New features (3.13.1 → 3.14.0)
|
|
1214
|
+
make release-major # Breaking changes (3.13.1 → 4.0.0)
|
|
1215
|
+
```
|
|
1216
|
+
|
|
1217
|
+
For more details, see:
|
|
1218
|
+
- [RELEASE.md](RELEASE.md) - Comprehensive release guide
|
|
1219
|
+
- [RELEASE_QUICKREF.md](RELEASE_QUICKREF.md) - Quick reference card
|
|
1220
|
+
- `make help` - All available commands
|
|
1221
|
+
|
|
1186
1222
|
## License
|
|
1187
1223
|
|
|
1188
1224
|
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
@@ -1125,6 +1125,42 @@ gitflow-analytics analyze -c config.yaml --debug
|
|
|
1125
1125
|
|
|
1126
1126
|
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
1127
1127
|
|
|
1128
|
+
### Development Setup
|
|
1129
|
+
|
|
1130
|
+
```bash
|
|
1131
|
+
# Clone the repository
|
|
1132
|
+
git clone https://github.com/bobmatnyc/gitflow-analytics.git
|
|
1133
|
+
cd gitflow-analytics
|
|
1134
|
+
|
|
1135
|
+
# Install development dependencies
|
|
1136
|
+
make install-dev
|
|
1137
|
+
|
|
1138
|
+
# Run tests
|
|
1139
|
+
make test
|
|
1140
|
+
|
|
1141
|
+
# Format code
|
|
1142
|
+
make format
|
|
1143
|
+
|
|
1144
|
+
# Run all quality checks
|
|
1145
|
+
make quality-gate
|
|
1146
|
+
```
|
|
1147
|
+
|
|
1148
|
+
### Release Workflow
|
|
1149
|
+
|
|
1150
|
+
This project uses a Makefile-based release workflow for simplicity and transparency. See [RELEASE.md](RELEASE.md) for detailed documentation.
|
|
1151
|
+
|
|
1152
|
+
**Quick Reference:**
|
|
1153
|
+
```bash
|
|
1154
|
+
make release-patch # Bug fixes (3.13.1 → 3.13.2)
|
|
1155
|
+
make release-minor # New features (3.13.1 → 3.14.0)
|
|
1156
|
+
make release-major # Breaking changes (3.13.1 → 4.0.0)
|
|
1157
|
+
```
|
|
1158
|
+
|
|
1159
|
+
For more details, see:
|
|
1160
|
+
- [RELEASE.md](RELEASE.md) - Comprehensive release guide
|
|
1161
|
+
- [RELEASE_QUICKREF.md](RELEASE_QUICKREF.md) - Quick reference card
|
|
1162
|
+
- `make help` - All available commands
|
|
1163
|
+
|
|
1128
1164
|
## License
|
|
1129
1165
|
|
|
1130
1166
|
This project is licensed under the MIT License - see the LICENSE file for details.
|