Skip to content

Releases: OoS-MaMaD/gowaybackgo

v1.3.0

Choose a tag to compare

@github-actions github-actions released this 21 Jul 09:45
Minor feature release.

- Live streaming: results are flushed as they are found, not buffered until the
  run ends (pipeable, watchable).
- ProjectDiscovery-style CLI conventions (stdlib-only): --silent, --stats,
  --list/-l, --retries, --nc/--no-color, [INF]/[WRN]/[ERR] logging, and PD-style
  aliases (-t, -rl, --jsonl, --output). Composes cleanly in recon pipelines.
- Version now resolves from Go build info, so `go install ...@latest` reports
  the tag instead of "dev".

v1.2.1

Choose a tag to compare

@github-actions github-actions released this 13 Jul 17:04
Fix version reporting for source installs: --version and the help banner now
resolve the version from Go build info when the release ldflag is unset, so
`go install …@latest` reports the tag instead of "dev".

v1.2.0

Choose a tag to compare

@github-actions github-actions released this 13 Jul 16:51
Minor feature release.

New features:
- JSONL output (--json); CDX --from/--to/--status/--mime filters; --proxy;
  --version; colored --help.

Fixes & hardening:
- Multi-domain -o output; terminal-safe output; graceful Ctrl-C; page-count
  retry + --stdin batch resilience; numeric-flag validation (no more panics);
  no double-wildcard in --subs.

Quality:
- Terminal-aware progress bar with ETA; end-to-end pipeline tests under -race;
  CI runs vet+tests before building; Go 1.24.

v1.1.0

Choose a tag to compare

@OoS-MaMaD OoS-MaMaD released this 01 Jul 14:08

What's New in v1.1.0

Reliability

  • Rate limiting — new --rate <n> flag (requests/sec) to avoid getting throttled by web.archive.org
  • Smarter retries — HTTP status codes (429, 503, etc.) now surface as real errors with quadratic backoff (1s → 4s → 9s)
  • Context-aware cancellation — Ctrl+C now stops immediately, even mid-retry

New Features

  • --stdin support — pipe a list of domains: cat domains.txt | gowaybackgo --stdin
  • Pretty help output — grouped sections with examples (--help)

Fixes

  • Extension filter no longer drops results in --subs mode
  • fetchPageCount now correctly errors on non-200 responses
  • Fixed progress bar data race under heavy concurrency
  • Dynamic jobs buffer (was hardcoded 2000)

Cleanup

  • Removed dead code (uniqueAndSort, formatDuration)

First release

Choose a tag to compare

@OoS-MaMaD OoS-MaMaD released this 27 Nov 08:25
5c74cf2
Comment out URL processing in main.go

Comment out URL processing logic for debugging.