localstack-core 4.13.2.dev39__py3-none-any.whl → 4.13.2.dev41__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- localstack/services/secretsmanager/provider.py +4 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_callback.py +2 -1
- localstack/version.py +2 -2
- {localstack_core-4.13.2.dev39.dist-info → localstack_core-4.13.2.dev41.dist-info}/METADATA +1 -1
- {localstack_core-4.13.2.dev39.dist-info → localstack_core-4.13.2.dev41.dist-info}/RECORD +12 -12
- {localstack_core-4.13.2.dev39.data → localstack_core-4.13.2.dev41.data}/scripts/localstack +0 -0
- {localstack_core-4.13.2.dev39.data → localstack_core-4.13.2.dev41.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.13.2.dev39.data → localstack_core-4.13.2.dev41.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.13.2.dev39.dist-info → localstack_core-4.13.2.dev41.dist-info}/WHEEL +0 -0
- {localstack_core-4.13.2.dev39.dist-info → localstack_core-4.13.2.dev41.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.13.2.dev39.dist-info → localstack_core-4.13.2.dev41.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.13.2.dev39.dist-info → localstack_core-4.13.2.dev41.dist-info}/top_level.txt +0 -0
|
@@ -319,7 +319,8 @@ class SecretsmanagerProvider(SecretsmanagerApi):
|
|
|
319
319
|
secret_binary = request.get("SecretBinary")
|
|
320
320
|
if not secret_binary and not secret_string:
|
|
321
321
|
raise InvalidRequestException("You must provide either SecretString or SecretBinary.")
|
|
322
|
-
|
|
322
|
+
if secret_binary:
|
|
323
|
+
secret_binary = base64.b64encode(secret_binary)
|
|
323
324
|
version_stages = request.get("VersionStages", ["AWSCURRENT"])
|
|
324
325
|
if not isinstance(version_stages, list):
|
|
325
326
|
version_stages = [version_stages]
|
|
@@ -402,6 +403,8 @@ class SecretsmanagerProvider(SecretsmanagerApi):
|
|
|
402
403
|
secret_id = request["SecretId"]
|
|
403
404
|
secret_string = request.get("SecretString")
|
|
404
405
|
secret_binary = request.get("SecretBinary")
|
|
406
|
+
if secret_binary:
|
|
407
|
+
secret_binary = base64.b64encode(secret_binary)
|
|
405
408
|
description = request.get("Description")
|
|
406
409
|
kms_key_id = request.get("KmsKeyId")
|
|
407
410
|
client_req_token = request.get("ClientRequestToken")
|
|
@@ -217,7 +217,8 @@ class StateTaskServiceCallback(StateTaskService, abc.ABC):
|
|
|
217
217
|
# finished, ensure all waiting # threads on this endpoint (or task) will stop. This is in an effort to
|
|
218
218
|
# release resources sooner than when these would eventually synchronise with the updated environment
|
|
219
219
|
# state of this task.
|
|
220
|
-
callback_endpoint
|
|
220
|
+
if callback_endpoint:
|
|
221
|
+
callback_endpoint.interrupt_all()
|
|
221
222
|
|
|
222
223
|
# Handle Callback outcome types.
|
|
223
224
|
if isinstance(outcome, CallbackOutcomeTimedOut):
|
localstack/version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '4.13.2.
|
|
32
|
-
__version_tuple__ = version_tuple = (4, 13, 2, '
|
|
31
|
+
__version__ = version = '4.13.2.dev41'
|
|
32
|
+
__version_tuple__ = version_tuple = (4, 13, 2, 'dev41')
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -4,7 +4,7 @@ localstack/deprecations.py,sha256=-3IYgCd6LEC3PjO7hbr3Dg-p0PIS6phjmv1qZnj1uo0,15
|
|
|
4
4
|
localstack/openapi.yaml,sha256=jFUzv-NKkJttxb8HRrmKiNYOmJD-zVfPxG3DDMrRwfg,30865
|
|
5
5
|
localstack/plugins.py,sha256=BIJC9dlo0WbP7lLKkCiGtd_2q5oeqiHZohvoRTcejXM,2457
|
|
6
6
|
localstack/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
localstack/version.py,sha256=
|
|
7
|
+
localstack/version.py,sha256=h3kwOLWeiJ7_e5DkKog8PKaT10TRxrzFGzCDZI6vh8g,721
|
|
8
8
|
localstack/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
localstack/aws/accounts.py,sha256=102zpGowOxo0S6UGMpfjw14QW7WCLVAGsnFK5xFMLoo,3043
|
|
10
10
|
localstack/aws/app.py,sha256=n9bJCfJRuMz_gLGAH430c3bIQXgUXeWO5NPfcdL2MV8,5145
|
|
@@ -724,7 +724,7 @@ localstack/services/scheduler/resource_providers/aws_scheduler_schedulegroup.py,
|
|
|
724
724
|
localstack/services/scheduler/resource_providers/aws_scheduler_schedulegroup.schema.json,sha256=J7y7ZJpVQdySSCKu5P-XLk3DhXkVZwrSqPAiCm0ZuJ0,3196
|
|
725
725
|
localstack/services/scheduler/resource_providers/aws_scheduler_schedulegroup_plugin.py,sha256=GTRazbr7H3lDGB6aWJOBHXFO4hLrnoLBjwqHkSmOmW0,573
|
|
726
726
|
localstack/services/secretsmanager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
727
|
-
localstack/services/secretsmanager/provider.py,sha256=
|
|
727
|
+
localstack/services/secretsmanager/provider.py,sha256=5L44_QZn7fRc67g9AWFhCKny77IjS41qRDYLHxngU0E,39813
|
|
728
728
|
localstack/services/secretsmanager/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
729
729
|
localstack/services/secretsmanager/resource_providers/aws_secretsmanager_resourcepolicy.py,sha256=IvQuOKQRSH4F8em56_uk7R1oIBAZbY1m04EIB3JXAtk,3070
|
|
730
730
|
localstack/services/secretsmanager/resource_providers/aws_secretsmanager_resourcepolicy.schema.json,sha256=Unl2o7Hq5pHDjUJh4fxXyUJkDgdxxr-xS7aMvpp8pXU,619
|
|
@@ -1062,7 +1062,7 @@ localstack/services/stepfunctions/asl/component/state/state_execution/state_task
|
|
|
1062
1062
|
localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_api_gateway.py,sha256=xkeFaNU2UJPl_CHRY7GC-DuBieahw76T4HwK2tZh38Q,11190
|
|
1063
1063
|
localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_aws_sdk.py,sha256=obpzlRAx45OEfxBOrnH6h_7d2T61O4tGtkj_zSOIeWU,5847
|
|
1064
1064
|
localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_batch.py,sha256=5lvI2eTePUSRmBx7zx_YbEv540zfu9gRiYzuPY0FQ08,8102
|
|
1065
|
-
localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_callback.py,sha256=
|
|
1065
|
+
localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_callback.py,sha256=4IyGzJiqyhv7YpLjwtiU5fcIaoUjo8vUmaOplQMGSds,15750
|
|
1066
1066
|
localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_dynamodb.py,sha256=WLndcHa-uugR-ccF8e_DbVfsw50ILW1Hgwvaj4EIZXE,5363
|
|
1067
1067
|
localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_ecs.py,sha256=9fd41wfmJvmM5spdHbSd6aGWAZNVUw4KN2Wo-MTDcoU,4825
|
|
1068
1068
|
localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_events.py,sha256=bBloooiJCjQ0GfcRPkak1v3Bmr65lLkxIxCl3JBDz-c,5069
|
|
@@ -1316,12 +1316,12 @@ localstack/utils/server/tcp_proxy.py,sha256=y2NJAmvftTiAYsLU_8qe4W5LGqwUw21i90Pu
|
|
|
1316
1316
|
localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1317
1317
|
localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
|
|
1318
1318
|
localstack/utils/xray/traceid.py,sha256=GKO-R2sMMjlrH2UaLPXlQlZ6flbE7ZKb6IZMtMu_M5U,1110
|
|
1319
|
-
localstack_core-4.13.2.
|
|
1320
|
-
localstack_core-4.13.2.
|
|
1321
|
-
localstack_core-4.13.2.
|
|
1322
|
-
localstack_core-4.13.2.
|
|
1323
|
-
localstack_core-4.13.2.
|
|
1324
|
-
localstack_core-4.13.2.
|
|
1325
|
-
localstack_core-4.13.2.
|
|
1326
|
-
localstack_core-4.13.2.
|
|
1327
|
-
localstack_core-4.13.2.
|
|
1319
|
+
localstack_core-4.13.2.dev41.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
|
|
1320
|
+
localstack_core-4.13.2.dev41.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
|
|
1321
|
+
localstack_core-4.13.2.dev41.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
|
|
1322
|
+
localstack_core-4.13.2.dev41.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
|
|
1323
|
+
localstack_core-4.13.2.dev41.dist-info/METADATA,sha256=c-wk5IPskSeaaBXceTQbXA_zh9j0ZSQuvsywcZrxdd4,5831
|
|
1324
|
+
localstack_core-4.13.2.dev41.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
|
|
1325
|
+
localstack_core-4.13.2.dev41.dist-info/entry_points.txt,sha256=59aAnn8KVHWAHkMg2dOgmgYtRZ-xTX9T4UiIchWgK6k,20975
|
|
1326
|
+
localstack_core-4.13.2.dev41.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
|
|
1327
|
+
localstack_core-4.13.2.dev41.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{localstack_core-4.13.2.dev39.data → localstack_core-4.13.2.dev41.data}/scripts/localstack.bat
RENAMED
|
File without changes
|
|
File without changes
|
{localstack_core-4.13.2.dev39.dist-info → localstack_core-4.13.2.dev41.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{localstack_core-4.13.2.dev39.dist-info → localstack_core-4.13.2.dev41.dist-info}/top_level.txt
RENAMED
|
File without changes
|