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

Scheduled monthly dependency update for March #177

Closed
wants to merge 14 commits into from

Conversation

pyup-bot
Copy link
Contributor

@pyup-bot pyup-bot commented Mar 1, 2018

Updates

Here's a list of all the updates bundled in this pull request. I've added some links to make it easier for you to find all the information you need.

aiohttp 3.0.1 » 3.0.5 PyPI | Changelog | Repo
pytest 3.4.0 » 3.4.1 PyPI | Changelog | Repo | Homepage
aiohttp-jinja2 0.15.0 » 0.16.0 PyPI | Changelog | Repo
aiohttp-session[secure] 2.2.0 » 2.3.0 PyPI | Changelog | Repo
SQLAlchemy 1.2.2 » 1.2.4 PyPI | Changelog | Homepage
coverage 4.4.2 » 4.5.1 PyPI | Changelog | Repo
pytest-mock 1.6.3 » 1.7.1 PyPI | Changelog | Repo
pytest-xdist 1.22.0 » 1.22.2 PyPI | Changelog | Repo
Sphinx 1.6.6 » 1.7.1 PyPI | Changelog | Homepage

Changelogs

aiohttp 3.0.1 -> 3.0.5

3.0.5

==================

  • Fix InvalidStateError on processing a sequence of two
    RequestHandler.data_received calls on web server. (2773)

3.0.4

==================

  • Fix IndexError in HTTP request handling by server. (2752)
  • Fix MultipartWriter.append* no longer returning part/payload. (2759)

3.0.3

==================

  • Relax attrs dependency to minimal actually supported version
    17.0.3 The change allows to avoid version conflicts with currently
    existing test tools.

3.0.2

==================

Security Fix

  • Prevent Windows absolute URLs in static files. Paths like
    /static/D:\path and /static/\\hostname\drive\path are
    forbidden.

pytest 3.4.0 -> 3.4.1

3.4.1

=========================

Bug Fixes

  • Move import of doctest.UnexpectedException to top-level to avoid possible
    errors when using --pdb. (1810 <https://github.com/pytest-dev/pytest/issues/1810>_)
  • Added printing of captured stdout/stderr before entering pdb, and improved a
    test which was giving false negatives about output capturing. (3052 <https://github.com/pytest-dev/pytest/issues/3052>_)
  • Fix ordering of tests using parametrized fixtures which can lead to fixtures
    being created more than necessary. (3161 <https://github.com/pytest-dev/pytest/issues/3161>_)
  • Fix bug where logging happening at hooks outside of "test run" hooks would
    cause an internal error. (3184 <https://github.com/pytest-dev/pytest/issues/3184>_)
  • Detect arguments injected by unittest.mock.patch decorator correctly when
    pypi mock.patch is installed and imported. (3206 <https://github.com/pytest-dev/pytest/issues/3206>_)
  • Errors shown when a pytest.raises() with match= fails are now cleaner
    on what happened: When no exception was raised, the "matching '...'" part got
    removed as it falsely implies that an exception was raised but it didn't
    match. When a wrong exception was raised, it's now thrown (like
    pytest.raised() without match= would) instead of complaining about
    the unmatched text. (3222 <https://github.com/pytest-dev/pytest/issues/3222>_)
  • Fixed output capture handling in doctests on macOS. (985 <https://github.com/pytest-dev/pytest/issues/985>_)

Improved Documentation

  • Add Sphinx parameter docs for match and message args to
    pytest.raises. (3202 <https://github.com/pytest-dev/pytest/issues/3202>_)

Trivial/Internal Changes

  • pytest has changed the publication procedure and is now being published to
    PyPI directly from Travis. (3060 <https://github.com/pytest-dev/pytest/issues/3060>_)
  • Rename ParameterSet._for_parameterize() to _for_parametrize() in
    order to comply with the naming convention. (3166 <https://github.com/pytest-dev/pytest/issues/3166>_)
  • Skip failing pdb/doctest test on mac. (985 <https://github.com/pytest-dev/pytest/issues/985>_)

aiohttp-jinja2 0.15.0 -> 0.16.0

0.16.0


  • Pin to aiohttp 3.0+
  • Deprecate non-async handlers support

aiohttp-session[secure] 2.2.0 -> 2.3.0

2.3.0


  • Support custom encoder and decoder by all storages 252
  • Bump to aiohttp 3.0

SQLAlchemy 1.2.2 -> 1.2.4

1.2.4

:released: February 22, 2018

.. change::
:tags: bug, orm
🎟️ 4193

   Fixed 1.2 regression in ORM versioning feature where a mapping against a
   :func:`.select` or :func:`.alias` that also used a versioning column
   against the underlying table would fail due to the check added as part of
   :ticket:`3673`.

.. change::
:tags: bug, engine
🎟️ 4190

   Fixed regression caused in 1.2.3 due to fix from :ticket:`4181` where
   the changes to the event system involving :class:`.Engine` and
   :class:`.OptionEngine` did not accommodate for event removals, which
   would raise an ``AttributeError`` when invoked at the class
   level.

.. change::
:tags: bug, sql
🎟️ 4197

   Fixed bug where CTE expressions would not have their name or alias name
   quoted when the given name is case sensitive or otherwise requires quoting.
   Pull request courtesy Eric Atkin.

.. changelog::

1.2.3

:released: February 16, 2018

.. change::
:tags: bug, oracle
🎟️ 4182

   Fixed bug in cx_Oracle disconnect detection, used by pre_ping and other
   features, where an error could be raised as DatabaseError which includes a
   numeric error code; previously we weren't checking in this case for a
   disconnect code.

.. change::
:tags: bug, sqlite

   Fixed the import error raised when a platform
   has neither pysqlite2 nor sqlite3 installed, such
   that the sqlite3-related import error is raised,
   not the pysqlite2 one which is not the actual
   failure mode.  Pull request courtesy Robin.

.. change::
:tags: bug, orm
🎟️ 4175

   Fixed bug where the :class:`.Bundle` object did not
   correctly report upon the primary :class:`.Mapper` object
   represened by the bundle, if any.   An immediate
   side effect of this issue was that the new selectinload
   loader strategy wouldn't work with the horizontal sharding
   extension.

.. change::
:tags: bug, sql
🎟️ 4180

   Fixed bug where the :class:`.Enum` type wouldn't handle
   enum "aliases" correctly, when more than one key refers to the
   same value.  Pull request courtesy Daniel Knell.

.. change::
:tags: bug, engine
🎟️ 4181

   Fixed bug where events associated with an :class:`Engine`
   at the class level would be doubled when the
   :meth:`.Engine.execution_options` method were used.  To
   achieve this, the semi-private class :class:`.OptionEngine`
   no longer accepts events directly at the class level
   and will raise an error; the class only propagates class-level
   events from its parent :class:`.Engine`.   Instance-level
   events continue to work as before.

.. change::
:tags: bug, tests
🎟️ 3265

   A test added in 1.2 thought to confirm a Python 2.7 behavior turns out to
   be confirming the behavior only as of Python 2.7.8. Python bug 8743 still
   impacts set comparison in Python 2.7.7 and earlier, so the test in question
   involving AssociationSet no longer runs for these older Python 2.7
   versions.

.. change::
:tags: feature, oracle

   The ON DELETE options for foreign keys are now part of
   Oracle reflection.  Oracle does not support ON UPDATE
   cascades.  Pull request courtesy Miroslav Shubernetskiy.

.. change::
:tags: bug, orm
🎟️ 4188

   Fixed bug in concrete inheritance mapping where user-defined
   attributes such as hybrid properties that mirror the names
   of mapped attributes from sibling classes would be overwritten by
   the mapper as non-accessible at the instance level.   Additionally
   ensured that user-bound descriptors are not implicitly invoked at the class
   level during the mapper configuration stage.

.. change::
:tags: bug, orm
🎟️ 4178

   Fixed bug where the :func:`.orm.reconstructor` event
   helper would not be recognized if it were applied to the
   ``__init__()`` method of the mapped class.

.. change::
:tags: bug, engine
🎟️ 4170

   The :class:`.URL` object now allows query keys to be specified multiple
   times where their values will be joined into a list.  This is to support
   the plugins feature documented at :class:`.CreateEnginePlugin` which
   documents that "plugin" can be passed multiple times. Additionally, the
   plugin names can be passed to :func:`.create_engine` outside of the URL
   using the new :paramref:`.create_engine.plugins` parameter.

.. change::
:tags: feature, sql
🎟️ 3906

   Added support for :class:`.Enum` to persist the values of the enumeration,
   rather than the keys, when using a Python pep-435 style enumerated object.
   The user supplies a callable function that will return the string values to
   be persisted.  This allows enumerations against non-string values to be
   value-persistable as well.  Pull request courtesy Jon Snyder.

.. change::
:tags: feature, orm

   Added new argument :paramref:`.attributes.set_attribute.inititator`
   to the :func:`.attributes.set_attribute` function, allowing an
   event token received from a listener function to be propagated
   to subsequent set events.

.. changelog::

coverage 4.4.2 -> 4.5.1

4.5.1


  • Now that 4.5 properly separated the [run] omit and [report] omit
    settings, an old bug has become apparent. If you specified a package name
    for [run] source, then omit patterns weren't matched inside that package.
    This bug (issue 638_) is now fixed.
  • On Python 3.7, reporting about a decorated function with no body other than a
    docstring would crash coverage.py with an IndexError (issue 640_). This is
    now fixed.
  • Configurer plugins are now reported in the output of --debug=sys.

.. _issue 638: https://bitbucket.org/ned/coveragepy/issues/638/run-omit-is-ignored-since-45
.. _issue 640: https://bitbucket.org/ned/coveragepy/issues/640/indexerror-reporting-on-an-empty-decorated

.. _changes_45:

4.5


  • A new kind of plugin is supported: configurators are invoked at start-up to
    allow more complex configuration than the .coveragerc file can easily do.
    See :ref:api_plugin for details. This solves the complex configuration
    problem described in issue 563_.
  • The fail_under option can now be a float. Note that you must specify the
    [report] precision configuration option for the fractional part to be
    used. Thanks to Lars Hupfeldt Nielsen for help with the implementation.
    Fixes issue 631_.
  • The include and omit options can be specified for both the [run]
    and [report] phases of execution. 4.4.2 introduced some incorrect
    interactions between those phases, where the options for one were confused
    for the other. This is now corrected, fixing issue 621_ and issue 622_.
    Thanks to Daniel Hahler for seeing more clearly than I could.
  • The coverage combine command used to always overwrite the data file, even
    when no data had been read from apparently combinable files. Now, an error
    is raised if we thought there were files to combine, but in fact none of them
    could be used. Fixes issue 629_.
  • The coverage combine command could get confused about path separators
    when combining data collected on Windows with data collected on Linux, as
    described in issue 618_. This is now fixed: the result path always uses
    the path separator specified in the [paths] result.
  • On Windows, the HTML report could fail when source trees are deeply nested,
    due to attempting to create HTML filenames longer than the 250-character
    maximum. Now filenames will never get much larger than 200 characters,
    fixing issue 627_. Thanks to Alex Sandro for helping with the fix.

.. _issue 563: https://bitbucket.org/ned/coveragepy/issues/563/platform-specific-configuration
.. _issue 618: https://bitbucket.org/ned/coveragepy/issues/618/problem-when-combining-windows-generated
.. _issue 621: https://bitbucket.org/ned/coveragepy/issues/621/include-ignored-warning-when-using
.. _issue 622: https://bitbucket.org/ned/coveragepy/issues/622/report-omit-overwrites-run-omit
.. _issue 627: https://bitbucket.org/ned/coveragepy/issues/627/failure-generating-html-reports-when-the
.. _issue 629: https://bitbucket.org/ned/coveragepy/issues/629/multiple-use-of-combine-leads-to-empty
.. _issue 631: https://bitbucket.org/ned/coveragepy/issues/631/precise-coverage-percentage-value

.. _changes_442:

pytest-mock 1.6.3 -> 1.7.1

1.7.1


  • Fix setup.py to correctly read the README.rst. Thanks ghisvail_ for the fix (107_).

.. _107: pytest-dev/pytest-mock#107

1.7.0


Incompatible change

  • pytest-mock no longer supports Python 2.6 and Python 3.3, following the lead of
    pytest and other projects in the community. Thanks hugovk_ for the PR (96_).

Packaging

  • Fix mock requirement in Python 2. Thanks ghisvail_ for the report (101_).

Internal

  • Some tests in pytest-mock's suite are skipped if assertion rewriting is disabled (102_).

.. _ghisvail: https://github.com/ghisvail
.. _hugovk: https://github.com/hugovk
.. _96: pytest-dev/pytest-mock#96
.. _101: pytest-dev/pytest-mock#101
.. _102: pytest-dev/pytest-mock#102

pytest-xdist 1.22.0 -> 1.22.2

1.22.1

================================

Bug Fixes

  • Fix issue when using loadscope or loadfile where tests would fail to
    start if the first scope had only one test. (257 <https://github.com/pytest-dev/pytest-xdist/issues/257>_)

Trivial Changes

  • Change terminology used by pytest-xdist to master and worker in
    arguments and messages (for example --max-worker-reset). (234 <https://github.com/pytest-dev/pytest-xdist/issues/234>_)

Sphinx 1.6.6 -> 1.7.1

1.7.1

=====================================

Deprecated

  • 4623: sphinx.build_main() is deprecated. Use
    sphinx.cmd.build.build_main() instead.
  • autosummary: The interface of sphinx.ext.autosummary.get_documenter() has
    been changed (Since 1.7.0)
  • 4664: sphinx.ext.intersphinx.debug() is deprecated. Use
    sphinx.ext.intersphinx.inspect_main() instead.

Bugs fixed

  • 4608: epub: Invalid meta tag is generated
  • 4260: autodoc: keyword only argument separator is not disappeared if it is
    appeared at top of the argument list
  • 4622: epub: :confval:epub_scheme does not effect to content.opf
  • 4627: graphviz: Fit graphviz images to page
  • 4617: quickstart: PROJECT_DIR argument is required
  • 4623: sphinx.build_main no longer exists in 1.7.0
  • 4615: The argument of sphinx.build has been changed in 1.7.0
  • autosummary: The interface of sphinx.ext.autosummary.get_documenter() has
    been changed
  • 4630: Have order on msgids in sphinx.pot deterministic
  • 4563: autosummary: Incorrect end of line punctuation detection
  • 4577: Enumerated sublists with explicit start with wrong number
  • 4641: A external link in TOC cannot contain "?" with :glob: option
  • C++, add missing parsing of explicit casts and typeid in expression parsing.
  • C++, add missing parsing of this in expression parsing.
  • 4655: Fix incomplete localization strings in Polish
  • 4653: Fix error reporting for parameterless ImportErrors
  • 4664: Reading objects.inv fails again
  • 4662: any refs with term targets crash when an ambiguity is
    encountered

1.7.0

=====================================

Dependencies

1.7.0b3

  • 4019: inheritance_diagram AttributeError stoping make process
  • 4531: autosummary: methods are not treated as attributes
  • 4538: autodoc: sphinx.ext.autodoc.Options has been moved
  • 4539: autodoc emits warnings for partialmethods
  • 4223: doctest: failing tests reported in wrong file, at wrong line
  • i18n: message catalogs are not compiled if specific filenames are given for
    sphinx-build as arguments (refs: 4560)
  • 4027: sphinx.ext.autosectionlabel now expects labels to be the same as they
    are in the raw source; no smart quotes, nothig fancy.
  • 4581: apidoc: Excluded modules still included

Testing

1.7.0b2

  • 4415: autodoc classifies inherited classmethods as regular methods
  • 4415: autodoc classifies inherited staticmethods as regular methods
  • 4472: DOCUMENTATION_OPTIONS is not defined
  • 4491: autodoc: prefer _MockImporter over other importers in sys.meta_path
  • 4490: autodoc: type annotation is broken with python 3.7.0a4+
  • utils package is no longer installed
  • 3952: apidoc: module header is too escaped
  • 4275: Formats accepted by sphinx.util.i18n.format_date are limited
  • 4493: recommonmark raises AttributeError if AutoStructify enabled
  • 4209: intersphinx: In link title, "v" should be optional if target has no
    version
  • 4230: slowdown in writing pages with sphinx 1.6
  • 4522: epub: document is not rebuilt even if config changed

1.7.0b1

  • Add support for docutils 0.14
  • Add tests for the sphinx.ext.inheritance_diagram extension.

1.6.7

=====================================

Bugs fixed

  • 1922: html search: Upper characters problem in French
  • 4412: Updated jQuery version from 3.1.0 to 3.2.1
  • 4438: math: math with labels with whitespace cause html error
  • 2437: make full reference for classes, aliased with "alias of"
  • 4434: pure numbers as link targets produce warning
  • 4477: Build fails after building specific files
  • 4449: apidoc: include "empty" packages that contain modules
  • 3917: citation labels are tranformed to ellipsis
  • 4501: graphviz: epub3 validation error caused if graph is not clickable
  • 4514: graphviz: workaround for wrong map ID which graphviz generates
  • 4525: autosectionlabel does not support parallel build
  • 3953: Do not raise warning when there is a working intersphinx inventory
  • 4487: math: ValueError is raised on parallel build. Thanks to jschueller.
  • 2372: autosummary: invalid signatures are shown for type annotated functions
  • 3942: html: table is not aligned to center even if :align: center

That's it for now!

Happy merging! 🤖

@codecov
Copy link

codecov bot commented Mar 1, 2018

Codecov Report

Merging #177 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #177   +/-   ##
=======================================
  Coverage   94.51%   94.51%           
=======================================
  Files          12       12           
  Lines         711      711           
  Branches       90       90           
=======================================
  Hits          672      672           
  Misses         24       24           
  Partials       15       15

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 95fb6e6...9c29ce4. Read the comment docs.

@pyup-bot
Copy link
Contributor Author

pyup-bot commented Apr 1, 2018

Closing this in favor of #182

@pyup-bot pyup-bot closed this Apr 1, 2018
@samuelcolvin samuelcolvin deleted the pyup-scheduled-update-2018-03-01 branch April 1, 2018 15:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant