github daeuniverse/dae v0.2.0

latest releases: v0.9.0rc1, v0.8.0, v0.7.4...
16 months ago

Release date: 2023/07/02

Features

Bug Fixes

  • fix: samba not work in #173 by (@mzz2017)
  • fix: should allow fallbacking ip version if dialing domain in #164 by (@mzz2017)
  • fix: bad connectivity check of dns(tcp) caused by #80 in #155 by (@mzz2017)
  • fix/chore(grpc): allow insecure caused no connection in #151 by (@mzz2017)
  • fix: new control plane should reset grpc conn pool cache in #150 by (@mzz2017)
  • fix(group): policy 'fixed' parsing in #149 by (@mzz2017)
  • fix(socks5): udp problem in #148 by (@mzz2017)
  • fix: should gracefully exit if failed to listen when reloading in #138 by (@mzz2017)
  • fix: change default tcp_check_http_method from CONNECT to HEAD in #137 by (@mzz2017)
  • fix: failed to sniff tls1.2 traffic in some cases in #135 by (@mzz2017)
  • fix: enlarge kernel geoip size limit in #130 by (@mzz2017)
  • fix(config): problem that always append values to default list in #128 by (@mzz2017)
  • fix/ci: fix argument list too long due to packed and use clang-15 in #162 by (@mzz2017)
  • fix(dns): mismatched qname matching rules by @mzz2017 in #99
  • fix: rand seed for network check by @mzz2017 in #106
  • fix(config_parser): potential panic due to out of index by @mzz2017 in #108
  • fix(trojan): potential panic due to incorrect n returned by ReadFrom by @mzz2017 in #109

Others

  • chore: expose the routable dialer for dae-wing in #172 by (@mzz2017)
  • ci(generate-changelogs): add control on whether to write to issue page in #170 by (@yqlbu)
  • chore(geodata): change back to v2fly geodata in #168 by (@mzz2017)
  • ci: add generate-changelogs workflow in #159 by (@yqlbu)
  • chore/docs: support to unroll route loop and update troubleshooting.md in #158 by (@mzz2017)
  • ci: separate release build from main build in #157 by (@yqlbu)
  • docs(getting-started): add ref to run-as-daemon in #147 by (@yqlbu)
  • chore(pr_template): correct a typo in #146 by (@yqlbu)
  • chore: allow to modify app name and assets dir name in #144 by (@mzz2017)
  • chore(Dockerfile): change geodata upstream in #140 by (@mzz2017)
  • chore: fix incorrect number of routing rule stringer in #131 by (@mzz2017)
  • chore: fix make with /bin/sh in #129 by (@mzz2017)
  • chore(Makefile): support submodules in #126 by (@mzz2017)
  • chore(changelogs-v0.2.0rc1): apply minor fix in #125 by (@yqlbu)
  • chore(config): support IgnoreZero option for config.Marhsaller in #153 by (@mzz2017)
  • ci: add check-docs workflow by @yqlbu in #93
  • refactor: move insert.sh to ./hack/test by @yqlbu in #95
  • ci(hack): add config-doc-generator by @yqlbu in #101
  • fix(test): domain_matcher/benchmark_test.go @mzz2017 in #107
  • ci: docs synchronization by @yqlbu in #103
  • docs(routing.md): revise fwmark section by @mzz2017 in #113

特性支持

  • 优化(routing): 修复 domain++ 的 ip 规则匹配缓慢的问题 in #133 by (@mzz2017)
  • 特性: 支持 iptables/nftables 的 mangle 表 tproxy by @mzz2017 in #80
  • 特性: 支持 uTLS by @AkinoKaede in #94
  • 特性: 支持在 geosite 使用属性标签 @ 符号 by @mzz2017 in #98
  • 特性(dns): 支持为特定域名设定固定的 ttl,这对 DDNS 场景较为有用 by @mzz2017 in #100

问题修复

  • 修复: samba 无法正常工作的问题 in #173 by (@mzz2017)
  • 修复: 当 dial_mode 为 domain 族时,现在允许从 ipv6 回落到 ipv4,以及从 ipv4 回落到 ipv6 in #164 by (@mzz2017)
  • 修复: 由 #80 导致的无法正常工作的 TCP DNS 检查 in #155 by (@mzz2017)
  • 修复(grpc): allow insecure 会导致的无法连接 in #151 by (@mzz2017)
  • 修复: grpc 连接池缓存应当在 reload 时候重置 in #150 by (@mzz2017)
  • 修复(group): 策略 'fixed' 的解析问题 in #149 by (@mzz2017)
  • 修复(socks5): udp 无法正常工作的问题 in #148 by (@mzz2017)
  • 修复: 重载时无法监听 tproxy 端口,应当做好清理工作后退出 in #138 by (@mzz2017)
  • 修复: 将 tcp_check_http_method 的默认值从 CONNECT 改为 HEAD in #137 by (@mzz2017)
  • 修复: 一些情况下无法嗅探 tls1.2 流量的问题 in #135 by (@mzz2017)
  • 修复: 扩大内核程序中可放置的 geoip 大小限制 in #130 by (@mzz2017)
  • 修复(config): 总是将用户设置的值添加到默认列表的后面的问题,例如 tcp_check_url 列表 in #128 by (@mzz2017)
  • 修复/自动化: 修复 packed 导致的 argument list too long 并使用 clang-15 构建 in #162 by (@mzz2017)
  • 修复(dns): 修复 DNS 中 qname 匹配规则失效的问题 by @mzz2017 in #99
  • 修复: 修复启动时网络检查链接列表的随机排布问题 by @mzz2017 in #106
  • 修复(config_parser): 修复配置文件格式错误时潜在的崩溃问题 by @mzz2017 in #108
  • 修复(trojan): 修复 trojan 崩溃问题,该问题由 ReadFrom 返回的 n 可能不正确导致 by @mzz2017 in #109

其他变更

  • 杂项: 提供代理 dialer 给 dae-wing,以允许在拉取订阅时经过代理 in #172 by (@mzz2017)
  • 自动化(generate-changelogs): 添加发版时是否写 issue page 的控制项 in #170 by (@yqlbu)
  • 杂项(geodata): 换回 v2fly 源的 geodata in #168 by (@mzz2017)
  • 自动化: 添加生成 changelogs 工作流 in #159 by (@yqlbu)
  • 杂项/文档: 支持编译时 unroll route loop,更新 troubleshooting.md in #158 by (@mzz2017)
  • 自动化: 从 main build 中分离 release build in #157 by (@yqlbu)
  • 文档(getting-started): 添加到 run-as-daemon 的引用 in #147 by (@yqlbu)
  • 杂项(pr_template): 修正错别字 in #146 by (@yqlbu)
  • 杂项: 允许修改 app name 和 assets dir name in #144 by (@mzz2017)
  • 杂项(Dockerfile): 更改 geodata 上游 in #140 by (@mzz2017)
  • 杂项: 修复不正确的 routing rule 条目数的打印 in #131 by (@mzz2017)
  • 杂项: 修复使用 /bin/sh 会导致 make 失败的问题 in #129 by (@mzz2017)
  • 杂项(Makefile): 支持 submodules in #126 by (@mzz2017)
  • 杂项(changelogs-v0.2.0rc1): 修复格式问题 in #125 by (@yqlbu)
  • 杂项(config): 为 config.Marhsaller 添加 IgnoreZero 选项支持 in #153 by (@mzz2017)
  • 自动化: 添加文档格式检查工作流 by @yqlbu in #93
  • 重构: 将 insert.sh 移动至 ./hack/test by @yqlbu in #95
  • 自动化(hack): 添加 config-doc-generator by @yqlbu in #101
  • 修复(test): 修复 domain_matcher/benchmark_test.go by @mzz2017 in #107
  • 自动化: 添加文档自动同步至 dae-docs 项目 by @yqlbu in #103
  • 文档(routing.md): 修订 fwmark 一节的文档 by @mzz2017 in #113

New Contributors

Example Config: https://github.com/daeuniverse/dae/blob/v0.2.0/example.dae

Full Changelog: v0.1.10.p1...v0.2.0

Don't miss a new dae release

NewReleases is sending notifications on new releases.