fix(deps): bump @doist/comms-sdk to 0.4.5#24
Merged
Conversation
Picks up two SDK fixes that crashed the CLI on real data: - `comments/getone` is parsed as a bare object, fixing `comment view` and `thread view --comment` (comms-sdk #26) - `pinned_ts` maps to `pinnedDate`, fixing `thread view` / `inbox` crashing with "expected boolean, received Date" (comms-sdk #24) Verified against live data: `thread view` and `comment view` both return cleanly where they previously threw ZodErrors. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
doist-release-bot Bot
added a commit
that referenced
this pull request
Jun 15, 2026
## [1.6.1](v1.6.0...v1.6.1) (2026-06-15) ### Bug Fixes * **deps:** bump @doist/comms-sdk to 0.4.5 ([#24](#24)) ([a859976](a859976))
Contributor
|
🎉 This PR is included in version 1.6.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
doistbot
reviewed
Jun 15, 2026
doistbot
left a comment
Member
There was a problem hiding this comment.
No issues were flagged for this bump to @doist/comms-sdk@0.4.5, which fixes the comment wrapping and pinned type bugs that crashed thread view and comment view on real data.
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.
Context
The CLI pinned
@doist/comms-sdk@0.4.2, which crashed on real data:tdc comment view/tdc thread view --comment→expected object, received undefinedatcomment(the SDK assumedgetonewraps the comment in{ comment }; it returns it bare).tdc thread view/tdc inbox→expected boolean, received Dateatpinned(the SDK turnedpinned_tsintopinned: Date).Both are fixed in
@doist/comms-sdk@0.4.5(#26, #24).What was changed
@doist/comms-sdk0.4.2→0.4.5(package.json + lockfile).Verification
npm run type-check,npm run build,npm test(756 tests) pass.thread viewreturns the thread + 50 comments,comment viewreturns the comment. Both clean.