repro-lambda 0.6.1__tar.gz → 0.7.0__tar.gz
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.
- repro_lambda-0.7.0/.release-please-manifest.json +3 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/CHANGELOG.md +7 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/PKG-INFO +1 -1
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/pyproject.toml +1 -1
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/__init__.py +1 -1
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/manifest.py +1 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_manifest.py +18 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/uv.lock +1 -1
- repro_lambda-0.6.1/.release-please-manifest.json +0 -3
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/.github/workflows/build.yml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/.github/workflows/ci.yml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/.github/workflows/move-major-tag.yml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/.github/workflows/promote.yml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/.github/workflows/publish.yml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/.github/workflows/release.yml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/.gitignore +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/.pre-commit-config.yaml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/LICENSE +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/README.md +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/SETUP.md +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/release-please-config.json +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/__main__.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/build.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/catalog.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/cli.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/docker_runner.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/git_guard.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/hasher.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/promote.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/s3_uploader.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/source_locker.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/source_stager.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/sources.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/verify.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/src/repro_lambda/zip_packager.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/__init__.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/conftest.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_nodejs_lambda/handler/index.js +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_nodejs_lambda/handler/package-lock.json +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_nodejs_lambda/handler/package.json +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_nodejs_lambda/lambdas.toml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_python_lambda/handler/app.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_python_lambda/handler/requirements.arm64.lock +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_python_lambda/handler/requirements.in +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_python_lambda/lambdas.toml +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_build_integration.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_build_nodejs.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_catalog.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_cli_build.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_cli_lock.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_cli_smoke.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_docker_runner.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_docker_runner_nodejs.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_e2e_nodejs_lambda.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_e2e_python_lambda.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_extra_files.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_git_guard.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_hasher.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_per_lambda_builder.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_promote.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_python_byte_compat_regression.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_s3_uploader.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_source_locker.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_source_stager.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_sources.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_sources_hash.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_sources_schema.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_verify.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_zip_excludes.py +0 -0
- {repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/test_zip_packager.py +0 -0
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.0](https://github.com/antonbabenko/repro-lambda/compare/v0.6.1...v0.7.0) (2026-06-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* support the python3.14 lambda runtime ([#9](https://github.com/antonbabenko/repro-lambda/issues/9)) ([c3fcd8c](https://github.com/antonbabenko/repro-lambda/commit/c3fcd8ceb400891e152293ba06ada747aaa21f9f))
|
|
9
|
+
|
|
3
10
|
## [0.6.1](https://github.com/antonbabenko/repro-lambda/compare/v0.6.0...v0.6.1) (2026-06-22)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: repro-lambda
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: Build reproducible AWS Lambda packages outside Terraform, optimized for terraform-aws-lambda by serverless.tf.
|
|
5
5
|
Project-URL: Homepage, https://github.com/antonbabenko/repro-lambda
|
|
6
6
|
Project-URL: Repository, https://github.com/antonbabenko/repro-lambda
|
|
@@ -45,6 +45,24 @@ def test_load_manifest_rejects_unknown_runtime(tmp_path: Path):
|
|
|
45
45
|
load_manifest(bad)
|
|
46
46
|
|
|
47
47
|
|
|
48
|
+
def test_load_manifest_accepts_python314(tmp_path: Path):
|
|
49
|
+
ok = tmp_path / "lambdas.toml"
|
|
50
|
+
ok.write_text(
|
|
51
|
+
"[[lambda]]\n"
|
|
52
|
+
'logical_name = "app"\n'
|
|
53
|
+
'source_dir = "app"\n'
|
|
54
|
+
'requirements_lock = "app/requirements.arm64.lock"\n'
|
|
55
|
+
'runtime = "python3.14"\n'
|
|
56
|
+
'arch = "arm64"\n'
|
|
57
|
+
'handler = "app.lambda_handler"\n'
|
|
58
|
+
"\n"
|
|
59
|
+
"[builder]\n"
|
|
60
|
+
'base_image_python = "public.ecr.aws/lambda/python:3.14@sha256:' + "0" * 64 + '"\n'
|
|
61
|
+
)
|
|
62
|
+
manifest = load_manifest(ok)
|
|
63
|
+
assert manifest.lambdas[0].runtime == "python3.14"
|
|
64
|
+
|
|
65
|
+
|
|
48
66
|
def test_load_manifest_rejects_unknown_arch(tmp_path: Path):
|
|
49
67
|
bad = tmp_path / "lambdas.toml"
|
|
50
68
|
bad.write_text(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_nodejs_lambda/handler/index.js
RENAMED
|
File without changes
|
|
File without changes
|
{repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_nodejs_lambda/handler/package.json
RENAMED
|
File without changes
|
|
File without changes
|
{repro_lambda-0.6.1 → repro_lambda-0.7.0}/tests/fixtures/sample_python_lambda/handler/app.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|