Merged
Conversation
Newer Anthropic models (Opus 4.7+) reject the temperature parameter. On first request, catch the deprecation error and retry without temperature. Cache the model name so subsequent requests skip temperature entirely. Added Opus 4.7 to model configs and default models list. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Share report route makes internal server-to-server fetches that forward user cookies but lack browser headers, causing the middleware to misclassify them as external API requests. Exempt /api/share/ routes and requests with x-shared-report-bypass header. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…Script When user chooses not to use AI, template-only output no longer shows the fallback badge or retry button. These only appear when AI was attempted but fell back to template. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Change max-h-[90vh] to h-[90vh] across 7 wizard dialogs to prevent height shifting as content changes between steps or streams in. Affected: GenerateTestCasesWizard, ImportCasesWizard, CopyMoveDialog, ImportSharedStepsWizard, CreateProjectWizard, QuickScriptModal, and duplicate detection dialog in columns.tsx. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add flex flex-col to QuickScriptModal dialog and min-h-0 overflow-y-auto to ExportPreviewPane so content starts at top and scrolls instead of centering vertically in the fixed-height container. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Replace overflow-hidden with flex layout and min-h-0 on the parallel progress container so the file list scrolls when it overflows the fixed-height dialog. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The updateFileStatus callback was re-setting parallelProgress after the cancel handler cleared it, because abort error handlers in each file's promise catch called updateFileStatus. Guard with cancelledRef check so cancelled generation transitions directly to review. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add 300ms delay before showing the LoadingSpinnerAlert during test case import. If the import completes within 300ms, the loader never appears, preventing the brief visual flash. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Filter badges and per-issue badges now show externalProjectName instead of abbreviated project key, with tooltip for full name - Per-issue badges right-justified with ml-auto for consistent alignment - External link button uses ghost variant with pointer cursor and dim-on-hover for clearer hit area - Remove expand/collapse on issue description — always show full text - Issue description fills available dialog space - Change button renamed to Cancel for issue selection Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
Author
|
🎉 This PR is included in version 0.22.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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.
Description
Bug fix batch for v0.22.1. Fixes 5 filed bugs plus a production share link issue, QuickScript UX improvements, and wizard dialog polish.
Bug Fixes
h-[90vh]instead ofmax-h-[90vh]to prevent height changes during streaming./api/share/routes andx-shared-report-bypassheader from external API access check. Share report route's internal server-to-server fetches were misclassified as external requests.UX Improvements
Related Issue
Closes #219, Closes #220, Closes #221, Closes #222, Closes #223
Type of Change
How Has This Been Tested?
Test Configuration:
Checklist
Screenshots (if applicable)
Additional Notes
/api/share/routes and bypass header check at the external API gate — belt and suspenders