chore(idempotency): pin @aws/durable-execution-sdk-js to 1.1.2#5281
Closed
svozza wants to merge 1 commit into
Closed
chore(idempotency): pin @aws/durable-execution-sdk-js to 1.1.2#5281svozza wants to merge 1 commit into
svozza wants to merge 1 commit into
Conversation
The 1.1.3 release is incompatible with our current CDK/esbuild bundling for the idempotency e2e durable-function tests, so the deployed Lambda fails at init with `fileURLToPath(undefined)`. Pin the dev dependency to the exact version 1.1.2 until the upstream change at aws/aws-durable-execution-sdk-js#546 ships in a published release. Refs #5280
|
leandrodamascena
approved these changes
May 21, 2026
Contributor
|
Let's see if we can get upstream to fix this first before merging. |
Contributor
Author
Agreed. |
Contributor
Author
|
Closing this PR — superseded by the upstream fix.
|
This was referenced May 21, 2026
Contributor
Author
|
Replacement opened: #5283 (bump to ^1.1.4). |
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
The
1.1.3release of@aws/durable-execution-sdk-jsis incompatible with the way our idempotency e2e durable-function tests are bundled, causing the deployed Lambda to fail at init withTypeError: fileURLToPath(undefined)(see #5280 for full logs and reproduction). The same handler bundles and runs cleanly on1.1.2. This PR temporarily pins the dev dependency to the exact version1.1.2so the e2e suite is unblocked, with a plan to re-bump to a caret range once the related upstream change at aws/aws-durable-execution-sdk-js#546 lands in a release.Changes
packages/idempotency/package.json: change@aws/durable-execution-sdk-jsfrom^1.1.3to an exact pin1.1.2(no caret, so npm does not re-resolve forward to1.1.3).package-lock.json: refreshed vianpm installso the SDK resolves to1.1.2for the idempotency workspace.Test plan
npm run test:unitfrompackages/idempotency— all 123 unit tests pass locally.Issue number: closes #5280
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Disclaimer: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful.