chore(release): 1.0.3 - #59
Merged
Merged
Conversation
Documentation only. dist/ is byte-identical to 1.0.2, verified by unpacking the published tarball and diffing it against a fresh build. The README's Example App link resolved to examples/nest-queue-example, a path renamed to test/consumer-app in this repository, so it returned 404 from the npm package page. It now points at bymaxone/nest-queue-example, and the README states plainly which of the two artifacts is the reference application and which is a typecheck fixture.
There was a problem hiding this comment.
Pull request overview
Cuts release v1.0.3 for @bymax-one/nest-queue, intended as a documentation-only publish with no runtime (dist/) changes.
Changes:
- Bump package version from
1.0.2→1.0.3. - Add a
1.0.3changelog entry documenting the README “Example App” link correction and clarifying the role oftest/consumer-app.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Version bump to 1.0.3 for the release. |
| CHANGELOG.md | Adds the 1.0.3 release notes describing the documentation-only change. |
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.
Cuts
1.0.3. No runtime change —dist/is byte-identical to1.0.2, and I verified that rather than assumed it: unpacked the published tarball from the registry and diffed it against a fresh build.What the
1.0.3tarball will contain, relative to1.0.2:dist/LICENSEREADME.mdCHANGELOG.md1.0.3entrypackage.jsonversionbumped to1.0.3src/has not been touched sincev1.0.2. The two PRs that landed in between (#57, #58) changedtest/,.github/anddocs/, none of which enter the tarball — so everything that differs is either documentation or the version string itself.Why release at all, then
The published README carries a dead link. Its "Example App" pointed at
github.com/bymaxone/nest-queue/tree/main/examples/nest-queue-example— a directory #57 renamed totest/consumer-app. Confirmed HTTP 404.That link matters most exactly where we are least likely to notice it: the package page on npmjs.com, read by people who have never seen this repository.
It now points at
bymaxone/nest-queue-example— verified HTTP 200 anonymously, which is the check that counts, since the reader is not logged into our org.The README also no longer lets the two artifacts blur together — the reference application is where you copy from,
test/consumer-appis a compile-time gate that is not published and not a demo.Why a patch
There is no feature, so a minor would be a false signal. A patch is the honest label for a documentation correction.
Release-notes wiring
release.ymlextracts the section matching the pushed tag. Simulated it against this file with the workflow's own awk:The heading uses an em dash (
## [1.0.3] — 2026-08-01), matching all three existing entries in this file. (The sibling libraries use a hyphen; this repository does not, and I left its convention alone.)Gate
typecheck · test:types · lint · 276 tests at 100% (567/567 statements, 231/231 branches) · build · size ·
check:exports(attw, no problems) · dogfood smoke.After merge,
git tag v1.0.3 && git push --tagspublishes with SLSA provenance. Ready for your review — not merging it.