Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
fcbd420
fix: correct HTTP statusText and Gemini GET/HEAD handling
NieiR Dec 29, 2025
d3a36df
feat: add provider/group binding for request filters
Dec 25, 2025
6af3e22
feat: improve request filters table UI with truncate and tooltips
Dec 27, 2025
48c4a51
fix: improve request filter dialog layout and scrolling
Dec 28, 2025
d175c0c
test: add comprehensive tests for request filter binding types
Dec 29, 2025
258a6f3
perf: optimize group tag matching to iterate smaller set
Dec 29, 2025
07dd22f
feat(providers): add inline editing for priority/weight/costMultiplie…
YangQing-Lin Dec 30, 2025
9b31e7a
fix(providers): change weight minimum from 0 to 1 for clarity
YangQing-Lin Dec 30, 2025
ebce71e
refactor(providers): extract save handlers into factory function
YangQing-Lin Dec 30, 2025
5332988
chore: format code (feature-inline-provider-editing-ebce71e)
github-actions[bot] Dec 30, 2025
80a20ce
Merge pull request #486 from YangQing-Lin/feature/inline-provider-edi…
ding113 Dec 30, 2025
8e2115e
Merge pull request #484 from miraserver/feat/req-filters-adv
ding113 Dec 30, 2025
41d7f03
Merge pull request #481 from NieiR/fix/http-statustext-gemini
ding113 Dec 30, 2025
0849805
fix: address security and UX issues from code review
Dec 30, 2025
2a18603
chore: format code (feat-req-filters-adv-8e9f6a2)
github-actions[bot] Dec 30, 2025
2c333ce
refactor: improve error logging in setFiltersForTest
Dec 30, 2025
78300e0
Merge pull request #488 from miraserver/fix/req-filters-security-ux
ding113 Dec 31, 2025
f429546
feat(notification): add Feishu webhook support
BlackHole1 Dec 31, 2025
54bb2c9
fix: test failed
BlackHole1 Dec 31, 2025
9f4f1f6
fix: code style
BlackHole1 Dec 31, 2025
a01547e
fix(proxy): 未知状态码不再兜底 OK
ding113 Dec 31, 2025
68b1e6d
Merge pull request #490 from BlackHole1/feature/feishu-webhook
ding113 Dec 31, 2025
177e79e
feat(notification): add webhook platform auto-detection with badge di…
ding113 Dec 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions drizzle/0041_sticky_jackal.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ALTER TABLE "request_filters" ADD COLUMN "binding_type" varchar(20) DEFAULT 'global' NOT NULL;--> statement-breakpoint
ALTER TABLE "request_filters" ADD COLUMN "provider_ids" jsonb;--> statement-breakpoint
ALTER TABLE "request_filters" ADD COLUMN "group_tags" jsonb;--> statement-breakpoint
CREATE INDEX IF NOT EXISTS "idx_request_filters_binding" ON "request_filters" USING btree ("is_enabled","binding_type");
Loading
Loading