diff --git a/docs/Changelog.rst b/docs/Changelog.rst index 93fe8ab..0a50a04 100644 --- a/docs/Changelog.rst +++ b/docs/Changelog.rst @@ -15,6 +15,39 @@ The format is based on `Keep a Changelog`_, and this project adheres to :local: :depth: 1 +.. _v3.0.0: + +v3.0.0 +====== + +- Release date: 2022-09-30 19:50 + +- Diff__. + +__ https://github.com/zalando-incubator/transformer/compare/v2.0.0...v3.0.0 + +Changed +------- + +The `.urlignore` file is no longer supported. +It is replaced by an `.ignore` file, where each line is a **regular +expression** applied to **the whole URL** (:pr:`80`). +By contrast, each line of the `.urlignore` file was a fixed string, and +Transformer was looking for it to appear as-is in the *domain* part only. + +Therefore, you should **be careful when migrating** your `.urlignore` into +`.ignore` files; a simple copy-and-paste may result in some requests being +handled differently. + +Thank you :user:`cyberw` for this feature request and for contributing the +implementation! + +Removed +------- + +The lowest version of Python supported by Transformer is now 3.7. +Python 3.6 is no longer supported. + .. _v2.0.0: v2.0.0 diff --git a/docs/conf.py b/docs/conf.py index 61825fe..a2df0a4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,9 +23,9 @@ author = "the Zalando maintainers" # The short X.Y version -version = "2.0" +version = "3.0" # The full version, including alpha/beta/rc tags -release = "2.0.0" +release = "3.0.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 9e4a6df..307c8ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "har-transformer" -version = "2.0.0" +version = "3.0.0" description = "A tool to convert HAR files into a locustfile." authors = [ "Serhii Cherniavskyi ",