Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump v3 #82

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 = "2.0"
version = "3.0"
# The full version, including alpha/beta/rc tags
release = "2.0.0"
release = "3.0.0"


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