You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add more v6 tests.
Handle json file override unicode problems.
Gson disableHtmlEscaping added.
Update Double to String formatting.
* Small fixes
- config deserialization called on cache.
- getKeyAndValue optimized
- error text fix
* Update version to 9.0.1
* Add test case for skipped sdkKey validation in case of LOCAL_ONLY OverrideBehavior.
* Update double format.
Add missing required variation ids to json overrides.
* Run code format
* Fixes based on code review.
* Move configSalt check from deserialization.
* Fix platform based line ending.
* Move LogHelper into EvaluateLogger.
* Fix expectedLog replaceAll
* Fix configSalt checks
return"Cannot evaluate condition (" + LogHelper.formatUserCondition(userCondition) + ") for setting '" + key + "' (the User." + attributeName + " attribute is missing). You should set the User." + attributeName + " attribute in order to make targeting work properly. Read more: https://configcat.com/docs/advanced/user-object/";
209
+
return"Cannot evaluate condition (" + EvaluateLogger.formatUserCondition(userCondition) + ") for setting '" + key + "' (the User." + attributeName + " attribute is missing). You should set the User." + attributeName + " attribute in order to make targeting work properly. Read more: https://configcat.com/docs/advanced/user-object/";
210
210
}
211
211
212
212
/**
@@ -230,7 +230,7 @@ public static String getUserAttributeMissing(final String key, final String attr
return"Cannot evaluate condition (" + LogHelper.formatUserCondition(userCondition) + ") for setting '" + key + "' (" + reason + "). Please check the User." + attributeName + " attribute and make sure that its value corresponds to the comparison operator.";
233
+
return"Cannot evaluate condition (" + EvaluateLogger.formatUserCondition(userCondition) + ") for setting '" + key + "' (" + reason + "). Please check the User." + attributeName + " attribute and make sure that its value corresponds to the comparison operator.";
234
234
}
235
235
236
236
@@ -244,7 +244,7 @@ public static String getUserAttributeInvalid(final String key, final UserConditi
return"Evaluation of condition (" + LogHelper.formatUserCondition(userCondition) + ") for setting '" + key + "' may not produce the expected result (the User." + attributeName + " attribute is not a string value, thus it was automatically converted to the string value '" + attributeValue + "'). Please make sure that using a non-string value was intended.";
247
+
return"Evaluation of condition (" + EvaluateLogger.formatUserCondition(userCondition) + ") for setting '" + key + "' may not produce the expected result (the User." + attributeName + " attribute is not a string value, thus it was automatically converted to the string value '" + attributeValue + "'). Please make sure that using a non-string value was intended.";
0 commit comments