chore(release): v1.2.1#429
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughThis PR prepares the v1.2.1 patch release. It bumps the package version from Changes
Review Notes
|
There was a problem hiding this comment.
Clean release PR. The two changes are exactly right:
- CHANGELOG.md: v1.2.1 entry accurately describes the user-facing changes from PR #419 (single
ablybinary, removal of standaloneably-interactivebinary). The date matches today (2026-06-30). - package.json: Version bumped 1.2.0 → 1.2.1, consistent with the semver patch designation (bug fix only).
No source code changes, no logic to review. Good to merge.
AndyTWF
approved these changes
Jun 30, 2026
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
89fb40f to
d9646b4
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.
Prepares the v1.2.1 release.
What's in this release
The only user-facing change since v1.2.0 is #419. The other 7 commits on
mainare internal CI hardening and are not changelog-worthy.Fixed
npx @ably/cli <command>now runs without a redundantablytoken, sonpx @ably/cli initworks as expected. The package previously shipped two binaries, which stopped npx auto-selecting one; it now ships a singleablybinary.Changed
ably-interactiveglobal binary is no longer installed as a separate command. Interactive mode handles Ctrl+C in-process. The terminal server consumes this through a companion Dockerfile change (already merged).This PR
package.json1.2.0→1.2.11.2.1CHANGELOG entry(
packages/react-web-cliis versioned independently and unaffected, so it is not bumped — consistent with the v1.2.0 release.)Validation
pnpm prepare— build + manifest OKpnpm exec eslint .— 0 errorspnpm test:unit— 2534 passed, 1 skipped, 1 todoAfter merge
Tag the merge commit on
mainto trigger the npm publish workflow:git tag -a v1.2.1 -m "Release v1.2.1" git push origin v1.2.1🤖 Generated with Claude Code