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

⬆️(dependencies) update python dependencies #1419

Merged
merged 1 commit into from Mar 7, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 7, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
bandit (source, changelog) ==1.7.3 -> ==1.7.4 age adoption passing confidence
boto3 ==1.21.8 -> ==1.21.13 age adoption passing confidence
django (source, changelog) ==4.0.2 -> ==4.0.3 age adoption passing confidence
djangorestframework_simplejwt ==5.0.0 -> ==5.1.0 age adoption passing confidence
ipython (source) ==8.1.0 -> ==8.1.1 age adoption passing confidence
responses ==0.18.0 -> ==0.19.0 age adoption passing confidence

Release Notes

PyCQA/bandit

v1.7.4

Compare Source

What's Changed

New Contributors

Full Changelog: PyCQA/bandit@1.7.3...1.7.4

boto/boto3

v1.21.13

Compare Source

=======

  • api-change:synthetics: [botocore] Allow custom handler function.
  • api-change:transfer: [botocore] Add waiters for server online and offline.
  • api-change:devops-guru: [botocore] Amazon DevOps Guru now integrates with Amazon CodeGuru Profiler. You can view CodeGuru Profiler recommendations for your AWS Lambda function in DevOps Guru. This feature is enabled by default for new customers as of 3/4/2022. Existing customers can enable this feature with UpdateEventSourcesConfig.
  • api-change:macie: [botocore] Amazon Macie Classic (macie) has been discontinued and is no longer available. A new Amazon Macie (macie2) is now available with significant design improvements and additional features.
  • api-change:ec2: [botocore] Documentation updates for Amazon EC2.
  • api-change:sts: [botocore] Documentation updates for AWS Security Token Service.
  • api-change:connect: [botocore] This release updates the *InstanceStorageConfig APIs so they support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_SEGMENTS. Use this resource type to enable streaming for real-time contact analysis and to associate the Kinesis stream where real-time contact analysis segments will be published.

v1.21.12

Compare Source

=======

  • api-change:greengrassv2: [botocore] Doc only update that clarifies Create Deployment section.
  • api-change:fsx: [botocore] This release adds support for data repository associations to use root ("/") as the file system path
  • api-change:kendra: [botocore] Amazon Kendra now suggests spell corrections for a query. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/query-spell-check.html
  • api-change:appflow: [botocore] Launching Amazon AppFlow Marketo as a destination connector SDK.
  • api-change:timestream-query: [botocore] Documentation only update for SDK and CLI

v1.21.11

Compare Source

=======

  • api-change:gamelift: [botocore] Minor updates to address errors.
  • api-change:cloudtrail: [botocore] Add bytesScanned field into responses of DescribeQuery and GetQueryResults.
  • api-change:athena: [botocore] This release adds support for S3 Object Ownership by allowing the S3 bucket owner full control canned ACL to be set when Athena writes query results to S3 buckets.
  • api-change:keyspaces: [botocore] This release adds support for data definition language (DDL) operations
  • api-change:ecr: [botocore] This release adds support for tracking images lastRecordedPullTime.

v1.21.10

Compare Source

=======

  • api-change:mediapackage: [botocore] This release adds Hybridcast as an available profile option for Dash Origin Endpoints.
  • api-change:rds: [botocore] Documentation updates for Multi-AZ DB clusters.
  • api-change:mgn: [botocore] Add support for GP3 and IO2 volume types. Add bootMode to LaunchConfiguration object (and as a parameter to UpdateLaunchConfigurationRequest).
  • api-change:kafkaconnect: [botocore] Adds operation for custom plugin deletion (DeleteCustomPlugin) and adds new StateDescription field to DescribeCustomPlugin and DescribeConnector responses to return errors from asynchronous resource creation.

v1.21.9

Compare Source

======

  • api-change:finspace-data: [botocore] Add new APIs for managing Users and Permission Groups.
  • api-change:amplify: [botocore] Add repositoryCloneMethod field for hosting an Amplify app. This field shows what authorization method is used to clone the repo: SSH, TOKEN, or SIGV4.
  • api-change:fsx: [botocore] This release adds support for the following FSx for OpenZFS features: snapshot lifecycle transition messages, force flag for deleting file systems with child resources, LZ4 data compression, custom record sizes, and unsetting volume quotas and reservations.
  • api-change:fis: [botocore] This release adds logging support for AWS Fault Injection Simulator experiments. Experiment templates can now be configured to send experiment activity logs to Amazon CloudWatch Logs or to an S3 bucket.
  • api-change:route53-recovery-cluster: [botocore] This release adds a new API option to enable overriding safety rules to allow routing control state updates.
  • api-change:amplifyuibuilder: [botocore] We are adding the ability to configure workflows and actions for components.
  • api-change:athena: [botocore] This release adds support for updating an existing named query.
  • api-change:ec2: [botocore] This release adds support for new AMI property 'lastLaunchedTime'
  • api-change:servicecatalog-appregistry: [botocore] AppRegistry is deprecating Application and Attribute-Group Name update feature. In this release, we are marking the name attributes for Update APIs as deprecated to give a heads up to our customers.
django/django

v4.0.3

Compare Source

jazzband/djangorestframework-simplejwt

v5.1.0

Compare Source

  • Add back support for PyJWT 1.7.1 (#​536)
  • Make the token serializer configurable (#​521)
  • Simplify using custom token classes in serializers (#​517)
  • Fix default_app_config deprecation (#​415)
  • Add missing integration instructions for drf-yasg (#​505)
  • Add blacklist view to log out users (#​306)
  • Set default verifying key to empty str (#​487)
  • Add docs about TOKEN_USER_CLASS (#​455)

Meta:

  • Add auto locale updater (#​456)

Translations:

  • Added Korean translations (#​501)
  • Added Turkish translations (#​508)
ipython/ipython

v8.1.1

Compare Source

getsentry/responses

v0.19.0

Compare Source

  • Added a registry that provides more strict ordering based on the invocation index.
    See responses.registries.OrderedRegistry.
  • Added shortcuts for each request method: delete, get, head, options, patch, post, put.
    For example, to add response for POST request you can use responses.post() instead
    of responses.add(responses.POST).
  • Prevent responses.activate decorator to leak, if wrapped function called from within another
    wrapped function. Also, allow calling of above mentioned chain. See #​481 for more details.
  • Expose get_registry() method of RequestsMock object. Replaces internal _get_registry().
  • query_param_matcher can now accept dictionaries with int and float values.
  • Add support for the loose version of query_param_matcher via named argument strict_match.
  • Added support for async/await functions.
  • response_callback is no longer executed on exceptions raised by failed Responses
  • Change logic of _get_url_and_path to comply with RFC 3986. Now URL match occurs by matching
    schema, authority and path, where path is terminated by the first question mark ("?") or
    number sign ("#") character, or by the end of the URI.
  • An error is now raised when both content_type and headers[content-type] are provided as parameters.
  • When a request isn't matched the passthru prefixes are now included in error messages.

Configuration

📅 Schedule: "before 7am on monday" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 7, 2022
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 5a89570 to 387cdbc Compare March 7, 2022 08:05
@lunika lunika merged commit 5052f7a into master Mar 7, 2022
@lunika lunika deleted the renovate/python-dependencies branch March 7, 2022 08:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants