fix(ai): use UUID v7 for trace IDs#3902
Draft
marandaneto wants to merge 2 commits into
Draft
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Prompt To Fix All With AIFix the following 1 code review issue. Work through them one at a time, proposing concise fixes.
---
### Issue 1 of 1
packages/ai/tests/utils.test.ts:3
**Duplicated `UUIDV7_REGEX` constant across three test files**
The exact same regex is defined independently in `azure-openai.test.ts`, `captureAiGeneration.test.ts`, and `utils.test.ts`. This violates the OnceAndOnlyOnce principle — moving it to a shared test helper (e.g. `tests/helpers.ts`) would give a single authoritative definition to update if the format ever changes.
Reviews (1): Last reviewed commit: "fix(ai): use UUID v7 for trace IDs" | Re-trigger Greptile |
Contributor
Contributor
|
Size Change: -159 B (0%) Total Size: 17 MB
ℹ️ View Unchanged
|
Member
Author
|
@PostHog/team-ai-observability was there a reason to use v4 instead of v7? |
carlos-marchal-ph
approved these changes
Jun 19, 2026
carlos-marchal-ph
left a comment
Contributor
There was a problem hiding this comment.
Looks good on our end, will be better for AI events since we order by trace ID
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Generated AI trace IDs in
@posthog/aistill used UUID v4, while other SDK-generated event/session IDs have moved to UUID v7 for time-ordered identifiers.Changes
uuidv7()from the existing@posthog/coredependency for default AI trace IDs.captureAiGeneration, and the Vercel AI SDK wrapper.@posthog/ai.Release info Sub-libraries affected
Libraries affected
Checklist
If releasing new changes
pnpm changesetto generate a changeset file🤖 Agent context
Autonomy: Human-driven (agent-assisted)
Implemented by a delegated worker agent using the local repository tools. The change keeps the migration scoped to generated
@posthog/aitrace IDs and reuses@posthog/core's existing UUID v7 helper rather than adding a new dependency.