summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-07-30 00:42:32 +0000
committerIan Cordasco <graffatcolmingov@gmail.com>2016-07-30 00:42:32 +0000
commitb02855769bcc89e9c9ad8aa84e6cfdf3fdac1f2e (patch)
tree609e22c5263c7d97cf39dec8b621b3edd70edee5 /docs/source
parente619fd3b2095a4951ecd1cfceab195e6f501f8ee (diff)
parent63f5f15068ed7031b4375168392ca64a856083b6 (diff)
downloadflake8-b02855769bcc89e9c9ad8aa84e6cfdf3fdac1f2e.tar.gz
Merge branch 'bug/194' into 'master'
Re-allow for relative paths for exclude *Description of changes* Use the directory that the configuration file is found in as the parent (instead of the current working directory) when normalizing paths. *Related to:* #194 See merge request !109
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/release-notes/3.0.3.rst18
1 files changed, 12 insertions, 6 deletions
diff --git a/docs/source/release-notes/3.0.3.rst b/docs/source/release-notes/3.0.3.rst
index 92252ac..0f62a50 100644
--- a/docs/source/release-notes/3.0.3.rst
+++ b/docs/source/release-notes/3.0.3.rst
@@ -4,21 +4,25 @@
- Disable ``--jobs`` for any version of Python on Windows.
(See also `this Python bug report`_)
-- Fix ``# noqa`` comments followed by a ``:`` and explanation broken by
- 3.0.0 (See also `GitLab#178`_)
-
-- Fix issue where users were unable to ignore plugin errors that were on
- by default. (See also `GitLab#195`_)
-
- Raise exception when entry_point in plugin not callable.
This raises an informative error when a plugin fails to load because its
entry_point is not callable, which can happen with a plugin which is buggy or
not updated for the current version of flake8. This is nicer than raising a
`PicklingError` about failing to pickle a module (See also `GitLab#164`_)
+- Fix ``# noqa`` comments followed by a ``:`` and explanation broken by
+ 3.0.0 (See also `GitLab#178`_)
+
- Always open our output file in append mode so we do not overwrite log
messages. (See also `GitLab#193`_)
+- When normalizing path values read from configuration, keep in context the
+ directory where the configuration was found so that relative paths work.
+ (See also `GitLab#194`_)
+
+- Fix issue where users were unable to ignore plugin errors that were on
+ by default. (See also `GitLab#195`_)
+
.. links
.. _GitLab#164:
@@ -27,6 +31,8 @@
https://gitlab.com/pycqa/flake8/issues/178
.. _GitLab#193:
https://gitlab.com/pycqa/flake8/issues/193
+.. _GitLab#194:
+ https://gitlab.com/pycqa/flake8/issues/193
.. _GitLab#195:
https://gitlab.com/pycqa/flake8/issues/195
.. _this Python bug report: