localstack-core 2026.3.1.dev4__py3-none-any.whl → 2026.3.1.dev7__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/cloudformation/scaffolding/__main__.py +4 -13
- localstack/version.py +2 -2
- {localstack_core-2026.3.1.dev4.dist-info → localstack_core-2026.3.1.dev7.dist-info}/METADATA +1 -1
- {localstack_core-2026.3.1.dev4.dist-info → localstack_core-2026.3.1.dev7.dist-info}/RECORD +9 -9
- {localstack_core-2026.3.1.dev4.data → localstack_core-2026.3.1.dev7.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-2026.3.1.dev4.dist-info → localstack_core-2026.3.1.dev7.dist-info}/WHEEL +0 -0
- {localstack_core-2026.3.1.dev4.dist-info → localstack_core-2026.3.1.dev7.dist-info}/entry_points.txt +0 -0
- {localstack_core-2026.3.1.dev4.dist-info → localstack_core-2026.3.1.dev7.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-2026.3.1.dev4.dist-info → localstack_core-2026.3.1.dev7.dist-info}/top_level.txt +0 -0
|
@@ -258,22 +258,13 @@ def template_path(
|
|
|
258
258
|
output_path = (
|
|
259
259
|
tests_root_dir(pro)
|
|
260
260
|
.joinpath(
|
|
261
|
-
f"{resource_name.python_compatible_service_name.lower()}/resource_providers/templates/{stub}"
|
|
261
|
+
f"{resource_name.python_compatible_service_name.lower()}/resource_providers/{resource_name.path_compatible_full_name()}/templates/{stub}"
|
|
262
262
|
)
|
|
263
263
|
.resolve()
|
|
264
264
|
)
|
|
265
265
|
|
|
266
266
|
if root:
|
|
267
|
-
|
|
268
|
-
root_dir(pro)
|
|
269
|
-
.joinpath(
|
|
270
|
-
f"tests/aws/{resource_name.python_compatible_service_name.lower()}/resource_providers/templates"
|
|
271
|
-
)
|
|
272
|
-
.resolve()
|
|
273
|
-
)
|
|
274
|
-
|
|
275
|
-
common_root = os.path.relpath(output_path, test_path)
|
|
276
|
-
return Path(common_root)
|
|
267
|
+
return Path(os.path.relpath(output_path, root))
|
|
277
268
|
else:
|
|
278
269
|
return output_path
|
|
279
270
|
|
|
@@ -342,8 +333,8 @@ class TemplateRenderer:
|
|
|
342
333
|
# TODO: we might want to segregate each provider in its own directory
|
|
343
334
|
# e.g. .../resource_providers/aws_iam_role/test_X.py vs. .../resource_providers/iam/test_X.py
|
|
344
335
|
# add extra parameters
|
|
345
|
-
tests_output_path =
|
|
346
|
-
f"
|
|
336
|
+
tests_output_path = tests_root_dir(self.pro).joinpath(
|
|
337
|
+
f"{resource_name.python_compatible_service_name.lower()}/resource_providers/{resource_name.path_compatible_full_name()}"
|
|
347
338
|
)
|
|
348
339
|
match file_type:
|
|
349
340
|
case FileType.getatt_test:
|
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 = '2026.3.1.
|
|
32
|
-
__version_tuple__ = version_tuple = (2026, 3, 1, '
|
|
31
|
+
__version__ = version = '2026.3.1.dev7'
|
|
32
|
+
__version_tuple__ = version_tuple = (2026, 3, 1, 'dev7')
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -4,7 +4,7 @@ localstack/deprecations.py,sha256=g0E-_q3apmHlOET2Gg5_biUtN2b4XygnI5aeeaZm6ZY,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=X6R5FvBHMxHRXjjGGeiravSC_7EkXHa_PZ6t_9ANWPg,723
|
|
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
|
|
@@ -328,7 +328,7 @@ localstack/services/cloudformation/resource_providers/aws_cloudformation_waitcon
|
|
|
328
328
|
localstack/services/cloudformation/resource_providers/aws_cloudformation_waitconditionhandle.py,sha256=0o8h2Ml4dJCsQEBRx-mXNV9ze6Qt0Rw4wYNsIWZcz80,2482
|
|
329
329
|
localstack/services/cloudformation/resource_providers/aws_cloudformation_waitconditionhandle.schema.json,sha256=6CZ5-KzlDz6TQDZ135hlbi_l9XRv0paSzNzndezU-8U,351
|
|
330
330
|
localstack/services/cloudformation/resource_providers/aws_cloudformation_waitconditionhandle_plugin.py,sha256=6q84dXh7PVoM-0nwdzwGZ6bAnbs0qADlfX5BQ9q4tis,633
|
|
331
|
-
localstack/services/cloudformation/scaffolding/__main__.py,sha256=
|
|
331
|
+
localstack/services/cloudformation/scaffolding/__main__.py,sha256=IeNzgYo3Vy_P2Xi2u9JoUdBNygJyiRnZvccoPEdXheU,35070
|
|
332
332
|
localstack/services/cloudformation/scaffolding/propgen.py,sha256=id7l43zsJsTgUyQ8F3jpfbpEoicc8GC6cB2ESEktDxc,7936
|
|
333
333
|
localstack/services/cloudformation/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
334
|
localstack/services/cloudformation/v2/entities.py,sha256=OGEeM0As66yO0DS87Z9Oxqrkb0rXSRWmLFVozPk20Vs,16858
|
|
@@ -1314,10 +1314,10 @@ localstack/utils/server/tcp_proxy.py,sha256=y2NJAmvftTiAYsLU_8qe4W5LGqwUw21i90Pu
|
|
|
1314
1314
|
localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1315
1315
|
localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
|
|
1316
1316
|
localstack/utils/xray/traceid.py,sha256=GKO-R2sMMjlrH2UaLPXlQlZ6flbE7ZKb6IZMtMu_M5U,1110
|
|
1317
|
-
localstack_core-2026.3.1.
|
|
1318
|
-
localstack_core-2026.3.1.
|
|
1319
|
-
localstack_core-2026.3.1.
|
|
1320
|
-
localstack_core-2026.3.1.
|
|
1321
|
-
localstack_core-2026.3.1.
|
|
1322
|
-
localstack_core-2026.3.1.
|
|
1323
|
-
localstack_core-2026.3.1.
|
|
1317
|
+
localstack_core-2026.3.1.dev7.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
|
|
1318
|
+
localstack_core-2026.3.1.dev7.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
|
|
1319
|
+
localstack_core-2026.3.1.dev7.dist-info/METADATA,sha256=4fUhiZBgBUn7ogqO6i-dejJykPN6yNOMtcC5XGQz25Y,5774
|
|
1320
|
+
localstack_core-2026.3.1.dev7.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
1321
|
+
localstack_core-2026.3.1.dev7.dist-info/entry_points.txt,sha256=cYpESfvLyTcDVr7nzorIXuq0-UREqjIdM5sXx_0YYbo,20908
|
|
1322
|
+
localstack_core-2026.3.1.dev7.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
|
|
1323
|
+
localstack_core-2026.3.1.dev7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{localstack_core-2026.3.1.dev4.dist-info → localstack_core-2026.3.1.dev7.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{localstack_core-2026.3.1.dev4.dist-info → localstack_core-2026.3.1.dev7.dist-info}/top_level.txt
RENAMED
|
File without changes
|