fix(wrapper-ts): transport test timeout for CI (v0.6.1, supersedes failed 0.6.0 publish)#37
Merged
Merged
Conversation
…0.6.1) The `test/transport.test.ts > terminate() resolves with SIGTERM signal or non-zero exit code` test exercises actual subprocess SIGTERM handling, which is slower on Ubuntu CI runners than on local macOS. The 0.6.0 publish-wrapper.yml workflow run failed at the Test step with `Error: Test timed out in 5000ms` before reaching `npm publish`. Per-test timeout bumped from 5s to 15s. Same class of fix as #19 fix(wrapper): bump vitest testTimeout to 15s for CI transport test from a prior release window. `amplifier-agent-ts@0.6.0` was never published to npm; this 0.6.1 release supersedes that aborted attempt. Consumers can install 0.6.1 directly without first installing 0.6.0. Local TS wrapper test results: 95 passed / 95.
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.
Hotfix
amplifier-agent-ts0.6.0 → 0.6.1.Why this PR exists
PR #36 merged the wrapper hardening release as 0.6.0. The
wrapper-v0.6.0tag triggered thepublish-wrapper.ymlworkflow, which failed at the Test step:The test exercises actual subprocess SIGTERM handling, which is slower on Ubuntu CI runners than on local macOS. Same class of issue as
#19 fix(wrapper): bump vitest testTimeout to 15s for CI transport testfrom a prior release window.amplifier-agent-ts@0.6.0was never published to npm (workflow failed before reachingnpm publish). Current npm registry:[0.3.0, 0.3.1, 0.4.0, 0.5.0].Fix
Per-test timeout bumped from default 5s to 15s on the failing transport test. Other tests retain the default.
Migration
Consumers can install
0.6.1directly without first installing0.6.0(which was never published). All 8 issues addressed by PR #36 ship in 0.6.1.Tests
After merge
git checkout main && git pull origin main git tag wrapper-v0.6.1 git push origin wrapper-v0.6.1→ Triggers
publish-wrapper.yml→amplifier-agent-ts@0.6.1publishes to npm (this time successfully).