Skip to content

Commit fd7eee0

Browse files
authored
Merge pull request #79 from zalando-incubator/issue-74
UTF-8-encoded locustfiles on Windows
2 parents 5fa85c1 + ccccec2 commit fd7eee0

File tree

14 files changed

+1330
-879
lines changed

14 files changed

+1330
-879
lines changed

docs/Changelog.rst

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,28 @@ The format is based on `Keep a Changelog`_, and this project adheres to
1515
:local:
1616
:depth: 1
1717

18+
.. _v2.0.0:
19+
20+
v2.0.0
21+
======
22+
23+
- Release date: 2022-04-29 16:07
24+
25+
- Diff__.
26+
27+
__ https://github.com/zalando-incubator/transformer/compare/v1.3.0...v2.0.0
28+
29+
Fixed
30+
-----
31+
32+
UTF-8-encoded locustfiles are properly opened on Windows.
33+
Thank you :user:`rishisharma108`, :user:`akshamat`, :user:`JustinRoll`, and :user:`bascr`,
34+
for reporting this issue! (:pr:`74`)
35+
36+
All usages of the word "blacklist" have been replaced with a modern equivalent,
37+
which is a breaking change (hence the new major version) because of some of
38+
these usages were part of the public API (typically keyword argument names).
39+
1840
.. _v1.3.0:
1941

2042
v1.3.0
@@ -199,7 +221,7 @@ __ https://github.com/zalando-incubator/transformer/compare/v1.1.2...v1.1.3
199221
Changed
200222
-------
201223

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

205227
.. _v1.1.2:

docs/Ignoring-urls.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

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

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

27-
We provide an example blacklist file called `.urlignore_example`_ that you can
27+
We provide an example denylist file called `.urlignore_example`_ that you can
2828
use as a base.
2929
Note that it needs to be **renamed** ``.urlignore`` for Transformer to take it
3030
into account.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
author = "the Zalando maintainers"
2424

2525
# The short X.Y version
26-
version = "1.3"
26+
version = "2.0"
2727
# The full version, including alpha/beta/rc tags
28-
release = "1.3.0"
28+
release = "2.0.0"
2929

3030

3131
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)