-
-
Notifications
You must be signed in to change notification settings - Fork 181
release #234
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
Merged
release #234
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a3457ca
fix(i18n): 优化导航栏翻译,向中文简洁程度看齐
ding113 1ce240f
fix: 改进 prompt_limit 错误规则的正则匹配
sususu98 6529ea7
Merge pull request #226 from sususu98/fix/error-rules
ding113 7e5f273
feat(chart): define logic for Overlay and Stacked modes
sususu98 3fb8a81
feat(error-rules): add error override feature
sususu98 f398034
chore: update environment variable loading to follow Next.js priority…
sususu98 4080dcb
chore: format code (dev-f398034)
github-actions[bot] 4e27c49
fix: 修复可用性监控 15 分钟时间范围的 Invalid Date 错误, close #227
github-actions[bot] 6fe0de0
fix: API action adapter should pass schema params as positional args,…
github-actions[bot] ae49174
fix: preserve original behavior for multi-param actions in API adapter
ding113 baff618
fix: handle NaN case in bucketSizeMinutes parsing
ding113 59fb9da
Merge pull request #232 from ding113/fix/issue-230-api-statistics-bod…
ding113 356fef9
Merge pull request #231 from ding113/fix/issue-227-availability-inval…
ding113 8f355a9
docs: update changelog for PR #232
github-actions[bot] 30d7fb3
docs: update changelog for PR #231
github-actions[bot] b8d93aa
Merge branch 'main' into dev
ding113 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| ALTER TABLE "error_rules" ADD COLUMN "override_response" jsonb;--> statement-breakpoint | ||
| ALTER TABLE "error_rules" ADD COLUMN "override_status_code" integer; |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Medium: dotenv config() priority order is inverted from comment
Why this is a problem: The comment says "Priority: .env.development.local > .env.local > ..." but
dotenv.config()by default does NOT override already-set variables. So loading in this order means.env.development.localis loaded first and its values are set, then subsequent files cannot override them. The actual priority is first-file-wins, which matches Next.js priority.However, if DSN is already set in an earlier file, later files won't override it. Consider whether this is intentional.
Suggested clarification: Update the comment to clarify the "first wins" behavior, or use
override: trueif you want later files to take precedence: