From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) by mail.toke.dk (Postfix) with ESMTPS id 364427CB8A1 for ; Thu, 14 Jan 2021 20:20:10 +0100 (CET) Authentication-Results: mail.toke.dk; dkim=pass (1024-bit key) header.d=github.com header.i=@github.com header.b=w91Va+DF Received: from github.com (hubbernetes-node-d67363d.ac4-iad.github.net [10.52.123.21]) by smtp.github.com (Postfix) with ESMTPA id 9CB82600F10 for ; Thu, 14 Jan 2021 11:20:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1610652009; bh=ZAJoAVjxDsUsuddvUfp8d17FmEfFN9AiXA4HnSlScNQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: From; b=w91Va+DFBkQhqtzQ4G5KO8ciuBCsS5Dcdz+oyvVl6bnZHhU4Wf/RdgRqKmXBK9oCP NKNkh9Anz7fEANY1N9p2TLDts1n9NcSIK6Ni0tfBxd/TOZ/HofpxQyyZ9PVGJt0zq5 qA5NfrGFESwWY3LhDIFjZ1Pi0Zo2NhB70CZFv+Ig= Date: Thu, 14 Jan 2021 11:20:09 -0800 From: =?UTF-8?B?VG9rZSBIw7hpbGFuZC1Kw7hyZ2Vuc2Vu?= To: tohojo/flent Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_600099699928f_5b1a041860fc"; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: list X-GitHub-Sender: tohojo X-GitHub-Recipient: flent-users X-GitHub-Reason: subscribed X-Auto-Response-Suppress: All X-GitHub-Recipient-Address: flent-users@flent.org Message-ID-Hash: YQTJUBYFTAJKN3J25GWUU6PMKWAIEBCG X-Message-ID-Hash: YQTJUBYFTAJKN3J25GWUU6PMKWAIEBCG X-MailFrom: noreply@github.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header CC: Subscribed X-Mailman-Version: 3.3.2 Reply-To: tohojo/flent Subject: [Flent-users] [tohojo/flent] Release v2.0.0 - Flent v2.0.0 List-Id: Flent discussion list Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: ----==_mimepart_600099699928f_5b1a041860fc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Released on 2021-01-14. This release drops support for Python 2 and Qt4, and associated older versions of matplotlib. The major version bump is to signify this change; otherwise consider this a (long overdue) regular incremental release over v1.3.0. Changes since v1.3.0 include: - Drop support for Python 2; the minimum required Python version is now 3.5. - Drop support for old versions of libraries. The minimum supported version of matplotlib is 1.5, and for the GUI, Qt 5 is required, using either PyQt or PySide2. A new dependency on the 'QtPy' package is added to support both Qt bindings. - Add parsing of WiFi device information as extended metadata (from Emilly Albuquerque). - Add the ping_markings test parameter for setting DSCP values on ping flows. - Add new plot types to rrul_be, tcp_nup and related tests (from Pete Heist). - Add multiple-inheritance support for batch files (from Pete Heist). - Support running multiple instances of http-getter for HTTP tests, by supplying the --http-getter-urllist option multiple times. - Add new rrul_var test where the number of bidirectional streams can be configured via the bidir_streams test parameter. - Support output of aggregate statistics per series also in csv format (via the 'stats_csv' formatter). - Make sure all underlying tools use the same values for symbolic diffserv markings by parsing the symbolic names into numeric values before passing them down to the tools. - Support specifying custom symbolic diffserv markings using the --marking-name options. This can be used to specify site-specific names for diffserv markings (e.g., 'gaming') that can then be used when running a test. - Support specifying the same hostname multiple times (for tests that take multiple targets). Previously, this could only be achieved by using different hostnames that all resolve to the same IP address; now, Flent will accept the same hostname multiple times, but will turn append a number after two slashes ('//N') to the display of the hostname when doing so. - Support ranges and wildcards in the --remote-hosts parameter for running test runners remotely via SSH. For instance '--remote-host=1-3=host1' will run the first three runners on 'host1', or '--remote-host=*=host2' will run all runners on host2. If both concrete numbers (or ranges) and the wildcard are specified, the concrete numbers will take precedence. - Fix several bugs related to plotting, the loading of old data files and RC files, running of commands etc. -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/tohojo/flent/releases/tag/v2.0.0 ----==_mimepart_600099699928f_5b1a041860fc Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Flent v2.0.0

Repository: tohojo/flent · Tag: v2.0.0 · Commit: 23c1829 · Released by: tohojo

Released on 2021-01-14.

This release drops support for Python 2 and Qt4, and associated older versions
of matplotlib. The major version bump is to signify this change; otherwise
consider this a (long overdue) regular incremental release over v1.3.0.

Changes since v1.3.0 include:

  • Drop support for Python 2; the minimum required Python version is now 3.5.

  • Drop support for old versions of libraries. The minimum supported version of
    matplotlib is 1.5, and for the GUI, Qt 5 is required, using either PyQt or
    PySide2. A new dependency on the 'QtPy' package is added to support both Qt
    bindings.

  • Add parsing of WiFi device information as extended metadata (from Emilly
    Albuquerque).

  • Add the ping_markings test parameter for setting DSCP values on ping flows.

  • Add new plot types to rrul_be, tcp_nup and related tests (from Pete Heist).

  • Add multiple-inheritance support for batch files (from Pete Heist).

  • Support running multiple instances of http-getter for HTTP tests, by supplying
    the --http-getter-urllist option multiple times.

  • Add new rrul_var test where the number of bidirectional streams can be
    configured via the bidir_streams test parameter.

  • Support output of aggregate statistics per series also in csv format (via the
    'stats_csv' formatter).

  • Make sure all underlying tools use the same values for symbolic diffserv
    markings by parsing the symbolic names into numeric values before passing them
    down to the tools.

  • Support specifying custom symbolic diffserv markings using the --marking-name
    options. This can be used to specify site-specific names for diffserv markings
    (e.g., 'gaming') that can then be used when running a test.

  • Support specifying the same hostname multiple times (for tests that take
    multiple targets). Previously, this could only be achieved by using different
    hostnames that all resolve to the same IP address; now, Flent will accept the
    same hostname multiple times, but will turn append a number after two slashes
    ('//N') to the display of the hostname when doing so.

  • Support ranges and wildcards in the --remote-hosts parameter for running test
    runners remotely via SSH. For instance '--remote-host=1-3=host1' will run the
    first three runners on 'host1', or '--remote-host=*=host2' will run all
    runners on host2. If both concrete numbers (or ranges) and the wildcard are
    specified, the concrete numbers will take precedence.

  • Fix several bugs related to plotting, the loading of old data files and RC
    files, running of commands etc.

This release has 8 assets:

  • flent-2.0.0-1-any.pkg.tar.xz
  • flent-2.0.0-1.fc34.noarch.rpm
  • flent-2.0.0-py2.py3-none-any.whl
  • flent-2.0.0-py2.py3-none-any.whl.asc
  • flent-doc-2.0.0-1.fc34.noarch.rpm
  • flent_2.0.0-1_all.deb
  • Source code (zip)
  • Source code (tar.gz)

Visit the release page to download them.


You are receiving this because you are watching this repository.
View it on GitHub or unsubscribe from all notifications for this repository.

----==_mimepart_600099699928f_5b1a041860fc--