summaryrefslogtreecommitdiff
path: root/docs/source/release-notes/3.0.3.rst
Commit message (Collapse)AuthorAgeFilesLines
* Bump version for v3.0.33.0.3Ian Cordasco2016-07-301-2/+2
| | | | Update release date as well
* Reset Application.formatter attribute in init_reportIan Cordasco2016-07-301-0/+5
| | | | | | | For our Legacy API users, StyleGuide.init_report should reset the formatter attribute before calling Application.make_formatter(). Closes #200
* Re-allow for relative paths for excludeIan Cordasco2016-07-291-6/+12
| | | | | | | | | | | | | | | | | Previously, all testing was done from the directory in which the configuration file lived, so this bug went unnoticed. However, if you run Flake8 against its own source from a directory above, you would notice that the patterns in the exclude config value in tox.ini were ignored. This is because we (like any reasonable person) are using relative paths. The path is relative, however, to the directory in which the configuration file was located. So we keep track of which directory that is and use that to normalize the paths in the config file. Yes, there is an unrelated change to our tox.ini in this commit as well. ;-) Closes #194
* Open our output file in append mode alwaysIan Cordasco2016-07-291-2/+8
| | | | | | | This avoid overwriting portions of our log output when using Flake8 in verbose mode. Closes #193
* Add 3.0.3 release note about GitLab#164Marc Abramowitz2016-07-291-1/+8
|
* Diable multiprocessing behaviour on WindowsIan Cordasco2016-07-291-0/+6
| | | | | | | | Due to https://bugs.python.org/issue27649, we cannot continue to expect multiprocessing to work as we expect and document it on Windows. As such, we are going to revert back to our previous behaviour of disabling it across all versions of Python on Windows to provide the default expected behaviour of Flake8 on that Operating System.
* Allow plugins that are on by default to be ignoredIan Cordasco2016-07-281-0/+4
| | | | | | | | | | | | | | Previously, to ensure that plugins on by default were reported, we added them to the select list. This means that ignoring them became impossible. To accomodate our reporting logic and a user's ability to ignore, we need to keep our select and extended select lists separated. This allows us to have a better understanding of who is selecting what, where, and how and make our decision as to whether or not an error should be reported more wisely. Closes #195
* Match noqa for users with explanationsbug/178Ian Cordasco2016-07-281-0/+10
This makes the regular expression a bit more complex, and potentially slower, but it will fix the issue where users had noqa comments with colons followed by explanations. Closes #178