fix: restore package-type Image branching (regression in v1.1.1)#71
Open
JamBalaya56562 wants to merge 1 commit intoaws-actions:mainfrom
Open
fix: restore package-type Image branching (regression in v1.1.1)#71JamBalaya56562 wants to merge 1 commit intoaws-actions:mainfrom
JamBalaya56562 wants to merge 1 commit intoaws-actions:mainfrom
Conversation
The durable-functions refactor (aws-actions#65) removed the package-type branching in run(), createFunction, and updateFunctionCode, so Image deployments now fail unconditionally with: Packaging code artifacts from Failed to package artifacts: Code artifacts directory path must be provided because packageCodeArtifacts() is called even when no code-artifacts-dir is configured. This restores the v1.1.0 behavior: - run() skips packageCodeArtifacts when packageType === 'Image' - createFunction sends Code: { ImageUri } and PackageType: 'Image', and omits Runtime / Handler / Layers for Image - createFunction includes ImageConfig only for Image - updateFunctionCode sends ImageUri instead of ZipFile for Image - updateFunctionConfiguration omits Handler / Runtime / Layers for Image and includes ImageConfig only for Image - hasConfigurationChanged uses the same gating - the PackageType-change guard is restored - durable-functions config from aws-actions#65 is preserved unchanged Adds a regression test that exercises the real createFunction and updateFunctionCode with package-type: Image and asserts that ImageUri is sent and that ZipFile / Runtime / Handler / Layers are not. Fixes aws-actions#70.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #70.
v1.1.1 broke
package-type: Imagedeployments. The action now fails forevery Image user with:
The output
Packaging code artifacts fromis the smoking gun — thetrailing space shows that
code-artifacts-diris empty (as expected forImage deploys), yet
packageCodeArtifacts()is being called anyway.Root cause
The durable-functions refactor in #65 removed the
package-typebranching from
index.js. v1.1.0 had:v1.1.1 collapsed that to:
The same regression hit
createFunction(Code: { ImageUri },PackageType: 'Image', the Runtime/Handler/Layers/ImageConfig gates,and the
Cannot change package type of existing Lambda functionguardwere all deleted) and
updateFunctionCode(the ImageUri branch wasremoved).
Fix
Restores the v1.1.0
package-typegating acrossrun(),createFunction,updateFunctionConfiguration,hasConfigurationChanged, andupdateFunctionCode. The durable-functions feature added in #65 (
durableConfig,parsedDurableConfig,DurableConfig) is preserved unchanged — both features now coexist.Why the regression slipped through
The existing test suite mocks
createFunctionandupdateFunctionCodein most tests rather than exercising the real implementations, and
container_image_support.test.jsonly coveredvalidations.js— therewas no test that drove the real
index.jsflow withpackage-type: Image. This PR adds two regression tests that call thereal
createFunctionandupdateFunctionCodewithpackage-type: Imageand assert:ImageUriis sent andZipFileis notPackageType: 'Image'is setRuntime/Handler/Layersare omitted for Imagedist
dist/index.jsis rebuilt withnpm run build(ncc 0.36.1).Test plan
npx jest __tests__/container_image_support.test.js— 7/7 pass (5 existing + 2 new regression tests)npx jest— 232 pass; 11 pre-existing path-resolution failures invalidations.test.jsare POSIX-vs-Windows artifacts unrelated to this change