-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Bump moto-ext to 4.2.0.post1 #9044
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
Conversation
bff4dad
to
45d7be4
Compare
@@ -1874,7 +1874,7 @@ def s3_response_is_delete_keys(fn, self): | |||
""" | |||
return get_safe(self.querystring, "$.x-id.0") == "DeleteObjects" or fn(self) | |||
|
|||
@patch(moto_s3_responses.S3ResponseInstance.parse_bucket_name_from_url, pass_target=False) | |||
@patch(moto_s3_responses.S3Response.parse_bucket_name_from_url, pass_target=False) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should have been a sign from the big issue this bump is fixing, but well 🤷♂️ fixing the patch to properly work
@@ -314,23 +314,6 @@ def fake_secret_update( | |||
self.last_changed_date = time.time() | |||
|
|||
|
|||
class FakeSecretVersionStore(dict): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've ran some secretsmanager tests and it seems they run without the patch now, I think it has been fixed upstream with getmoto/moto#6720
Seems like there's still an issue with
PR linked: getmoto/moto#6724 |
1e21b9f
to
bd4ac0f
Compare
Only |
Green -ext run on this branch: https://github.com/localstack/localstack-ext/actions/runs/6054306633 |
Motivation
Bring in the latest Moto changes.
Changes
Stop using the
clean_key_name
that was removed in getmoto/moto#6602