Skip to content

v1.4.7

Choose a tag to compare

@github-actions github-actions released this 12 Nov 18:17
5a1188b

1.4.7 (2025-11-12)

Enhancements

Type checks & Other enhancements - Merge pull request #77 from growthbook/feat/enhancements (ea1567a)

  1. Added skip_all_experiments to UserContext - enables per-user control over experiments. Closes #76

    • Set qa_mode to True globally for QA/staging environments
    • Set skip_all_experiments to True per-user for specific users
  2. Added Type safety - 200+ type hints, mypy configurations - compliant with PEP 561

# MyPy catches these at dev time, not runtime:
gb = GrowthBook(qa_mode="true")  #Err: Expected bool, got str
gb = GrowthBook(attributes=[])   # Err: Expected Dict, got List