Skip to content

Commit

Permalink
Merge pull request #79 from zalando-incubator/issue-74
Browse files Browse the repository at this point in the history
UTF-8-encoded locustfiles on Windows
  • Loading branch information
thilp authored Apr 29, 2022
2 parents 5fa85c1 + ccccec2 commit fd7eee0
Show file tree
Hide file tree
Showing 14 changed files with 1,330 additions and 879 deletions.
24 changes: 23 additions & 1 deletion docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,28 @@ The format is based on `Keep a Changelog`_, and this project adheres to
:local:
:depth: 1

.. _v2.0.0:

v2.0.0
======

- Release date: 2022-04-29 16:07

- Diff__.

__ https://github.com/zalando-incubator/transformer/compare/v1.3.0...v2.0.0

Fixed
-----

UTF-8-encoded locustfiles are properly opened on Windows.
Thank you :user:`rishisharma108`, :user:`akshamat`, :user:`JustinRoll`, and :user:`bascr`,
for reporting this issue! (:pr:`74`)

All usages of the word "blacklist" have been replaced with a modern equivalent,
which is a breaking change (hence the new major version) because of some of
these usages were part of the public API (typically keyword argument names).

.. _v1.3.0:

v1.3.0
Expand Down Expand Up @@ -199,7 +221,7 @@ __ https://github.com/zalando-incubator/transformer/compare/v1.1.2...v1.1.3
Changed
-------

Blacklisting mechanism now opens the `.urlignore` file once per execution of the program,
Denylisting mechanism now opens the `.urlignore` file once per execution of the program,
instead of once per :class:`Request <transformer.request.Request>`.

.. _v1.1.2:
Expand Down
4 changes: 2 additions & 2 deletions docs/Ignoring-urls.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

By default, Transformer converts *all* requests found in the HAR files you
provide.
However, you can **blacklist** (i.e. ignore) certain URLs by creating a
However, you can **ignore** certain URLs by creating a
``.urlignore`` file in the directory in which Transformer is executed.

Example
Expand All @@ -24,7 +24,7 @@ A ``.urlignore`` containing::
- ``https://mosaic01-abc.js``,
- ... and more following the same patterns.

We provide an example blacklist file called `.urlignore_example`_ that you can
We provide an example denylist file called `.urlignore_example`_ that you can
use as a base.
Note that it needs to be **renamed** ``.urlignore`` for Transformer to take it
into account.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
author = "the Zalando maintainers"

# The short X.Y version
version = "1.3"
version = "2.0"
# The full version, including alpha/beta/rc tags
release = "1.3.0"
release = "2.0.0"


# -- General configuration ---------------------------------------------------
Expand Down
Loading

0 comments on commit fd7eee0

Please sign in to comment.