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 August #72

Merged
merged 19 commits into from
Aug 8, 2020

Conversation

pyup-bot
Copy link
Contributor

@pyup-bot pyup-bot commented Aug 1, 2020

Update coverage from 5.2 to 5.2.1.

Changelog

5.2.1

----------------------------

- The dark mode HTML report still used light colors for the context listing,
making them unreadable (`issue 1009`_).  This is now fixed.

- The time stamp on the HTML report now includes the time zone. Thanks, Xie
Yanbo (`pull request 960`_).

.. _pull request 960: https://github.com/nedbat/coveragepy/pull/960
.. _issue 1009: https://github.com/nedbat/coveragepy/issues/1009


.. _changes_52:
Links

Update GitPython from 3.1.3 to 3.1.7.

Changelog

3.1.7

=====

* Fix tutorial examples, which disappeared in 3.1.6 due to a missed path change.

3.1.6

=====

* Greatly reduced package size, see https://github.com/gitpython-developers/GitPython/pull/1031

3.1.5

=====

* rollback: package size was reduced significantly not placing tests into the package anymore.
See https://github.com/gitpython-developers/GitPython/issues/1030

3.1.4

=====

* all exceptions now keep track of their cause
* package size was reduced significantly not placing tests into the package anymore.

See the following for details:
https://github.com/gitpython-developers/gitpython/milestone/39?closed=1*
Links

Update isort from 4.3.21 to 5.2.2.

Changelog

5.2.2

- Fixed 1356: return status when arguments are passed in without files or a content stream.

5.2.1

- Update precommit to default to filtering files that are defined in skip.
- Improved relative path detection for `skip` config usage.
- Added recursive symbolic link protection.
- Implemented 1177: Support for color output using `--color`.
- Implemented recursive symlink detection support.

5.2.0

- Implemented 1335: Official API for diff capturing.
- Implemented 1331: Warn when sections don't match up.
- Implemented 1261: By popular demand, `filter_files` can now be set in the config option.
- Implemented 960: Support for respecting git ignore via "--gitignore" or "skip_gitignore=True".
- Implemented 727: Ability to only add imports if existing imports exist.
- Implemented 970: Support for custom sharable isort profiles.
- Implemented 1214: Added support for git_hook lazy option (Thanks sztamas!)
- Implemented 941: Added an additional `multi_line_output` mode for more compact formatting (Thanks sztamas!)
- Implemented 1020: Option for LOCALFOLDER.
- Implemented 1353: Added support for output formatting plugins.
- ` isort: split` can now be used at the end of an import line.
- Fixed 1339: Extra indent is not preserved when isort:skip is used in nested imports.
- Fixed 1348: `--diff` works incorrectly with files that have CRLF line endings.
- Improved code repositories usage of pylint tags (1350).

5.1.4

- Fixed issue 1333: Use of wrap_length raises an exception about it not being lower or equal to line_length.
- Fixed issue 1330: Ensure stdout can be stubbed dynamically for `show_unified_diff` function.

5.1.3

- Fixed issue 1329: Fix comments duplicated when --fass option is set.

5.1.2

- Fixed issue 1219 / 1326: Comments not wrapped for long lines
- Fixed issue 1156: Bug related to isort:skip usage followed by a multiline comment block

5.1.1

- Fixed issue 1322: Occasionally two extra newlines before comment with `-n` & `--fss`.
- Fixed issue 1189: `--diff` broken when reading from standard input.

5.1.0

- isort now throws an exception if an invalid settings path is given (issue 1174).
- Implemented support for automatic redundant alias removal (issue 1281).
- Implemented experimental support for floating all imports to the top of a file (issue 1228)
- Fixed 1178: support for semicolons in decorators.
- Fixed 1315: Extra newline before comment with -n + --fss.
- Fixed 1192: `-k` or `--keep-direct-and-as-imports` option has been deprecated as it is now always on.

**Formatting changes implied:**
- Fixed 1280: rewrite of as imports changes the behavior of the imports.

5.0.9

- Fixed 1301: Import headings in nested sections leads to check errors

5.0.8

- Fixed 1277 & 1278: New line detection issues on Windows.
- Fixed 1294: Fix bundled git hook.

5.0.7

- Fixed 1306: unexpected --diff behavior.
- Fixed 1279: Fixed NOQA comment regression.

5.0.6

- Fixed 1302: comments and --trailing-comma can generate invalid code.
- Fixed 1293: extra new line in indented imports, when immediately followed by a comment.
- Fixed 1304: isort 5 no longer recognises `sre_parse` as a stdlib module.
- Fixed 1300: add_imports moves comments following import section.
- Fixed 1276: Fix a bug that creates only one line after triple quotes.

5.0.5

- Fixed 1285: packaging issue with bundling tests via poetry.
- Fixed 1284: Regression when sorting `.pyi` files from CLI using black profile.
- Fixed 1275 & 1283: Blank line after docstring removed.
- Fixed 1298: CLI Help out of date with isort 5.
- Fixed 1290: Unecessary blank lines above nested imports when import comments turned on.
- Fixed 1297: Usage of `--add-imports` alongside `--check` is broken.
- Fixed 1289: Stream usage no longer auto picking up config file from current working directory.
- Fixed 1296: Force_single_line setting removes immediately following comment line.
- Fixed 1295: `ensure_newline_before_comments` doesnt work with `force_sort_within_sections`.
- Setting not_skip will no longer immediately fail but instead give user a warning and direct
 to upgrade docs.

5.0.4

- Fixed 1264: a regression with comment handling and `force_sort_within_sections` config option
- Added warning for deprecated CLI flags and linked to upgrade guide.

5.0.3

- Fixed setup.py command incorrectly passing check=True as a configuration parameter (see: https://github.com/timothycrosley/isort/issues/1258)
- Fixed missing patch version
- Fixed issue 1253: Atomic fails when passed in not readable output stream

5.0.2

- Ensured black profile was complete, adding missing line_length definition.

5.0.1

- Fixed a runtime error in a vendored dependency (toml).

5.0.0

**Breaking changes:**

- isort now requires Python 3.6+ to run but continues to support formatting on ALL versions of python including
 Python 2 code.
- isort deprecates official support for Python 3.4, removing modules only in this release from known_standard_library:
   - user
- Config files are no longer composed on-top of each-other. Instead the first config file found is used.
 - Since there is no longer composition negative form settings (such as --dont-skip or it's config file variant `not_skip`) are no longer required and have been removed.
- Two-letter shortened setting names (like `ac` for `atomic`) now require two dashes to avoid ambiguity: `--ac`.
- For consistency with other tools `-v` now is shorthand for verbose and `-V` is shorthand for version. See Issue: 1067.
- `length_sort_{section_name}` config usage has been deprecated. Instead `length_sort_sections` list can be used to specify a list of sections that need to be length sorted.
- `safety_excludes` and `unsafe` have been deprecated
- Config now includes as default full set of safety directories defined by safety excludes.
- `--recursive` option has been removed. Directories passed in are now automatically sorted recursive.
- `--apply` option has been removed as it is the default behaviour.
- isort now does nothing, beyond giving instructions and exiting status code 0, when ran with no arguments.
 - a new `--interactive` flag has been added to enable the old style behaviour.
- isort now works on contiguous sections of imports, instead of one whole file at a time.
- ~~isort now formats all nested "as" imports in the "from" form. `import x.y as a` becomes `from x import y as a`.~~ NOTE: This was undone in version 5.1.0 due to feedback it caused issues with some project conventions.
- `keep_direct_and_as_imports` option now defaults to `True`.
- `appdirs` is no longer supported. Unless manually specified, config should be project config only.
- `toml` is now installed as a vendorized module, meaning pyproject.toml based config is always supported.
- Completely new Python API, old version is removed and no longer accessible.
- New module placement logic and module fully replaces old finders. Old approach is still available via `--old-finders`.

Internal:

- isort now utilizes mypy and typing to filter out typing related issues before deployment.
- isort now utilizes black internally to ensure more consistent formatting.

- profile support for common project types (black, django, google, etc)

- Much much more. There is some difficulty in fully capturing the extent of changes in this release - just because of how all encompassing the release is. See: [Github Issues](https://github.com/timothycrosley/isort/issues?q=is%3Aissue+is%3Aclosed) for more.
Links

Update lazy-object-proxy from 1.4.3 to 1.5.1.

Changelog

1.5.1

------------------

* Added ARM64 wheels (manylinux2014).

1.5.0

------------------

* Added support for ``__fspath__``.
* Dropped support for Python 3.4.
Links

Update pytest from 5.4.3 to 6.0.1.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update regex from 2020.6.8 to 2020.7.14.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update schema from 0.7.2 to 0.7.3.

Changelog

0.7.3

Fixes

* JSON Schema: Support schemas where the root is not a dict. [Stavros Korokithakis]

* Do not drop previous errors within an Or criterion. [Stavros Korokithakis]
Links

Update stevedore from 2.0.1 to 3.2.0.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update tqdm from 4.47.0 to 4.48.0.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update urllib3 from 1.25.9 to 1.25.10.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update boto3 from 1.13.25 to 1.14.33.

Changelog

1.14.33

=======

* api-change:``resourcegroupstaggingapi``: [``botocore``] Update resourcegroupstaggingapi client to latest version
* api-change:``storagegateway``: [``botocore``] Update storagegateway client to latest version
* api-change:``wafv2``: [``botocore``] Update wafv2 client to latest version
* api-change:``chime``: [``botocore``] Update chime client to latest version
* api-change:``personalize-runtime``: [``botocore``] Update personalize-runtime client to latest version

1.14.32

=======

* api-change:``organizations``: [``botocore``] Update organizations client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``codebuild``: [``botocore``] Update codebuild client to latest version
* api-change:``kafka``: [``botocore``] Update kafka client to latest version
* api-change:``servicecatalog``: [``botocore``] Update servicecatalog client to latest version
* api-change:``cloudfront``: [``botocore``] Update cloudfront client to latest version
* api-change:``resource-groups``: [``botocore``] Update resource-groups client to latest version
* api-change:``guardduty``: [``botocore``] Update guardduty client to latest version
* api-change:``sesv2``: [``botocore``] Update sesv2 client to latest version

1.14.31

=======

* api-change:``resource-groups``: [``botocore``] Update resource-groups client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``firehose``: [``botocore``] Update firehose client to latest version
* api-change:``servicediscovery``: [``botocore``] Update servicediscovery client to latest version
* api-change:``ecr``: [``botocore``] Update ecr client to latest version
* api-change:``guardduty``: [``botocore``] Update guardduty client to latest version

1.14.30

=======

* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``autoscaling``: [``botocore``] Update autoscaling client to latest version
* api-change:``securityhub``: [``botocore``] Update securityhub client to latest version
* api-change:``ivs``: [``botocore``] Update ivs client to latest version
* api-change:``medialive``: [``botocore``] Update medialive client to latest version
* api-change:``rds``: [``botocore``] Update rds client to latest version
* api-change:``imagebuilder``: [``botocore``] Update imagebuilder client to latest version

1.14.29

=======

* api-change:``glue``: [``botocore``] Update glue client to latest version
* api-change:``datasync``: [``botocore``] Update datasync client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``frauddetector``: [``botocore``] Update frauddetector client to latest version
* api-change:``ssm``: [``botocore``] Update ssm client to latest version
* api-change:``dms``: [``botocore``] Update dms client to latest version

1.14.28

=======

* api-change:``mediaconnect``: [``botocore``] Update mediaconnect client to latest version
* api-change:``sagemaker``: [``botocore``] Update sagemaker client to latest version
* api-change:``kendra``: [``botocore``] Update kendra client to latest version
* api-change:``fsx``: [``botocore``] Update fsx client to latest version
* api-change:``frauddetector``: [``botocore``] Update frauddetector client to latest version
* api-change:``mediapackage``: [``botocore``] Update mediapackage client to latest version
* api-change:``macie2``: [``botocore``] Update macie2 client to latest version
* api-change:``cloudwatch``: [``botocore``] Update cloudwatch client to latest version
* api-change:``mq``: [``botocore``] Update mq client to latest version

1.14.27

=======

* api-change:``directconnect``: [``botocore``] Update directconnect client to latest version
* api-change:``config``: [``botocore``] Update config client to latest version
* api-change:``fsx``: [``botocore``] Update fsx client to latest version
* api-change:``glue``: [``botocore``] Update glue client to latest version
* api-change:``workspaces``: [``botocore``] Update workspaces client to latest version
* api-change:``lightsail``: [``botocore``] Update lightsail client to latest version

1.14.26

=======

* api-change:``quicksight``: [``botocore``] Update quicksight client to latest version
* api-change:``medialive``: [``botocore``] Update medialive client to latest version

1.14.25

=======

* api-change:``codeguruprofiler``: [``botocore``] Update codeguruprofiler client to latest version

1.14.24

=======

* api-change:``frauddetector``: [``botocore``] Update frauddetector client to latest version
* api-change:``rds``: [``botocore``] Update rds client to latest version
* api-change:``codebuild``: [``botocore``] Update codebuild client to latest version
* api-change:``groundstation``: [``botocore``] Update groundstation client to latest version
* api-change:``fms``: [``botocore``] Update fms client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``cloudfront``: [``botocore``] Update cloudfront client to latest version

1.14.23

=======

* api-change:``connect``: [``botocore``] Update connect client to latest version
* api-change:``elasticbeanstalk``: [``botocore``] Update elasticbeanstalk client to latest version
* api-change:``appsync``: [``botocore``] Update appsync client to latest version
* api-change:``macie2``: [``botocore``] Update macie2 client to latest version
* api-change:``application-autoscaling``: [``botocore``] Update application-autoscaling client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version

1.14.22

=======

* enhancement:examples: [``botocore``] Pull in latest examples from EFS.

1.14.21

=======

* api-change:``ivs``: [``botocore``] Update ivs client to latest version

1.14.20

=======

* api-change:``amplify``: [``botocore``] Update amplify client to latest version
* api-change:``wafv2``: [``botocore``] Update wafv2 client to latest version
* api-change:``ebs``: [``botocore``] Update ebs client to latest version
* api-change:``events``: [``botocore``] Update events client to latest version
* api-change:``sagemaker``: [``botocore``] Update sagemaker client to latest version
* api-change:``cloudhsmv2``: [``botocore``] Update cloudhsmv2 client to latest version
* api-change:``appmesh``: [``botocore``] Update appmesh client to latest version
* api-change:``alexaforbusiness``: [``botocore``] Update alexaforbusiness client to latest version
* api-change:``sns``: [``botocore``] Update sns client to latest version
* api-change:``secretsmanager``: [``botocore``] Update secretsmanager client to latest version
* api-change:``comprehend``: [``botocore``] Update comprehend client to latest version

1.14.19

=======

* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``forecast``: [``botocore``] Update forecast client to latest version
* api-change:``ce``: [``botocore``] Update ce client to latest version
* api-change:``organizations``: [``botocore``] Update organizations client to latest version

1.14.18

=======

* api-change:``storagegateway``: [``botocore``] Update storagegateway client to latest version
* api-change:``glue``: [``botocore``] Update glue client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``lakeformation``: [``botocore``] Update lakeformation client to latest version
* api-change:``efs``: [``botocore``] Update efs client to latest version
* api-change:``cloudfront``: [``botocore``] Update cloudfront client to latest version

1.14.17

=======

* api-change:``quicksight``: [``botocore``] Update quicksight client to latest version
* api-change:``rds``: [``botocore``] Update rds client to latest version
* api-change:``iotsitewise``: [``botocore``] Update iotsitewise client to latest version

1.14.16

=======

* api-change:``elasticache``: [``botocore``] Update elasticache client to latest version
* api-change:``connect``: [``botocore``] Update connect client to latest version

1.14.15

=======

* api-change:``imagebuilder``: [``botocore``] Update imagebuilder client to latest version
* api-change:``appsync``: [``botocore``] Update appsync client to latest version
* api-change:``chime``: [``botocore``] Update chime client to latest version
* api-change:``rds``: [``botocore``] Update rds client to latest version
* api-change:``securityhub``: [``botocore``] Update securityhub client to latest version
* api-change:``codebuild``: [``botocore``] Update codebuild client to latest version

1.14.14

=======

* api-change:``ecr``: [``botocore``] Update ecr client to latest version
* api-change:``codeguru-reviewer``: [``botocore``] Update codeguru-reviewer client to latest version
* api-change:``comprehendmedical``: [``botocore``] Update comprehendmedical client to latest version
* api-change:``rds``: [``botocore``] Update rds client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version

1.14.13

=======

* api-change:``codestar-connections``: [``botocore``] Update codestar-connections client to latest version
* api-change:``codeguruprofiler``: [``botocore``] Update codeguruprofiler client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``autoscaling``: [``botocore``] Update autoscaling client to latest version

1.14.12

=======

* api-change:``quicksight``: [``botocore``] Update quicksight client to latest version
* api-change:``cognito-idp``: [``botocore``] Update cognito-idp client to latest version
* api-change:``sagemaker``: [``botocore``] Update sagemaker client to latest version
* api-change:``cloudformation``: [``botocore``] Update cloudformation client to latest version
* api-change:``dms``: [``botocore``] Update dms client to latest version

1.14.11

=======

* api-change:``glue``: [``botocore``] Update glue client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version

1.14.10

=======

* api-change:``iam``: [``botocore``] Update iam client to latest version
* api-change:``organizations``: [``botocore``] Update organizations client to latest version
* api-change:``backup``: [``botocore``] Update backup client to latest version
* api-change:``emr``: [``botocore``] Update emr client to latest version
* api-change:``fsx``: [``botocore``] Update fsx client to latest version
* api-change:``amplify``: [``botocore``] Update amplify client to latest version
* api-change:``codecommit``: [``botocore``] Update codecommit client to latest version
* api-change:``honeycode``: [``botocore``] Update honeycode client to latest version
* api-change:``autoscaling``: [``botocore``] Update autoscaling client to latest version

1.14.9

======

* api-change:``mediatailor``: [``botocore``] Update mediatailor client to latest version
* api-change:``organizations``: [``botocore``] Update organizations client to latest version

1.14.8

======

* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``emr``: [``botocore``] Update emr client to latest version
* api-change:``rekognition``: [``botocore``] Update rekognition client to latest version
* api-change:``rds``: [``botocore``] Update rds client to latest version
* api-change:``sqs``: [``botocore``] Update sqs client to latest version

1.14.7

======

* api-change:``elasticache``: [``botocore``] Update elasticache client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``opsworkscm``: [``botocore``] Update opsworkscm client to latest version
* api-change:``medialive``: [``botocore``] Update medialive client to latest version

1.14.6

======

* api-change:``support``: [``botocore``] Update support client to latest version
* api-change:``mediaconvert``: [``botocore``] Update mediaconvert client to latest version
* api-change:``meteringmarketplace``: [``botocore``] Update meteringmarketplace client to latest version
* api-change:``route53``: [``botocore``] Update route53 client to latest version
* api-change:``ssm``: [``botocore``] Update ssm client to latest version
* api-change:``rds``: [``botocore``] Update rds client to latest version
* api-change:``sesv2``: [``botocore``] Update sesv2 client to latest version

1.14.5

======

* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``snowball``: [``botocore``] Update snowball client to latest version
* api-change:``appmesh``: [``botocore``] Update appmesh client to latest version
* api-change:``route53``: [``botocore``] Update route53 client to latest version
* api-change:``macie2``: [``botocore``] Update macie2 client to latest version

1.14.4

======

* api-change:``cloudfront``: [``botocore``] Update cloudfront client to latest version
* api-change:``dataexchange``: [``botocore``] Update dataexchange client to latest version
* api-change:``qldb``: [``botocore``] Update qldb client to latest version
* api-change:``autoscaling``: [``botocore``] Update autoscaling client to latest version
* api-change:``lambda``: [``botocore``] Update lambda client to latest version
* api-change:``polly``: [``botocore``] Update polly client to latest version

1.14.3

======

* api-change:``chime``: [``botocore``] Update chime client to latest version
* api-change:``appconfig``: [``botocore``] Update appconfig client to latest version
* api-change:``alexaforbusiness``: [``botocore``] Update alexaforbusiness client to latest version
* api-change:``cognito-idp``: [``botocore``] Update cognito-idp client to latest version
* api-change:``iot``: [``botocore``] Update iot client to latest version

1.14.2

======

* api-change:``apigateway``: [``botocore``] Update apigateway client to latest version
* api-change:``glue``: [``botocore``] Update glue client to latest version
* api-change:``cloudformation``: [``botocore``] Update cloudformation client to latest version
* api-change:``storagegateway``: [``botocore``] Update storagegateway client to latest version

1.14.1

======

* api-change:``lex-models``: [``botocore``] Update lex-models client to latest version
* api-change:``imagebuilder``: [``botocore``] Update imagebuilder client to latest version
* api-change:``iot-data``: [``botocore``] Update iot-data client to latest version
* api-change:``ecs``: [``botocore``] Update ecs client to latest version

1.14.0

======

* api-change:``macie2``: [``botocore``] Update macie2 client to latest version
* api-change:``servicecatalog``: [``botocore``] Update servicecatalog client to latest version
* api-change:``codeartifact``: [``botocore``] Update codeartifact client to latest version
* api-change:``compute-optimizer``: [``botocore``] Update compute-optimizer client to latest version
* api-change:``shield``: [``botocore``] Update shield client to latest version
* api-change:``lightsail``: [``botocore``] Update lightsail client to latest version
* api-change:``ec2``: [``botocore``] Update ec2 client to latest version
* api-change:``appconfig``: [``botocore``] Update appconfig client to latest version
* feature:SSO: [``botocore``] Added support for the SSO credential provider. This allows the SDK to retrieve temporary AWS credentials from a profile configured to use SSO credentials.
* api-change:``dlm``: [``botocore``] Update dlm client to latest version

1.13.26

=======

* api-change:``transfer``: [``botocore``] Update transfer client to latest version
Links

Update botocore from 1.16.25 to 1.17.33.

Changelog

1.17.33

=======

* api-change:``resourcegroupstaggingapi``: Update resourcegroupstaggingapi client to latest version
* api-change:``storagegateway``: Update storagegateway client to latest version
* api-change:``wafv2``: Update wafv2 client to latest version
* api-change:``chime``: Update chime client to latest version
* api-change:``personalize-runtime``: Update personalize-runtime client to latest version

1.17.32

=======

* api-change:``organizations``: Update organizations client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``codebuild``: Update codebuild client to latest version
* api-change:``kafka``: Update kafka client to latest version
* api-change:``servicecatalog``: Update servicecatalog client to latest version
* api-change:``cloudfront``: Update cloudfront client to latest version
* api-change:``resource-groups``: Update resource-groups client to latest version
* api-change:``guardduty``: Update guardduty client to latest version
* api-change:``sesv2``: Update sesv2 client to latest version

1.17.31

=======

* api-change:``resource-groups``: Update resource-groups client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``firehose``: Update firehose client to latest version
* api-change:``servicediscovery``: Update servicediscovery client to latest version
* api-change:``ecr``: Update ecr client to latest version
* api-change:``guardduty``: Update guardduty client to latest version

1.17.30

=======

* api-change:``ec2``: Update ec2 client to latest version
* api-change:``autoscaling``: Update autoscaling client to latest version
* api-change:``securityhub``: Update securityhub client to latest version
* api-change:``ivs``: Update ivs client to latest version
* api-change:``medialive``: Update medialive client to latest version
* api-change:``rds``: Update rds client to latest version
* api-change:``imagebuilder``: Update imagebuilder client to latest version

1.17.29

=======

* api-change:``glue``: Update glue client to latest version
* api-change:``datasync``: Update datasync client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``frauddetector``: Update frauddetector client to latest version
* api-change:``ssm``: Update ssm client to latest version
* api-change:``dms``: Update dms client to latest version

1.17.28

=======

* api-change:``mediaconnect``: Update mediaconnect client to latest version
* api-change:``sagemaker``: Update sagemaker client to latest version
* api-change:``kendra``: Update kendra client to latest version
* api-change:``fsx``: Update fsx client to latest version
* api-change:``frauddetector``: Update frauddetector client to latest version
* api-change:``mediapackage``: Update mediapackage client to latest version
* api-change:``macie2``: Update macie2 client to latest version
* api-change:``cloudwatch``: Update cloudwatch client to latest version
* api-change:``mq``: Update mq client to latest version

1.17.27

=======

* api-change:``directconnect``: Update directconnect client to latest version
* api-change:``config``: Update config client to latest version
* api-change:``fsx``: Update fsx client to latest version
* api-change:``glue``: Update glue client to latest version
* api-change:``workspaces``: Update workspaces client to latest version
* api-change:``lightsail``: Update lightsail client to latest version

1.17.26

=======

* api-change:``quicksight``: Update quicksight client to latest version
* api-change:``medialive``: Update medialive client to latest version

1.17.25

=======

* api-change:``codeguruprofiler``: Update codeguruprofiler client to latest version

1.17.24

=======

* api-change:``frauddetector``: Update frauddetector client to latest version
* api-change:``rds``: Update rds client to latest version
* api-change:``codebuild``: Update codebuild client to latest version
* api-change:``groundstation``: Update groundstation client to latest version
* api-change:``fms``: Update fms client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``cloudfront``: Update cloudfront client to latest version

1.17.23

=======

* api-change:``connect``: Update connect client to latest version
* api-change:``elasticbeanstalk``: Update elasticbeanstalk client to latest version
* api-change:``appsync``: Update appsync client to latest version
* api-change:``macie2``: Update macie2 client to latest version
* api-change:``application-autoscaling``: Update application-autoscaling client to latest version
* api-change:``ec2``: Update ec2 client to latest version

1.17.22

=======

* enhancement:examples: Pull in latest examples from EFS.

1.17.21

=======

* api-change:``ivs``: Update ivs client to latest version

1.17.20

=======

* api-change:``amplify``: Update amplify client to latest version
* api-change:``wafv2``: Update wafv2 client to latest version
* api-change:``ebs``: Update ebs client to latest version
* api-change:``events``: Update events client to latest version
* api-change:``sagemaker``: Update sagemaker client to latest version
* api-change:``cloudhsmv2``: Update cloudhsmv2 client to latest version
* api-change:``appmesh``: Update appmesh client to latest version
* api-change:``alexaforbusiness``: Update alexaforbusiness client to latest version
* api-change:``sns``: Update sns client to latest version
* api-change:``secretsmanager``: Update secretsmanager client to latest version
* api-change:``comprehend``: Update comprehend client to latest version

1.17.19

=======

* api-change:``ec2``: Update ec2 client to latest version
* api-change:``forecast``: Update forecast client to latest version
* api-change:``ce``: Update ce client to latest version
* api-change:``organizations``: Update organizations client to latest version

1.17.18

=======

* api-change:``storagegateway``: Update storagegateway client to latest version
* api-change:``glue``: Update glue client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``lakeformation``: Update lakeformation client to latest version
* api-change:``efs``: Update efs client to latest version
* api-change:``cloudfront``: Update cloudfront client to latest version

1.17.17

=======

* api-change:``quicksight``: Update quicksight client to latest version
* api-change:``rds``: Update rds client to latest version
* api-change:``iotsitewise``: Update iotsitewise client to latest version

1.17.16

=======

* api-change:``elasticache``: Update elasticache client to latest version
* api-change:``connect``: Update connect client to latest version

1.17.15

=======

* api-change:``imagebuilder``: Update imagebuilder client to latest version
* api-change:``appsync``: Update appsync client to latest version
* api-change:``chime``: Update chime client to latest version
* api-change:``rds``: Update rds client to latest version
* api-change:``securityhub``: Update securityhub client to latest version
* api-change:``codebuild``: Update codebuild client to latest version

1.17.14

=======

* api-change:``ecr``: Update ecr client to latest version
* api-change:``codeguru-reviewer``: Update codeguru-reviewer client to latest version
* api-change:``comprehendmedical``: Update comprehendmedical client to latest version
* api-change:``rds``: Update rds client to latest version
* api-change:``ec2``: Update ec2 client to latest version

1.17.13

=======

* api-change:``codestar-connections``: Update codestar-connections client to latest version
* api-change:``codeguruprofiler``: Update codeguruprofiler client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``autoscaling``: Update autoscaling client to latest version

1.17.12

=======

* api-change:``quicksight``: Update quicksight client to latest version
* api-change:``cognito-idp``: Update cognito-idp client to latest version
* api-change:``sagemaker``: Update sagemaker client to latest version
* api-change:``cloudformation``: Update cloudformation client to latest version
* api-change:``dms``: Update dms client to latest version

1.17.11

=======

* api-change:``glue``: Update glue client to latest version
* api-change:``ec2``: Update ec2 client to latest version

1.17.10

=======

* api-change:``iam``: Update iam client to latest version
* api-change:``organizations``: Update organizations client to latest version
* api-change:``backup``: Update backup client to latest version
* api-change:``emr``: Update emr client to latest version
* api-change:``fsx``: Update fsx client to latest version
* api-change:``amplify``: Update amplify client to latest version
* api-change:``codecommit``: Update codecommit client to latest version
* api-change:``honeycode``: Update honeycode client to latest version
* api-change:``autoscaling``: Update autoscaling client to latest version

1.17.9

======

* api-change:``mediatailor``: Update mediatailor client to latest version
* api-change:``organizations``: Update organizations client to latest version

1.17.8

======

* api-change:``ec2``: Update ec2 client to latest version
* api-change:``emr``: Update emr client to latest version
* api-change:``rekognition``: Update rekognition client to latest version
* api-change:``rds``: Update rds client to latest version
* api-change:``sqs``: Update sqs client to latest version

1.17.7

======

* api-change:``elasticache``: Update elasticache client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``opsworkscm``: Update opsworkscm client to latest version
* api-change:``medialive``: Update medialive client to latest version

1.17.6

======

* api-change:``support``: Update support client to latest version
* api-change:``mediaconvert``: Update mediaconvert client to latest version
* api-change:``meteringmarketplace``: Update meteringmarketplace client to latest version
* api-change:``route53``: Update route53 client to latest version
* api-change:``ssm``: Update ssm client to latest version
* api-change:``rds``: Update rds client to latest version
* api-change:``sesv2``: Update sesv2 client to latest version

1.17.5

======

* api-change:``ec2``: Update ec2 client to latest version
* api-change:``snowball``: Update snowball client to latest version
* api-change:``appmesh``: Update appmesh client to latest version
* api-change:``route53``: Update route53 client to latest version
* api-change:``macie2``: Update macie2 client to latest version

1.17.4

======

* api-change:``cloudfront``: Update cloudfront client to latest version
* api-change:``dataexchange``: Update dataexchange client to latest version
* api-change:``qldb``: Update qldb client to latest version
* api-change:``autoscaling``: Update autoscaling client to latest version
* api-change:``lambda``: Update lambda client to latest version
* api-change:``polly``: Update polly client to latest version

1.17.3

======

* api-change:``chime``: Update chime client to latest version
* api-change:``appconfig``: Update appconfig client to latest version
* api-change:``alexaforbusiness``: Update alexaforbusiness client to latest version
* api-change:``cognito-idp``: Update cognito-idp client to latest version
* api-change:``iot``: Update iot client to latest version

1.17.2

======

* api-change:``apigateway``: Update apigateway client to latest version
* api-change:``glue``: Update glue client to latest version
* api-change:``cloudformation``: Update cloudformation client to latest version
* api-change:``storagegateway``: Update storagegateway client to latest version

1.17.1

======

* api-change:``lex-models``: Update lex-models client to latest version
* api-change:``imagebuilder``: Update imagebuilder client to latest version
* api-change:``iot-data``: Update iot-data client to latest version
* api-change:``ecs``: Update ecs client to latest version

1.17.0

======

* api-change:``macie2``: Update macie2 client to latest version
* api-change:``servicecatalog``: Update servicecatalog client to latest version
* api-change:``codeartifact``: Update codeartifact client to latest version
* api-change:``compute-optimizer``: Update compute-optimizer client to latest version
* api-change:``shield``: Update shield client to latest version
* api-change:``lightsail``: Update lightsail client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``appconfig``: Update appconfig client to latest version
* feature:SSO: Added support for the SSO credential provider. This allows the SDK to retrieve temporary AWS credentials from a profile configured to use SSO credentials.
* api-change:``dlm``: Update dlm client to latest version

1.16.26

=======

* api-change:``transfer``: Update transfer client to latest version
Links

Update docutils from 0.15.2 to 0.16.

Changelog

0.16

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

.. Note::

Docutils 0.15.x is the last version supporting Python 2.6, 3.3 and 3.4.

Docutils 0.16.x supports Python 2.7 and Python >= 3.5 natively,
without the use of the ``2to3`` tool.

* reStructuredText:

- Keep `backslash escapes`__ in the document tree. This allows, e.g.,
 escaping of author-separators in `bibliographic fields`__.

__ http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.htmlescaping-mechanism
__ docs/ref/rst/restructuredtext.htmlbibliographic-fields

* LaTeX writer:

- Informal titles of type "rubric" default to bold-italic and left aligned.
- Deprecate ``\docutilsrole`` prefix for styling commands:
 use ``\DUrole`` instead.
- Fix topic subtitle.
- Add "latex writers" to the `config_section_dependencies`.
- Ignore classes for `rubric` elements
 (class wrapper interferes with LaTeX formatting).

* tools/buildhtml.py

- New option "--html-writer" allows to select "html__" (default),
 "html4" or "html5".

__ html: docs/user/html.htmlhtml

* docutils/io.py

- Remove the `handle_io_errors` option from io.FileInput/Output.

* docutils/nodes.py

- If `auto_id_prefix`_ ends with "%", this is replaced with the tag name.

.. _auto_id_prefix: docs/user/config.htmlauto-id-prefix

* Various bugfixes and improvements (see HISTORY_).
Links

@kmcquade
Copy link
Collaborator

kmcquade commented Aug 3, 2020

Need to pin versions for isort. That is what caused issues in the dependency updates for both Cloudsplaining and Policy Sentry.

Related:

Solution: Set this in the requirements file:

  • isort>=4.2.5,<5

Pin version for `isort`
@salesforce-cla
Copy link

salesforce-cla bot commented Aug 8, 2020

Thanks for the contribution! Before we can merge this, we need @pyup-bot to sign the Salesforce.com Contributor License Agreement.

@kmcquade kmcquade merged commit 861a868 into master Aug 8, 2020
@kmcquade kmcquade deleted the pyup-scheduled-update-2020-08-01 branch August 8, 2020 20:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants