Skip to content

Commit dd67a7c

Browse files
merge from public after release
2 parents 4b8ee84 + 1d62b97 commit dd67a7c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to the LaunchDarkly Python SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [6.8.4] - 2019-03-29
6+
### Fixed:
7+
- Setting user attributes to non-string values when a string was expected would cause analytics events not to be processed. Also, in the case of the "secondary" attribute, this could cause evaluations to fail for a flag with a percentage rollout. The SDK will now convert attribute values to strings as needed. ([#115](https://github.com/launchdarkly/python-client/issues/115))
8+
- If `track` or `identify` is called without a user, the SDK now logs a warning, and does not send an analytics event to LaunchDarkly (since it would not be processed without a user).
9+
510
## [6.8.3] - 2019-02-12
611

712
Note that starting with this release, generated API documentation is available online at [https://launchdarkly-python-sdk.readthedocs.io](https://launchdarkly-python-sdk.readthedocs.io). This is published automatically from the documentation comments in the code.

ldclient/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "6.8.3"
1+
VERSION = "6.8.4"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def parse_requirements(filename):
1010
return [line for line in lineiter if line and not line.startswith("#")]
1111

1212

13-
ldclient_version='6.8.3'
13+
ldclient_version='6.8.4'
1414

1515
# parse_requirements() returns generator of pip.req.InstallRequirement objects
1616
install_reqs = parse_requirements('requirements.txt')

0 commit comments

Comments
 (0)