Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: ag-go/doggo

Tags

v1.0.4

Toggle v1.0.4's commit message
fix: add ca-certificates in doggo-web

closes mr-karan#132

v1.0.3

Toggle v1.0.3's commit message
chore: upgrade deps

v1.0.2

Toggle v1.0.2's commit message
refactor: move main package to cmd/doggo for proper binary naming

v1.0.1

Toggle v1.0.1's commit message
fix: proper alignment of help text

fixes mr-karan#123

v1.0.0

Toggle v1.0.0's commit message
ci: add npm caching

v0.5.7

Toggle v0.5.7's commit message
Updated to go 1.21

* Updated release workflow to use go 1.21

v0.5.6

Toggle v0.5.6's commit message
ci: yaml stupidity

v0.5.5

Toggle v0.5.5's commit message
chore: build for go 1.19

Closes mr-karan#62

v0.5.4

Toggle v0.5.4's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: Correctly print colored text on Windows

This commit will fix mr-karan#40.

Replacing os.Stdout with color.Output will fix the problem on Windows's console.

Internally, `color.Output` is same as `colorable.NewColorableStdout()`, according to https://github.com/fatih/color/blob/acd5f3bb28257af7d3c4817ab6842e39bd0fcf34/color.go#L25-L27

see also: https://godocs.io/github.com/mattn/go-colorable#NewColorableStdout

v0.5.3

Toggle v0.5.3's commit message
fix: fallback to tcp if response is truncated

Based on a report `doggo txt google.com  @udp://1.1.1.1` failed.
This record had 704 bytes as the message length however the response
gets truncated if it exceeds 512 bytes with UDP.

`dig` transparently fallbacks to `tcp`, so this commit adds the same
mechanism.