File tree Expand file tree Collapse file tree 11 files changed +1615
-1586
lines changed
Expand file tree Collapse file tree 11 files changed +1615
-1586
lines changed Original file line number Diff line number Diff line change 11<!-- markdownlint-disable-file MD004 MD024 MD034 MD036 -->
22# CHANGE LOG
33
4- ## main(v1.0.5)
4+ ## main(v1.0.6)
5+
6+ - feat: |DB| update db schema add index
7+
8+ ## v1.0.5
59
610- feat: 新增 ` DISABLE_CUSTOM_ADDRESS_NAME ` 配置: 禁用自定义邮箱地址名称功能
711- feat: 新增 ` CREATE_ADDRESS_DEFAULT_DOMAIN_FIRST ` 配置: 创建地址时优先使用第一个域名
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ CREATE TABLE IF NOT EXISTS raw_mails (
99
1010CREATE INDEX IF NOT EXISTS idx_raw_mails_address ON raw_mails(address);
1111
12+ CREATE INDEX IF NOT EXISTS idx_raw_mails_created_at ON raw_mails(created_at);
13+
1214CREATE TABLE IF NOT EXISTS address (
1315 id INTEGER PRIMARY KEY AUTOINCREMENT,
1416 name TEXT UNIQUE,
@@ -18,6 +20,10 @@ CREATE TABLE IF NOT EXISTS address (
1820
1921CREATE INDEX IF NOT EXISTS idx_address_name ON address(name);
2022
23+ CREATE INDEX IF NOT EXISTS idx_address_created_at ON address(created_at);
24+
25+ CREATE INDEX IF NOT EXISTS idx_address_updated_at ON address(updated_at);
26+
2127CREATE TABLE IF NOT EXISTS auto_reply_mails (
2228 id INTEGER PRIMARY KEY ,
2329 source_prefix TEXT ,
@@ -49,6 +55,7 @@ CREATE TABLE IF NOT EXISTS sendbox (
4955);
5056
5157CREATE INDEX IF NOT EXISTS idx_sendbox_address ON sendbox(address);
58+ CREATE INDEX IF NOT EXISTS idx_sendbox_created_at ON sendbox(created_at);
5259
5360CREATE TABLE IF NOT EXISTS settings (
5461 key TEXT PRIMARY KEY ,
Original file line number Diff line number Diff line change 11{
22 "name" : " cloudflare_temp_email" ,
3- "version" : " 1.0.5 " ,
3+ "version" : " 1.0.6 " ,
44 "private" : true ,
55 "type" : " module" ,
66 "scripts" : {
2424 "@vueuse/core" : " ^12.8.2" ,
2525 "@wangeditor/editor" : " ^5.1.23" ,
2626 "@wangeditor/editor-for-vue" : " ^5.1.12" ,
27- "axios" : " ^1.11.0 " ,
27+ "axios" : " ^1.12.2 " ,
2828 "jszip" : " ^3.10.1" ,
2929 "mail-parser-wasm" : " ^0.2.1" ,
30- "naive-ui" : " ^2.42.0 " ,
30+ "naive-ui" : " ^2.43.1 " ,
3131 "postal-mime" : " ^2.4.4" ,
3232 "vooks" : " ^0.2.12" ,
3333 "vue" : " ^3.5.21" ,
3434 "vue-clipboard3" : " ^2.0.0" ,
35- "vue-i18n" : " ^11.1.11 " ,
35+ "vue-i18n" : " ^11.1.12 " ,
3636 "vue-router" : " ^4.5.1"
3737 },
3838 "devDependencies" : {
4141 "@vitejs/plugin-vue" : " ^5.2.4" ,
4242 "unplugin-auto-import" : " ^19.3.0" ,
4343 "unplugin-vue-components" : " ^28.8.0" ,
44- "vite" : " ^6.3.5 " ,
44+ "vite" : " ^6.3.6 " ,
4545 "vite-plugin-pwa" : " ^1.0.3" ,
4646 "vite-plugin-top-level-await" : " ^1.6.0" ,
4747 "vite-plugin-wasm" : " ^3.5.0" ,
4848 "workbox-build" : " ^7.3.0" ,
4949 "workbox-window" : " ^7.3.0" ,
50- "wrangler" : " ^4.34 .0"
50+ "wrangler" : " ^4.37 .0"
5151 },
5252 "packageManager" :
" [email protected] +sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39" 5353}
You can’t perform that action at this time.
0 commit comments