Update moto requirement from <5.0.0 to <6.0.0 in /requirements
Updates the requirements on moto to permit the latest version.
Changelog
Sourced from moto's changelog.
5.0.1
Docker Digest for 5.0.1: sha256:b6004b2e112c0ba870b2103049548abecec476edeac7a724ed9c71249358e821
New Methods: * SecretsManager: * remove_regions_from_replication() * replicate_secret_to_regions()Miscellaneous: * AWSLambda: create_event_source_mapping() now supports Kinesis streams as targets * CloudFront: Removed error handling for InvalidOriginServer, as our validation was too strict * DynamoDB: batch_execute_statement() now supports for Update/Insert/Delete-statements * DynamoDB: query() now correctly handles calls where both Limit and ScanIndexForward are supplied * EC2: Now supports availability zones for eu-central-2 (Zurich) * S3: list_objects_v2() can now return more then 1000 results max (again) * S3: copy_object() now allows in-place copies when bucket versioning is enabled * SecretsManager: create_secrets() now supports the parameters AddReplicaRegions and ForceOverwriteReplicaSecret * SecretsManager: list_secrets() now supports the filters primary-region and owning-service
5.0.0
Docker Digest for 5.0.0: sha256:2faf2460a6446dfe472ac0d799e00341b1c84203d08540c247a6cc09be7c54e9
General: * All decorators have been replaced with a single decorator: `mock_aws`* The `mock_batch_simple` and `mock_lambda_simple` decorators can now be configured using the `config`-parameter: `@mock_aws(config={"batch": {"use_docker": False}, "lambda": {"use_docker": False}})`
It is now possible to configure methods/services which should reach out to AWS. @mock_aws( config={"core": {"mock_credentials": False, "passthrough": {"urls": [], "services": []}}} )
All requests now return a RequestId
Miscellaneous:
* IAM: The AWS managed Policies are no longer loaded by default. If your application depends on these policies, tell Moto explicitly to load them like so:@mock_aws(config={"iam": {"load_aws_managed_policies": True}})
Or by setting an environment variable: MOTO_IAM_LOAD_MANAGED_POLICIES=true
- S3: list_objects() now returns a hashed ContinuationToken
... (truncated)
Commits
046d0d0Prep release 5.0.1 (#7308)a4b7187S3: Allow in place copies when bucket versioning is enabled (#7303)7eb3c57chore: update SSM default parameters (#7307)e8626a8chore: update EC2 Instance Types (#7306)4b8b3e2chore: update EC2 Instance Offerings (#7305)62647abDynamoDB: Improve support for Update-statements in batch_execute-statement() ...3e775caBump software.amazon.awssdk:bom in /other_langs/tests_java (#7299)23ab00eBump org.apache.maven.plugins:maven-surefire-plugin (#7298)911b5f1Admin: Fix scaffold script imports (#7296)cd146a5chore: update SSM default AMI's (#7293)- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
See https://github.com/nteract/papermill/commit/cb2eb378d51b954c74f31f7be110c8caa691423a
According to the changelog, moto removed the mock_s3 decorator. It is all mock_aws now.