Skip to content

v0.11.1 — linear comment.list issue scoping

Choose a tag to compare

@github-actions github-actions released this 11 Jun 07:25
· 1 commit to main since this release

Fix: linear.comment.list({ issueId }) no longer lies

Previously comment.list accepted only { limit } with a non-strict schema — passing issueId validated fine, got silently dropped, and the call returned workspace-wide comments that looked like an answer but weren't.

  • issueId (UUID or identifier like LIN-123) now scopes the query to that issue's comments
  • Works on scope-labeled connections too (same scope check as issue.listComments)
  • Unknown/typo'd input keys are rejected loudly instead of returning misleading results
  • Workspace-wide listing without issueId unchanged (still unscoped-only)

Also includes the Node 24 action-runtime updates for CI/Release workflows.

Commits: 08086c4 (fix + tests), 6efb883 (workflow runtimes)