-
Notifications
You must be signed in to change notification settings - Fork 448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(migrate): always use raw perspective for migrations #8467
Conversation
perspective=raw is currently default for all current API versions, but that might not be true in for all future versions. For migrations, perspective=raw is the most sensible default, so this PR explicitly sets perspective=raw when fetching documents for migration. If there's a compelling use case for having user-provided perspectives, we can always consider adding support for that that later, but this change ensures that perspective=raw is always used, no matter what the default is backend side.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
No changes to documentation |
Component Testing Report Updated Jan 31, 2025 2:44 PM (UTC) ❌ Failed Tests (2) -- expand for details
|
⚡️ Editor Performance ReportUpdated Fri, 31 Jan 2025 14:45:55 GMT
Detailed information🏠 Reference resultThe performance result of
🧪 Experiment resultThe performance result of this branch
📚 Glossary
|
Description
perspective=raw
is currently default for all current API versions, but that might not be true in for all future API versions.For migrations in particular,
perspective=raw
is the most sensible default (and currently what's being used), so this PR explicitly setsperspective=raw
when fetching documents for migration.Note: If there's a compelling use case for having user-provided perspectives, we can always consider adding support for that that later, but this change ensures that
perspective=raw
is always used, no matter what the default is backend side.What to review
Testing
unit test included
Notes for release
n/a - not visible to end users