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 weekly dependency update for week 45 #162

Closed
wants to merge 9 commits into from

Conversation

pyup-bot
Copy link
Contributor

@pyup-bot pyup-bot commented Nov 6, 2017

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.

Flask-SQLAlchemy 2.2 » 2.3.2 PyPI | Changelog | Repo | Docs
psycopg2 2.7.3.1 » 2.7.3.2 PyPI | Changelog | Homepage
SQLAlchemy 1.1.14 » 1.1.15 PyPI | Changelog | Homepage
pytest 3.2.2 » 3.2.3 PyPI | Changelog | Repo | Homepage
WebTest 2.0.28 » 2.0.29 PyPI | Changelog | Homepage
flake8 3.4.1 » 3.5.0 PyPI | Changelog | Repo
flake8-debugger 1.4.0 » 3.0.0 PyPI | Changelog | Repo
flake8-quotes 0.11.0 » 0.12.0 PyPI | Repo
awscli 1.11.154 » 1.11.181 PyPI | Changelog | Homepage

Changelogs

Flask-SQLAlchemy 2.2 -> 2.3.2

2.3.2


Released on October 11, 2017

  • Don't mask the parent table for single-table inheritance models. (561_)

.. _561: pallets-eco/flask-sqlalchemy#561

2.3.1


Released on October 5, 2017

  • If a model has a table name that matches an existing table in the metadata,
    use that table. Fixes a regression where reflected tables were not picked up
    by models. (551_)
  • Raise the correct error when a model has a table name but no primary key.
    (556_)
  • Fix repr on models that don't have an identity because they have not been
    flushed yet. (555_)
  • Allow specifying a max_per_page limit for pagination, to avoid users
    specifying high values in the request args. (542_)
  • For paginate with error_out=False, the minimum value for page is
    1 and per_page is 0. (558_)

.. _542: pallets-eco/flask-sqlalchemy#542
.. _551: pallets-eco/flask-sqlalchemy#551
.. _555: pallets-eco/flask-sqlalchemy#555
.. _556: pallets-eco/flask-sqlalchemy#556
.. _558: pallets-eco/flask-sqlalchemy#558

2.3.0


Released on September 28, 2017

  • Multiple bugs with __tablename__ generation are fixed. Names will be
    generated for models that define a primary key, but not for single-table
    inheritance subclasses. Names will not override a declared_attr.
    PrimaryKeyConstraint is detected. (541_)
  • Passing an existing declarative_base() as model_class to
    SQLAlchemy.__init__ will use this as the base class instead of creating
    one. This allows customizing the metaclass used to construct the base.
    (546_)
  • The undocumented DeclarativeMeta internals that the extension uses for
    binds and table name generation have been refactored to work as mixins.
    Documentation is added about how to create a custom metaclass that does not
    do table name generation. (546_)
  • Model and metaclass code has been moved to a new models module.
    _BoundDeclarativeMeta is renamed to DefaultMeta; the old name will be
    removed in 3.0. (546_)
  • Models have a default repr that shows the model name and primary key.
    (530_)
  • Fixed a bug where using init_app would cause connectors to always use the
    current_app rather than the app they were created for. This caused issues
    when multiple apps were registered with the extension. (547_)

.. _530: pallets-eco/flask-sqlalchemy#530
.. _541: pallets-eco/flask-sqlalchemy#541
.. _546: pallets-eco/flask-sqlalchemy#546
.. _547: pallets-eco/flask-sqlalchemy#547

psycopg2 2.7.3.1 -> 2.7.3.2

2.7.3.2

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Wheel package compiled against PostgreSQL 10.0 libpq and OpenSSL 1.0.2l
    (:tickets:601, 602)

SQLAlchemy 1.1.14 -> 1.1.15

1.1.15

:released: November 3, 2017

.. change:
:tags: bug, sqlite
🎟️ 4099
:versions: 1.2.0b3

   Fixed bug where SQLite CHECK constraint reflection would fail
   if the referenced table were in a remote schema, e.g. on SQLite a
   remote database referred to by ATTACH.

.. change::
:tags: bug, mysql
🎟️ 4097
:versions: 1.2.0b3

   Warning emitted when MariaDB 10.2.8 or earlier in the 10.2
   series is detected as there are major issues with CHECK
   constraints within these versions that were resolved as of
   10.2.9.
   Note that this changelog message was NOT released with
   SQLAlchemy 1.2.0b3 and was added retroactively.

.. change::
:tags: bug, mssql
🎟️ 4095
:versions: 1.2.0b3

   Added a full range of "connection closed" exception codes to the
   PyODBC dialect for SQL Server, including '08S01', '01002', '08003',
   '08007', '08S02', '08001', 'HYT00', 'HY010'.  Previously, only '08S01'
   was covered.

.. change::
:tags: bug, sql
🎟️ 4126
:versions: 1.2.0b4

   Fixed bug where ``__repr__`` of :class:`.ColumnDefault` would fail
   if the argument were a tuple.  Pull request courtesy Nicolas Caniart.

.. change::
:tags: bug, orm, declarative
🎟️ 4124
:versions: 1.2.0b4

   Fixed bug where a descriptor that is elsewhere a mapped column
   or relationship within a hierarchy based on :class:`.AbstractConcreteBase`
   would be referred towards during a refresh operation, causing an error
   as the attribute is not mapped as a mapper property.
   A similar issue can arise for other attributes like the "type" column
   added by :class:`.AbstractConcreteBase` if the class fails to include
   "concrete=True" in its mapper, however the check here should also
   prevent that scenario from causing a problem.

.. change:: 4006
:tags: bug, postgresql
🎟️ 4006
:versions: 1.2.0b3

   Made further fixes to the :class:`.ARRAY` class in conjunction with
   COLLATE, as the fix made in :ticket:`4006` failed to accommodate
   for a multidimensional array.

.. change::
:tags: bug, orm, ext
🎟️ 4116
:versions: 1.2.0b4

   Fixed bug where the association proxy would inadvertently link itself
   to an :class:`.AliasedClass` object if it were called first with
   the :class:`.AliasedClass` as a parent, causing errors upon subsequent
   usage.

.. change::
:tags: bug, mysql
🎟️ 4120
:versions: 1.2.0b4

   MySQL 5.7.20 now warns for use of the tx_isolation variable; a version
   check is now performed and uses transaction_isolation instead
   to prevent this warning.

.. change::
:tags: bug, postgresql
🎟️ 4107
:versions: 1.2.0b3

   Fixed bug in :obj:`.array_agg` function where passing an argument
   that is already of type :class:`.ARRAY`, such as a Postgresql
   :obj:`.postgresql.array` construct, would produce a ``ValueError``, due
   to the function attempting to nest the arrays.

.. change::
:tags: bug, orm
🎟️ 4078
:versions: 1.2.0b3

   Fixed bug where ORM relationship would warn against conflicting sync
   targets (e.g. two relationships would both write to the same column) for
   sibling classes in an inheritance hierarchy, where the two relationships
   would never actually conflict during writes.

.. change::
:tags: bug, postgresql
🎟️ 4074
:versions: 1.2.0b3

   Fixed bug in Postgresql :meth:`.postgresql.dml.Insert.on_conflict_do_update`
   which would prevent the insert statement from being used as a CTE,
   e.g. via :meth:`.Insert.cte`, within another statement.

.. change::
:tags: bug, orm
🎟️ 4103
:versions: 1.2.0b3

   Fixed bug where correlated select used against single-table inheritance
   entity would fail to render correctly in the outer query, due to adjustment
   for single inheritance discriminator criteria inappropriately re-applying
   the criteria to the outer query.

.. change:
:tags: bug, mysql
🎟️ 4096
:versions: 1.2.0b3

   Fixed issue where CURRENT_TIMESTAMP would not reflect correctly
   in the MariaDB 10.2 series due to a syntax change, where the function
   is now represented as ``current_timestamp()``.

.. change:
:tags: bug, mysql
🎟️ 4098
:versions: 1.2.0b3

   MariaDB 10.2 now supports CHECK constraints (warning: use version 10.2.9
   or greater due to upstream issues noted in :ticket:`4097`).  Reflection
   now takes these CHECK constraints into account when they are present in
   the ``SHOW CREATE TABLE`` output.

.. change::
:tags: bug, sql
🎟️ 4093
:versions: 1.2.0b3

   Fixed bug where the recently added :meth:`.ColumnOperators.any_`
   and :meth:`.ColumnOperators.all_` methods didn't work when called
   as methods, as opposed to using the standalone functions
   :func:`~.expression.any_` and :func:`~.expression.all_`.  Also
   added documentation examples for these relatively unintuitive
   SQL operators.

.. changelog::

pytest 3.2.2 -> 3.2.3

3.2.3

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

Bug Fixes

  • Fix crash in tab completion when no prefix is given. (2748 <https://github.com/pytest-dev/pytest/issues/2748>_)
  • The equality checking function (__eq__) of MarkDecorator returns
    False if one object is not an instance of MarkDecorator. (2758 <https://github.com/pytest-dev/pytest/issues/2758>_)
  • When running pytest --fixtures-per-test: don't crash if an item has no
    fixtureinfo attribute (e.g. doctests) (2788 <https://github.com/pytest-dev/pytest/issues/2788>)

Improved Documentation

  • In help text of -k option, add example of using not to not select
    certain tests whose names match the provided expression. (1442 <https://github.com/pytest-dev/pytest/issues/1442>_)
  • Add note in parametrize.rst about calling metafunc.parametrize
    multiple times. (1548 <https://github.com/pytest-dev/pytest/issues/1548>_)

Trivial/Internal Changes

  • Set xfail_strict=True in pytest's own test suite to catch expected
    failures as soon as they start to pass. (2722 <https://github.com/pytest-dev/pytest/issues/2722>_)
  • Fix typo in example of passing a callable to markers (in example/markers.rst)
    (2765 <https://github.com/pytest-dev/pytest/issues/2765>_)

WebTest 2.0.28 -> 2.0.29

2.0.29


  • Bugfix: Preserve submit order for radio inputs.
  • Fixed 186: avoid UnicodeDecodeError in linter with py2 when a header contain
    non ascii chars

flake8 3.4.1 -> 3.5.0

3.5.0


You can view the 3.5.0 milestone_ on GitLab for more details.

New Dependency Information

  • Allow for PyFlakes 1.6.0 (See also GitLab359_)
  • Start using new PyCodestyle checks for bare excepts and ambiguous identifier
    (See also GitLab361_)

Features

  • Print out information about configuring VCS hooks (See also GitLab335_)
  • Allow users to develop plugins "local" to a repository without using
    setuptools. See our documentation on local plugins for more information.
    (See also GitLab357_)

Bugs Fixed

  • Catch and helpfully report UnicodeDecodeError\ s when parsing
    configuration files. (See also GitLab358_)

.. all links
.. _3.5.0 milestone:
https://gitlab.com/pycqa/flake8/milestones/20

.. issue links
.. _GitLab335:
https://gitlab.com/pycqa/flake8/issues/335
.. _GitLab357:
https://gitlab.com/pycqa/flake8/issues/357
.. _GitLab358:
https://gitlab.com/pycqa/flake8/issues/358
.. _GitLab359:
https://gitlab.com/pycqa/flake8/issues/359
.. _GitLab361:
https://gitlab.com/pycqa/flake8/issues/361

.. merge request links

awscli 1.11.154 -> 1.11.181

1.11.181

========

  • api-change:ecs: Update ecs command to latest version

1.11.180

========

  • api-change:apigateway: Update apigateway command to latest version
  • bugfix:datapipeline: Fixed a bug in datapipeline where list-runs could only handle 100 runs.

1.11.179

========

  • api-change:cloudhsmv2: Update cloudhsmv2 command to latest version
  • api-change:acm: Update acm command to latest version
  • api-change:directconnect: Update directconnect command to latest version

1.11.178

========

  • api-change:cloudfront: Update cloudfront command to latest version
  • api-change:ec2: Update ec2 command to latest version

1.11.177

========

  • api-change:glue: Update glue command to latest version
  • api-change:pinpoint: Update pinpoint command to latest version
  • api-change:config: Update config command to latest version
  • api-change:elasticache: Update elasticache command to latest version

1.11.176

========

  • api-change:organizations: Update organizations command to latest version

1.11.175

========

  • bugfix:sqs: Fixed an issue where the queue-url for an sqs operation was being fetched rather than used transparently.
  • api-change:ec2: Update ec2 command to latest version

1.11.174

========

  • api-change:ssm: Update ssm command to latest version
  • api-change:sqs: Update sqs command to latest version

1.11.173

========

  • api-change:lightsail: Update lightsail command to latest version

1.11.172

========

  • api-change:es: Update es command to latest version

1.11.171

========

  • api-change:waf-regional: Update waf-regional command to latest version
  • api-change:cloudhsm: Update cloudhsm command to latest version
  • api-change:rds: Update rds command to latest version
  • api-change:ec2: Update ec2 command to latest version
  • api-change:es: Update es command to latest version
  • api-change:waf: Update waf command to latest version
  • enhancement:s3: Add a no-progress flag to s3 transfer commands. Resolves 519 <https://github.com/aws/aws-cli/issues/519>__.
  • enchancement:cloudwatch: Extract --storage-resolution in put-metric-data as a top level argument.

1.11.170

========

  • api-change:elasticbeanstalk: Update elasticbeanstalk command to latest version
  • api-change:polly: Update polly command to latest version
  • api-change:rds: Update rds command to latest version
  • api-change:codecommit: Update codecommit command to latest version
  • api-change:dms: Update dms command to latest version

1.11.169

========

  • api-change:ses: Update ses command to latest version
  • api-change:ecr: Update ecr command to latest version

1.11.168

========

  • enhancement:aws cloudformation: Add support for forcing files to be zipped when uploaded
  • api-change:ec2: Update ec2 command to latest version
  • api-change:opsworkscm: Update opsworkscm command to latest version
  • api-change:elbv2: Update elbv2 command to latest version

1.11.167

========

  • api-change:sqs: Update sqs command to latest version

1.11.166

========

  • api-change:redshift: Update redshift command to latest version

1.11.165

========

  • api-change:kinesisanalytics: Update kinesisanalytics command to latest version
  • api-change:route53domains: Update route53domains command to latest version

1.11.164

========

  • api-change:ssm: Update ssm command to latest version
  • api-change:ec2: Update ec2 command to latest version

1.11.163

========

  • api-change:cloudhsm: Update cloudhsm command to latest version

1.11.162

========

  • api-change:route53: Update route53 command to latest version
  • api-change:organizations: Update organizations command to latest version
  • api-change:mturk: Update mturk command to latest version
  • api-change:codebuild: Update codebuild command to latest version
  • api-change:appstream: Update appstream command to latest version

1.11.161

========

  • api-change:pinpoint: Update pinpoint command to latest version
  • bugfix:Config: Properly handle spaces in profile names when being written out via the configure command, fixes 2806 <https://github.com/aws/aws-cli/issues/2806>__

1.11.160

========

  • api-change:cloudformation: Update cloudformation command to latest version

1.11.159

========

  • api-change:rds: Update rds command to latest version
  • api-change:config: Update config command to latest version
  • api-change:ecs: Update ecs command to latest version

1.11.158

========

  • api-change:budgets: Update budgets command to latest version
  • api-change:logs: Update logs command to latest version
  • api-change:ec2: Update ec2 command to latest version

1.11.157

========

  • api-change:greengrass: Update greengrass command to latest version
  • api-change:codepipeline: Update codepipeline command to latest version
  • api-change:appstream: Update appstream command to latest version
  • api-change:rds: Update rds command to latest version
  • api-change:lex-runtime: Update lex-runtime command to latest version

1.11.156

========

  • api-change:ec2: Update ec2 command to latest version

1.11.155

========

  • api-change:ec2: Update ec2 command to latest version
  • api-change:iam: Update iam command to latest version
  • api-change:ses: Update ses command to latest version

That's it for now!

Happy merging! 🤖

@pyup-bot
Copy link
Contributor Author

Closing this in favor of #163

@pyup-bot pyup-bot closed this Nov 13, 2017
@hndrewaall hndrewaall deleted the pyup-scheduled-update-11-06-2017 branch November 13, 2017 14:17
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.

None yet

1 participant