v1.4.7
1.4.7 (2025-11-12)
Enhancements
Type checks & Other enhancements - Merge pull request #77 from growthbook/feat/enhancements (ea1567a)
-
Added
skip_all_experimentstoUserContext- enables per-user control over experiments. Closes #76- Set
qa_modetoTrueglobally for QA/staging environments - Set
skip_all_experimentstoTrueper-user for specific users
- Set
-
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