From be52f0793059dcee7d0ca37479732a893af0baac Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Tue, 28 Apr 2026 13:23:28 -0700 Subject: [PATCH] chore(arcade-core): update PostHog project token (#834) --- > [!NOTE] > **Low Risk** > Low risk: only rotates the PostHog project API key used for CLI telemetry; main risk is misconfiguration causing events to be sent to the wrong project or dropped. > > **Overview** > Updates `UsageService` to use a new PostHog project API key for CLI usage telemetry, redirecting all `alias` and background `capture` events to the new PostHog project. > > Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 8cb1c7f1cc5bccd22cb2c73469848d88a703f27e. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot). --- libs/arcade-core/arcade_core/usage/usage_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/arcade-core/arcade_core/usage/usage_service.py b/libs/arcade-core/arcade_core/usage/usage_service.py index ed1a01e3..ed327a92 100644 --- a/libs/arcade-core/arcade_core/usage/usage_service.py +++ b/libs/arcade-core/arcade_core/usage/usage_service.py @@ -19,7 +19,7 @@ from arcade_core.usage.utils import is_tracking_enabled class UsageService: def __init__(self) -> None: - self.api_key = "phc_hIqUQyJpf2TP4COePO5jEpkGeUXipa7KqTEyDeRsTmB" + self.api_key = "phc_zNHKkPFsrKVSpd7y85jnxW8jNVW6AQD6AwqE4nWjwpXg" self.host = "https://us.i.posthog.com" def alias(self, previous_id: str, distinct_id: str) -> None: