All Versions
11
Latest Version
Avg Release Cycle
150 days
Latest Release
1310 days ago

Changelog History
Page 1

  • v1.2.0 Changes

    September 17, 2020
    • Engine CPU consumption reduced by 60%
    • 🐧 Implemented M'mapped AF_PACKET for Linux. To enable set --input-raw-engine af_packet. #807
    • βž• Added Kafka TLS configuration flag #800
    • πŸ›  Fix wrong param value updated while --http-set-param #791
    • πŸ›° The engine can now capture more requests with large payload #797
    • πŸ“¦ Created TCP package #97
    • πŸ›  Fixed minor bugs in HTTP proto parser
  • v1.1.0 Changes

    July 04, 2020
    • πŸ›  Fix usage of multiple --input-raw plugins, e.g. --input-raw :80 --input-raw :81 --input-raw :82 #700
    • πŸ‘ Allow to set byte size limits in human friedly format: --output-file-size-limit, --output-file-max-size-limit, --copy-buffer-size and --input-raw-buffer-size can now parse inputs from differents bases and data units like: 10mb, 10kb, 100gb, 18t #754
    • πŸ›  Fix calculation of the output file size when using gzip compression #777
    • βž• Added --output-tcp-sticky so request/response with same ID sent to the same connection.
    • πŸ‘ Better handling of malformed middleware output #737
    • πŸ›  Fixed race when reading or writing using files #756 #764
    • πŸ‘Œ Improved errors verbosity #703
    • 🐎 Updated dependencies, including libpcap which should bring more stability and performance
    • 🚚 Move to Go modules
    • 🚚 PRO code moved to the main repository under separate license
  • v1.0.0 Changes

    March 30, 2019

    πŸš€ Long awaited major release of GoReplay!

    • βž• Added option to specify custom BPF filter (e.g. tcpdump syntax). Can be useful in case of non standard network interfaces like tunneling or SPAN port. Example: --input-raw-bpf-filter 'dst port 80’ #478
    • Support for reading directly from pcap file, using --input-raw-engine pcap_file --input-raw ./recording.pcap_
    • βž• Added official Docker image docker pull buger/goreplay. Should be run with --network host argument.
    • βž• Added RPM and DEB packages
    • βž• Added support for HTTP proxies. Just set HTTP_PROXY env variable.
    • βž• Added HTTP basic auth filter: --http-basic-auth-filter "^customer[0-9].*. You specify regexp which match userid:passwd string. [https://github.com/[/pull/475](https://github.com/buger/goreplay/pull/475)]
    • βž• Added option to limit size of output file: when limit is reached, it will exit. Can be used for safety reasons. Example: --output-file-max-size-limit 5gb.
    • βž• Added way to configure output HTTO request queue, which used to hold requests, if all workers are busy. Example: --output-http-queue-len 5000. Default is 1000.
    • Control frequency of --output-http-stats reports using --output-http-stats-msoption. Example: --output-http-stats-ms 5000 (every 5 seconds).
    • πŸ”§ Configurable way to set minimum number of HTTP workers, by setting --output-http-workers-min. Can be used in conjunction with --output-http-workers which will act as a max worker count.
    • βž• Added way to dynamically profile GoReplay performance using Golang pprof tools. Example: --http-pprof :8181. It starts web server on given address, and expose special /debug/pprof endpoint with list of reports.
    • βž• Added β€”input-raw-buffer-size which controls size of the OS buffer (in
      0️⃣ bytes) which holds packets until they dispatched. Default value depends
      🐧 by system: in Linux around 2MB. If you see big package drop, increase
      this value.
    • In addition to buffer size, added option to turn pcap immediate mode when packets delivered without buffering. Can help reduce packet drop. Example: --input-raw-immediate-mode.
    • βž• Added way to use standard Golang HTTP client, by adding --output-http-compatibility-mode
    • Snaplen (max number of bytes being read for each packet)
      now dynamically set based on interface MTU + max header size. In most
      πŸ“¦ situations it should reduce package drop, because each packet will
      consume less space in the buffer. However in some virtualized environments like OpenShift, packet size can be significantly bigger then MTU, so you can disable optimization by setting --input-raw-override-snaplen.
    • βž• Added support for ElasticSearch basic HTTP auth
    • πŸ“œ Numerous fixes to improve quality of HTTP packets parsing
  • v1.0-rc2 Changes

    February 23, 2019
    • βž• Added support for HTTP proxies. Just set HTTP_PROXY env variable.
  • v0.16.1 Changes

    June 30, 2017
    • βž• Add support for TLS connections between --input-tcp and --output-tcp. --input-tcp-secure --input-tcp-certificate ./cert.pem --input-tcp-certificate-key ./key.pem --output-tcp-secure #457
    • βž• Add basic support for old server, like HTTP 0.9 #468 #463 #467
    • GoReplay now exit once finished replaying with --input-file #456
    • πŸ›  Fix prettifier issue, when there is problems with gzip encoding payload #470
  • v0.16.0

    May 01, 2017
  • v0.16.0.2 Changes

    May 01, 2017

    πŸš€ Finally a new big release, a lot of changes on all fronts. New features, usability stability, fixes.

    Thank you, everyone, who made it happen!

    It would not be possible without this people @smostovoy @exklamationmark @manjeshnilange @kudos @oivoodoo @sattvik @ylegat @nrwiersma @SophisticaSean

    πŸ”„ CHANGELOG

    Major

    Minor

    • βž• Add new option --input-raw-expire to configure TCP message expiration
    • Filter response if its request was filtered
    • πŸ‘ Allow space inside filters syntax: `--http-disallow-header 'Host: www.vertaa.fi' now valid syntax
    • πŸ›° File name pattern now support request id %r, will log each request to separate file, and %t for payload type (0 - request, 1 - response, 2 - replayed response).
    • βž• Add basic SNI support to support HTTP replay to hosts that require SNI, such as Amazon API Gateway.
      API Gateway)
    • πŸ›  Fix --output-file-size-limit option
    • Do not add port to Host header #383
    • πŸ‘Œ Improve malformed TCP packet handling to avoid panics
    • πŸ›  Fix HTTP timeout for 204 (No content) responses
    • πŸ›  Fix handling of HTTP error codes like 400 or 304.
    • πŸ›  Fixed replay of HTTP PATCH requests
  • v0.16.0.1

    May 01, 2017
  • v0.15.1 Changes

    August 31, 2016
    • βž• Add support for basic http auth for --output-http 1674b58
    • πŸ›  Fix handling of "Connection: close" for POST requests fc0361d
    • πŸ›  Fix inconsistency in replayed response meta when used in middleware a2f5e43
  • v0.15.1-beta1 Changes

    August 23, 2016
    • πŸ“¦ Gopacket package now vendored same as the rest of 3-rd party dependencies