We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37bd301 commit 50ab10cCopy full SHA for 50ab10c
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# 6.0.1
2
+
3
+- fix: response `$process_person_profile` property when passed to capture
4
5
# 6.0.0
6
7
This release contains a number of major breaking changes:
posthog/client.py
@@ -351,7 +351,7 @@ def capture(
351
352
(distinct_id, personless) = get_identity_state(distinct_id)
353
354
- if personless:
+ if personless and "$process_person_profile" not in properties:
355
properties["$process_person_profile"] = False
356
357
msg = {
posthog/version.py
@@ -1,4 +1,4 @@
-VERSION = "6.0.0"
+VERSION = "6.0.1"
if __name__ == "__main__":
print(VERSION, end="") # noqa: T201
0 commit comments