# Conventional Commit Message Template
#
# Format: <type>(<scope>): <subject>
#
# Types:
# - feat:     New feature
# - fix:      Bug fix
# - docs:     Documentation changes
# - style:    Code style changes (formatting, etc.)
# - refactor: Code refactoring
# - test:     Test changes
# - chore:    Build process or auxiliary tool changes
# - perf:     Performance improvements
# - ci:       CI/CD changes
# - build:    Build system changes
#
# Examples:
# feat(profiler): add support for nested struct columns
# fix(sampling): resolve division by zero in quality estimation
# docs: update README with new sampling configuration examples
# perf(statistics): optimize memory usage for large DataFrames
#
# Breaking changes should include "BREAKING CHANGE:" in the footer
# or use "!" after the type: feat!: remove deprecated sample_fraction parameter
#
