SHA256
1
0
forked from pool/doggo
doggo/doggo.changes
Jeff Kowalczyk 8cef1ee9ad Accepting request 1184883 from home:jfkw:branches:devel:languages:go
- Update to version 1.0.3:
  * chore: upgrade deps
  * chore: fix help text
  * docs: specify correct usage of timeout flag
  * feat: add ctx cancellation while resolving records
  * feat: Refactor DNS resolvers for concurrent lookups
  * feat: add support for common query types
  * chore: fix docs link
  * chore: revamp README

OBS-URL: https://build.opensuse.org/request/show/1184883
OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/doggo?expand=0&rev=6
2024-07-02 14:02:05 +00:00

78 lines
3.3 KiB
Plaintext

-------------------------------------------------------------------
Tue Jul 02 13:50:51 UTC 2024 - Jeff Kowalczyk <jkowalczyk@suse.com>
- Update to version 1.0.3:
* chore: upgrade deps
* chore: fix help text
* docs: specify correct usage of timeout flag
* feat: add ctx cancellation while resolving records
* feat: Refactor DNS resolvers for concurrent lookups
* feat: add support for common query types
* chore: fix docs link
* chore: revamp README
-------------------------------------------------------------------
Tue Jul 02 10:43:52 UTC 2024 - Eyad Issa <eyadlorenzo@gmail.com>
- Update to version 1.0.2:
* refactor: move main package to cmd/doggo for proper binary naming
- Update to version 1.0.1
- Update to version 1.0.0:
* feat: add bash completion support
* feat: add completions command
* Fix syntax error in ZSH completion
* Update ZSH completion to include all current options
* added tls client configuration for doh and doq
-------------------------------------------------------------------
Mon Oct 23 09:36:30 UTC 2023 - Eyad Issa <eyadlorenzo@gmail.com>
- Packaging improvements:
* Fix zsh-completion and fish-completion by not requiring
zsh-completion and fish-completion and by supplementing the
right package.
* Fix fish-completion by using the .fish suffix when copying the
completion file.
-------------------------------------------------------------------
Wed Oct 18 19:10:28 UTC 2023 - Jeff Kowalczyk <jkowalczyk@suse.com>
- Packaging improvements:
* Use subpackages for fish-completion and zsh-completion.
Upstream currently has no bash completion scripts. Fish and zsh
subpackages are marked Suggests: and not installed by default.
If a bash-completion subpackage becomes available, we should
install that by default.
* Build PIE with pattern that may become recommended procedure:
%%ifnarch ppc64 GOFLAGS="-buildmode=pie" %%endif go build
A go toolchain buildmode default config would be preferable
but none exist at this time.
* Remove ldflags -X entries for upstream import path and version.
This information is embedded in binaries with go1.18+ and
available via go version -m or runtime/debug.ReadBuildInfo().
* Remove ldflags -s (Omit symbol table and debug info) and -w
(Omit DWARF symbol table). This information is used to produce
separate debuginfo packages and binaries are stripped for
reduced size by GNU strip during RPM build.
* Drop mod=vendor, go1.14+ will detect vendor dir and auto-enable
* Use %%name macro where applicable to normalize common lines
across Go app packages. Also makes renaming binary easier when
required to handle package name conflict.
* Remove bash loop for two paramaterized calls of go build.
The loop technique is nice for large lists, but making the two
go build calls explicit seems a better readability tradeoff.
* Add sample API config as doc
-------------------------------------------------------------------
Wed Oct 18 17:30:09 UTC 2023 - Eyad Issa <eyadlorenzo@gmail.com>
- Use xz compression for vendor.tar
- Use obscpio instead of tar for disk storage efficency
-------------------------------------------------------------------
Sun Oct 1 12:49:46 UTC 2023 - Alexandre Almeida <me@aoalmeida.com>
- First release