Skip to content

Commit 50ab10c

Browse files
authored
fix(err): permit disabling person processing (#277)
* whoops * bump version
1 parent 37bd301 commit 50ab10c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 6.0.1
2+
3+
- fix: response `$process_person_profile` property when passed to capture
4+
15
# 6.0.0
26

37
This release contains a number of major breaking changes:

posthog/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ def capture(
351351

352352
(distinct_id, personless) = get_identity_state(distinct_id)
353353

354-
if personless:
354+
if personless and "$process_person_profile" not in properties:
355355
properties["$process_person_profile"] = False
356356

357357
msg = {

posthog/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "6.0.0"
1+
VERSION = "6.0.1"
22

33
if __name__ == "__main__":
44
print(VERSION, end="") # noqa: T201

0 commit comments

Comments
 (0)