chore: release packages - #714
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 31, 2026 10:43
24342d2 to
6353ee3
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@getmunin/backend-core@4.77.0
Minor Changes
2d14917: fix(outreach): keep
outreach_list_proposalspayloads boundedoutreach_list_proposalsreturned every column of every matching row, curatorevidenceincluded. Evidence is an unbounded JSONB the curator fills with sources, compliance notes and reasoning — around 4,000 characters per proposal in practice, roughly three quarters of a row. Combined with a default limit of 100 and a default of all statuses, a queue of ~16 proposals already produced an 80,000-character result that clients refuse, and 100 rows would have been half a million characters. The failure is silent-ish and total: the MCP Apps panel renders the size error instead of the review UI, and the model gets no data either, so the review pass just stops.List rows now carry the draft, the nested
contact/campaign/deliverysummaries and a booleanhasEvidence, but notevidenceitself. The default limit drops from 100 to 25 and the ceiling from 500 to 200.The new
outreach_get_proposalreads one proposal by id with the full evidence attached, so nothing became unreachable — this exposes thegetProposalservice method the Slack bridge andGET /v1/outreach/proposals/:idalready used. The Inspector panel's Evidence toggle now fetches on click rather than receiving evidence for every card up front.GET /v1/outreach/proposalsand the inbox queue return the same trimmed rows. Nothing in the dashboard renderedevidencefrom a list response.cfa7b4f: refactor(outreach): first-touch replaces "initial" on the public surface
outreach_propose_initial_messageis nowoutreach_propose_first_touch, the campaign flagautoDraftInitialis nowautoDraftFirstTouch(columnauto_draft_initial→auto_draft_first_touch), and the three skillsskill://outreach/draft-initial-{email,sms,call}are nowskill://outreach/draft-first-touch-{email,sms,call}.The three propose tools file the three proposal kinds (
initial,reply,followup), but only the first carried a medium in its name —_messagewas filler to makeoutreach_propose_initialgrammatical, and inaccurate besides: the tool also files the script for an outbound voice call, which is not a message. Its description now says "first-touch outreach draft", the neutral term the input schema already uses (draftSubject/draftBody). The campaign flag had the same defect:autoDraftInitialpaired withautoDraftRepliesput a bare adjective next to a noun, while the surrounding descriptions had already switched to saying "first-touch".The weekly scheduled sweep follows: it is now
curator-outreach-first-touch, readsMUNIN_CURATOR_OUTREACH_FIRST_TOUCH_CRON, and enqueues under the dedupe keyoutreach-first-touch:scheduled.Internals that track the stored kind keep
initial: theoutreach_proposals.kindvalue andOutreachService.proposeInitial.Breaking, with no aliases published:
outreach_propose_initial_messageautoDraftInitialonoutreach_create_campaign/outreach_update_campaign/outreach_list_campaignsskill://outreach/draft-initial-*URIs viaskills_read/resources/readMUNIN_CURATOR_OUTREACH_INITIAL_CRON— the old name is ignored and the sweep silently reverts to its weekly default, so rename itoutreach_importvalidation on the renamed fieldMigration
0059_outreach_first_touch_renamerenames the column in place, so stored per-campaign values survive, and carries the persisted curator queue across.job_uri,dedupe_keyandsource_event_typeare rewritten on every row — they point at things that were renamed, so history stays queryable and a pending row still dedupes against the next scheduled enqueue.user_promptis rewritten only forstatus = 'pending'rows: the scheduler persists its prompt verbatim at enqueue time, so a queued job would otherwise wake up naming a tool and a skill that no longer exist, while a finished job's prompt is the record of what it was actually told. Every step is guarded and safe to re-run.d0d3d28: Rename
conv_send_voice_sms_channel_test→conv_send_sms_channel_testThe send path dispatches on
capabilities.sendTest, which only Twilio and MessageBird set. Vapi and Threll both declaresendTest: false, so on a voice channel the tool has always answeredchannel vendor 'vapi' does not support test sends— thevoice_smsqualifier 4.76.0 gave it promised a path that does not exist.Its sibling
conv_test_voice_sms_channelkeeps the qualifier: all four vendors implement the credential check. The pair reads asymmetrically now, which is the point — their reach differs.The description says SMS-only and points voice at
conv_test_voice_sms_channelfor credentials and the dashboard's Make a test call for end-to-end.skill://conv/setup-voice-sms-channelnames the error a voice channel gets. There is still no MCP tool that places a call:ChannelAdminService.call()stays/v1-only, human-initiated.Patch Changes
@getmunin/dashboard-pages@4.77.0
Minor Changes
2d14917: fix(outreach): keep
outreach_list_proposalspayloads boundedoutreach_list_proposalsreturned every column of every matching row, curatorevidenceincluded. Evidence is an unbounded JSONB the curator fills with sources, compliance notes and reasoning — around 4,000 characters per proposal in practice, roughly three quarters of a row. Combined with a default limit of 100 and a default of all statuses, a queue of ~16 proposals already produced an 80,000-character result that clients refuse, and 100 rows would have been half a million characters. The failure is silent-ish and total: the MCP Apps panel renders the size error instead of the review UI, and the model gets no data either, so the review pass just stops.List rows now carry the draft, the nested
contact/campaign/deliverysummaries and a booleanhasEvidence, but notevidenceitself. The default limit drops from 100 to 25 and the ceiling from 500 to 200.The new
outreach_get_proposalreads one proposal by id with the full evidence attached, so nothing became unreachable — this exposes thegetProposalservice method the Slack bridge andGET /v1/outreach/proposals/:idalready used. The Inspector panel's Evidence toggle now fetches on click rather than receiving evidence for every card up front.GET /v1/outreach/proposalsand the inbox queue return the same trimmed rows. Nothing in the dashboard renderedevidencefrom a list response.cfa7b4f: refactor(outreach): first-touch replaces "initial" on the public surface
outreach_propose_initial_messageis nowoutreach_propose_first_touch, the campaign flagautoDraftInitialis nowautoDraftFirstTouch(columnauto_draft_initial→auto_draft_first_touch), and the three skillsskill://outreach/draft-initial-{email,sms,call}are nowskill://outreach/draft-first-touch-{email,sms,call}.The three propose tools file the three proposal kinds (
initial,reply,followup), but only the first carried a medium in its name —_messagewas filler to makeoutreach_propose_initialgrammatical, and inaccurate besides: the tool also files the script for an outbound voice call, which is not a message. Its description now says "first-touch outreach draft", the neutral term the input schema already uses (draftSubject/draftBody). The campaign flag had the same defect:autoDraftInitialpaired withautoDraftRepliesput a bare adjective next to a noun, while the surrounding descriptions had already switched to saying "first-touch".The weekly scheduled sweep follows: it is now
curator-outreach-first-touch, readsMUNIN_CURATOR_OUTREACH_FIRST_TOUCH_CRON, and enqueues under the dedupe keyoutreach-first-touch:scheduled.Internals that track the stored kind keep
initial: theoutreach_proposals.kindvalue andOutreachService.proposeInitial.Breaking, with no aliases published:
outreach_propose_initial_messageautoDraftInitialonoutreach_create_campaign/outreach_update_campaign/outreach_list_campaignsskill://outreach/draft-initial-*URIs viaskills_read/resources/readMUNIN_CURATOR_OUTREACH_INITIAL_CRON— the old name is ignored and the sweep silently reverts to its weekly default, so rename itoutreach_importvalidation on the renamed fieldMigration
0059_outreach_first_touch_renamerenames the column in place, so stored per-campaign values survive, and carries the persisted curator queue across.job_uri,dedupe_keyandsource_event_typeare rewritten on every row — they point at things that were renamed, so history stays queryable and a pending row still dedupes against the next scheduled enqueue.user_promptis rewritten only forstatus = 'pending'rows: the scheduler persists its prompt verbatim at enqueue time, so a queued job would otherwise wake up naming a tool and a skill that no longer exist, while a finished job's prompt is the record of what it was actually told. Every step is guarded and safe to re-run.Patch Changes
2808e5d: Eyebrows no longer echo the heading they sit above. The OAuth consent outcome screens paired "Authorization granted" with the H1 "Access granted." — and in Norwegian both collapsed to the identical string "Tilgang gitt", since
tilgangcovers both authorization and access. They now name the flow state instead ("Authorization complete" / "Autorisering fullført", "Authorization cancelled" / "Autorisering avbrutt"), leaving the ✓ glyph and the heading to carry the outcome.Two inspector panels repeated a noun the same way and now add information instead: the outreach proposals eyebrow reads "Awaiting approval" (was "Pending proposals", above "Outreach proposals"), and the merge panel reads "Possible duplicates" (was "Pending merge proposals", above "Contact merges").
Updated dependencies [cfa7b4f]
@getmunin/db@4.77.0
Minor Changes
cfa7b4f: refactor(outreach): first-touch replaces "initial" on the public surface
outreach_propose_initial_messageis nowoutreach_propose_first_touch, the campaign flagautoDraftInitialis nowautoDraftFirstTouch(columnauto_draft_initial→auto_draft_first_touch), and the three skillsskill://outreach/draft-initial-{email,sms,call}are nowskill://outreach/draft-first-touch-{email,sms,call}.The three propose tools file the three proposal kinds (
initial,reply,followup), but only the first carried a medium in its name —_messagewas filler to makeoutreach_propose_initialgrammatical, and inaccurate besides: the tool also files the script for an outbound voice call, which is not a message. Its description now says "first-touch outreach draft", the neutral term the input schema already uses (draftSubject/draftBody). The campaign flag had the same defect:autoDraftInitialpaired withautoDraftRepliesput a bare adjective next to a noun, while the surrounding descriptions had already switched to saying "first-touch".The weekly scheduled sweep follows: it is now
curator-outreach-first-touch, readsMUNIN_CURATOR_OUTREACH_FIRST_TOUCH_CRON, and enqueues under the dedupe keyoutreach-first-touch:scheduled.Internals that track the stored kind keep
initial: theoutreach_proposals.kindvalue andOutreachService.proposeInitial.Breaking, with no aliases published:
outreach_propose_initial_messageautoDraftInitialonoutreach_create_campaign/outreach_update_campaign/outreach_list_campaignsskill://outreach/draft-initial-*URIs viaskills_read/resources/readMUNIN_CURATOR_OUTREACH_INITIAL_CRON— the old name is ignored and the sweep silently reverts to its weekly default, so rename itoutreach_importvalidation on the renamed fieldMigration
0059_outreach_first_touch_renamerenames the column in place, so stored per-campaign values survive, and carries the persisted curator queue across.job_uri,dedupe_keyandsource_event_typeare rewritten on every row — they point at things that were renamed, so history stays queryable and a pending row still dedupes against the next scheduled enqueue.user_promptis rewritten only forstatus = 'pending'rows: the scheduler persists its prompt verbatim at enqueue time, so a queued job would otherwise wake up naming a tool and a skill that no longer exist, while a finished job's prompt is the record of what it was actually told. Every step is guarded and safe to re-run.Patch Changes
@getmunin/docs-pages@4.77.0
Minor Changes
cfa7b4f: refactor(outreach): first-touch replaces "initial" on the public surface
outreach_propose_initial_messageis nowoutreach_propose_first_touch, the campaign flagautoDraftInitialis nowautoDraftFirstTouch(columnauto_draft_initial→auto_draft_first_touch), and the three skillsskill://outreach/draft-initial-{email,sms,call}are nowskill://outreach/draft-first-touch-{email,sms,call}.The three propose tools file the three proposal kinds (
initial,reply,followup), but only the first carried a medium in its name —_messagewas filler to makeoutreach_propose_initialgrammatical, and inaccurate besides: the tool also files the script for an outbound voice call, which is not a message. Its description now says "first-touch outreach draft", the neutral term the input schema already uses (draftSubject/draftBody). The campaign flag had the same defect:autoDraftInitialpaired withautoDraftRepliesput a bare adjective next to a noun, while the surrounding descriptions had already switched to saying "first-touch".The weekly scheduled sweep follows: it is now
curator-outreach-first-touch, readsMUNIN_CURATOR_OUTREACH_FIRST_TOUCH_CRON, and enqueues under the dedupe keyoutreach-first-touch:scheduled.Internals that track the stored kind keep
initial: theoutreach_proposals.kindvalue andOutreachService.proposeInitial.Breaking, with no aliases published:
outreach_propose_initial_messageautoDraftInitialonoutreach_create_campaign/outreach_update_campaign/outreach_list_campaignsskill://outreach/draft-initial-*URIs viaskills_read/resources/readMUNIN_CURATOR_OUTREACH_INITIAL_CRON— the old name is ignored and the sweep silently reverts to its weekly default, so rename itoutreach_importvalidation on the renamed fieldMigration
0059_outreach_first_touch_renamerenames the column in place, so stored per-campaign values survive, and carries the persisted curator queue across.job_uri,dedupe_keyandsource_event_typeare rewritten on every row — they point at things that were renamed, so history stays queryable and a pending row still dedupes against the next scheduled enqueue.user_promptis rewritten only forstatus = 'pending'rows: the scheduler persists its prompt verbatim at enqueue time, so a queued job would otherwise wake up naming a tool and a skill that no longer exist, while a finished job's prompt is the record of what it was actually told. Every step is guarded and safe to re-run.Patch Changes
@getmunin/inspector-app@4.77.0
Minor Changes
2d14917: fix(outreach): keep
outreach_list_proposalspayloads boundedoutreach_list_proposalsreturned every column of every matching row, curatorevidenceincluded. Evidence is an unbounded JSONB the curator fills with sources, compliance notes and reasoning — around 4,000 characters per proposal in practice, roughly three quarters of a row. Combined with a default limit of 100 and a default of all statuses, a queue of ~16 proposals already produced an 80,000-character result that clients refuse, and 100 rows would have been half a million characters. The failure is silent-ish and total: the MCP Apps panel renders the size error instead of the review UI, and the model gets no data either, so the review pass just stops.List rows now carry the draft, the nested
contact/campaign/deliverysummaries and a booleanhasEvidence, but notevidenceitself. The default limit drops from 100 to 25 and the ceiling from 500 to 200.The new
outreach_get_proposalreads one proposal by id with the full evidence attached, so nothing became unreachable — this exposes thegetProposalservice method the Slack bridge andGET /v1/outreach/proposals/:idalready used. The Inspector panel's Evidence toggle now fetches on click rather than receiving evidence for every card up front.GET /v1/outreach/proposalsand the inbox queue return the same trimmed rows. Nothing in the dashboard renderedevidencefrom a list response.Patch Changes
@getmunin/types@4.77.0
Minor Changes
cfa7b4f: refactor(outreach): first-touch replaces "initial" on the public surface
outreach_propose_initial_messageis nowoutreach_propose_first_touch, the campaign flagautoDraftInitialis nowautoDraftFirstTouch(columnauto_draft_initial→auto_draft_first_touch), and the three skillsskill://outreach/draft-initial-{email,sms,call}are nowskill://outreach/draft-first-touch-{email,sms,call}.The three propose tools file the three proposal kinds (
initial,reply,followup), but only the first carried a medium in its name —_messagewas filler to makeoutreach_propose_initialgrammatical, and inaccurate besides: the tool also files the script for an outbound voice call, which is not a message. Its description now says "first-touch outreach draft", the neutral term the input schema already uses (draftSubject/draftBody). The campaign flag had the same defect:autoDraftInitialpaired withautoDraftRepliesput a bare adjective next to a noun, while the surrounding descriptions had already switched to saying "first-touch".The weekly scheduled sweep follows: it is now
curator-outreach-first-touch, readsMUNIN_CURATOR_OUTREACH_FIRST_TOUCH_CRON, and enqueues under the dedupe keyoutreach-first-touch:scheduled.Internals that track the stored kind keep
initial: theoutreach_proposals.kindvalue andOutreachService.proposeInitial.Breaking, with no aliases published:
outreach_propose_initial_messageautoDraftInitialonoutreach_create_campaign/outreach_update_campaign/outreach_list_campaignsskill://outreach/draft-initial-*URIs viaskills_read/resources/readMUNIN_CURATOR_OUTREACH_INITIAL_CRON— the old name is ignored and the sweep silently reverts to its weekly default, so rename itoutreach_importvalidation on the renamed fieldMigration
0059_outreach_first_touch_renamerenames the column in place, so stored per-campaign values survive, and carries the persisted curator queue across.job_uri,dedupe_keyandsource_event_typeare rewritten on every row — they point at things that were renamed, so history stays queryable and a pending row still dedupes against the next scheduled enqueue.user_promptis rewritten only forstatus = 'pending'rows: the scheduler persists its prompt verbatim at enqueue time, so a queued job would otherwise wake up naming a tool and a skill that no longer exist, while a finished job's prompt is the record of what it was actually told. Every step is guarded and safe to re-run.@getmunin/chat-widget@4.77.0
Patch Changes
@getmunin/agent-host@4.77.0
Patch Changes
@getmunin/agent-runtime@4.77.0
Patch Changes
@getmunin/core@4.77.0
Patch Changes
@getmunin/mcp-toolkit@4.77.0
Patch Changes
@getmunin/analytics-tracker@4.77.0
@getmunin/emails@4.77.0
@getmunin/sdk@4.77.0
@getmunin/ui@4.77.0