fix: require Node 22+ and round out contribution setup#27
Merged
Conversation
The transport uses AbortSignal.any (Node 20.3+), so the advertised "Node 18+" was wrong. Node 20 is EOL and the dev toolchain (@commitlint/cli) requires Node 22.12+, so target Node 22+ consistently: engines >=22, CI on 22/24, README updated. Also rounds out the open-source contribution setup: a Conventional-Commits PR-title note in CONTRIBUTING (squash merges make the PR title the release input), issue/PR templates, CODE_OF_CONDUCT, and SECURITY.
denispianelli
force-pushed
the
chore/oss-readiness
branch
from
June 1, 2026 12:26
72c5983 to
6d061e3
Compare
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.
Node version fix (the releasable bit)
The transport combines a caller signal with a timeout via
AbortSignal.any(Node 20.3+), so the advertised "Node 18+" was inaccurate — on Node 18 that path throws. Corrected:engines.node:>=18→>=20[22, 24]→[20, 22, 24](tests the new minimum)Contribution readiness (docs/community, no behavior change)
release-pleaseinput. A non-conventional title is silently dropped from the changelog (the exact failure we hit earlier)..github/PULL_REQUEST_TEMPLATE.md+ issue templates (bug / feature)CODE_OF_CONDUCT.md(Contributor Covenant 2.1, by reference)SECURITY.md(private reporting + supported versions)Checks
format, lint, typecheck, 111 unit tests green. No source code changed beyond metadata/docs.
🤖 Generated with Claude Code