chore: version packages#82
Merged
Merged
Conversation
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
@andypai/agent-kanban@0.8.0
Minor Changes
#81
a4beedeThanks @abpai! - StrictJIRA_BOARD_IDparsing (#79). A non-empty malformedJIRA_BOARD_IDnow fails config loading withINVALID_CONFIGinstead of being silently coerced into a plausible-but-wrong board id ('12abc'→ 12,'-5'→ -5,'1e3'→ 1) or dropped. An unset or blank value still means "no board pinned", and a valid positive integer is used as before. This matches how a malformedKANBAN_SYNC_INTERVAL_MSis already rejected.Behavior change: if
JIRA_BOARD_IDis set to a non-numeric or non-positive value, config loading now errors instead of silently ignoring it. Set a valid board id or unset the variable.Patch Changes
#81
a4beedeThanks @abpai! - Honor the configured default task column when creating tasks through the local/SQLite CLI path (#78).SqliteLocalStore.createTasknow appliesconfig.defaultTaskColumn(falling back to the system default when unset), bringing it to parity with the Postgres store. Passing an explicit--columnstill overrides the default.#81
a4beedeThanks @abpai! - Harden theserveHTTP API and webhook ingestion (#76). Webhook-route errors are now wrapped in the standard{ ok: false, error }envelope instead of leaking a raw, non-enveloped 500, alongside fixes across tunnel security, Postgres receipt handling, SSE broadcast, and base-path handling — 10 defects in total, with +66 regression tests.#81
a4beedeThanks @abpai! - Close a webhook-secret fail-open and tighten config parsing (#77).assertTunnelSecuritynow resolves each provider's webhook signing-secret env through a singleWEBHOOK_SECRET_ENVsource of truth, so a future webhook-capable provider can no longer start a public tunnel with no signing secret enforced.KANBAN_SYNC_INTERVAL_MSenv parsing is also tightened to digits-only + safe-integer (rejecting hex/scientific notation), matching the strict--sync-interval-msflag.