From 899affa2248e10c9b5a10f2794898e48b28547d1 Mon Sep 17 00:00:00 2001 From: tore-statsig <74584483+tore-statsig@users.noreply.github.com> Date: Fri, 2 Feb 2024 11:33:20 -0800 Subject: [PATCH] [release] 0.27.0 - Add Hash Parameter to get_client_initialize_response (#229) If you want to use the unhashed (`HashingAlgorithm.NONE`) or the minimized payload (`HashingAlgorithm.DJB2`) for get_client_intialize_response, you can now pass that as a parameter. By default, get_client_intialize_response will use `HashingAlgorithm.SHA256` to hash the gate/experiment names. NOTE: `HashingAlgorithm.NONE` hashing option requires opt in on the Statsig backend. Reach out to support for help with this. >Included In This Release >- 1fbf0fa3a62fd82421f6069f9c308ce7c0c046d0 tore-statsig > - Implement hash algorithm parameter for get_client_initialize_response (#227) --- statsig/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statsig/version.py b/statsig/version.py index 826d20e..cf7b6d6 100644 --- a/statsig/version.py +++ b/statsig/version.py @@ -1 +1 @@ -__version__ = '0.26.0' +__version__ = '0.27.0'