Skip to content

v1.4.2-beta-3

Latest
Compare
Choose a tag to compare
@xCss xCss released this 07 Nov 03:36
· 109 commits to master since this release

New

  • 添加OPTIONS请求返回
// 处理OPTIONS请求
 if (req.method === 'OPTIONS') {
    res.send(200);
} else next();
  • 添加IP屏蔽列表,让滥用情况更可控(屏蔽列表)

Fix

  • 修复来源IP局域网IP的BUG
  • 修复v1接口代理远程接口时偶然出现的错误