doggo/TODO.md

70 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2020-12-13 16:33:44 +01:00
# doggo - Initial Release Milestone
2020-12-10 10:39:05 +01:00
## Resolver
2020-12-10 17:14:04 +01:00
- [x] Create a DNS Resolver struct
2020-12-13 17:16:27 +01:00
- [x] Add methods to initialise the config, set defaults
2020-12-10 17:14:04 +01:00
- [x] Add a resolve method
- [x] Make it separate from Hub
2020-12-13 08:15:45 +01:00
- [x] Parse output into separate fields
2020-12-16 15:10:01 +01:00
- [x] Test IPv6/IPv4 only options
2020-12-12 08:46:45 +01:00
- [x] Add DOH support
2020-12-16 15:10:01 +01:00
- [x] Add DOT support
- [x] Add DNS protocol on TCP mode support.
- [x] Change lookup method.
2020-12-14 17:20:27 +01:00
- [x] Major records supported
- [x] Support multiple resolvers
- [x] Take multiple transport options and initialise resolvers accordingly.
2020-12-16 14:08:34 +01:00
- [x] Add timeout support
2020-12-16 14:20:25 +01:00
- [x] Support SOA/NXDOMAIN
2020-12-10 10:39:05 +01:00
## CLI Features
2020-12-13 17:16:27 +01:00
- [x] `ndots` support
2020-12-13 09:26:38 +01:00
- [x] `search list` support
2020-12-13 08:15:45 +01:00
- [x] JSON output
- [x] Colorized output
- [x] Table output
2020-12-13 16:33:44 +01:00
- [x] Parsing options free-form
2020-12-10 10:39:05 +01:00
## CLI Grunt
2020-12-10 17:14:04 +01:00
- [x] Query args
- [x] Neatly package them to load args in different functions
- [x] Upper case is not mandatory for query type/classes
2020-12-13 08:15:45 +01:00
- [x] Output
2020-12-14 17:20:27 +01:00
- [x] Custom Help Text
2020-12-13 16:33:44 +01:00
- [x] Add examples
2020-12-14 17:20:27 +01:00
- [x] Colorize
- [x] Add different commands
2020-12-13 08:15:45 +01:00
- [x] Add client transport options
2020-12-13 17:00:54 +01:00
- [x] Fix an issue while loading free form args, where the same records are being added twice
2020-12-13 17:16:27 +01:00
- [x] Remove urfave/cli in favour of `pflag + koanf`
2020-12-18 16:37:02 +01:00
- [x] Flags - Remove unneeded ones
2020-12-14 17:20:27 +01:00
2020-12-10 10:39:05 +01:00
## Documentation
2020-12-18 07:40:40 +01:00
- [x] README
- [x] Usage
- [x] Installation
- [x] Features
2020-12-13 16:33:44 +01:00
2020-12-10 10:39:05 +01:00
## Release Checklist
2020-12-18 11:07:35 +01:00
- [x] Goreleaser
- [x] Snap
- [x] Docker
---
2020-12-17 12:27:44 +01:00
# Future Release
2020-12-13 16:33:44 +01:00
2020-12-18 16:37:02 +01:00
- [ ] Support obscure protocol tweaks in `dig`
2021-02-24 19:05:58 +01:00
- [x] Support more DNS Record Types
- [x] Shell completions
- [x] zsh
- [x] fish
2020-12-18 07:40:40 +01:00
- [ ] Add tests for Resolvers.
- [ ] Add tests for CLI Output.
2020-12-18 11:07:35 +01:00
- [ ] Homebrew - Goreleaser
- [ ] Add support for `dig +trace` like functionality.
- [ ] Add `dig +short` short output
- [x] Add `--strategy` for picking nameservers.
- [ ] Explore `dig.rc` kinda file
2020-12-24 17:56:13 +01:00
- [x] Separate Authority/Answer in JSON output.
- [x] Error on NXDomain (Related upstream [bug](https://github.com/miekg/dns/issues/1198))