Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,6 @@ Pull requests for any of these are welcome. See [Contributing](README.md#contrib

---

## v1.1 — Operations Completeness

*Close the gaps users hit within the first week of real use.*

| Feature | Notes |
|---|---|
| ~~**Retry failed job with modified arguments**~~ | ✓ Shipped — editable textarea on the job detail page; submitting updates the job record and retries in one step. |
| ~~**Multiple webhook targets**~~ | ✓ Shipped — `alert_webhook_url` accepts a string or an array; all URLs receive the same payload; one failure doesn't block the rest. |
| ~~**Queue depth alert**~~ | ✓ Shipped — `alert_queue_thresholds` hash maps queue names to ready-count limits; cooldown tracked independently per queue; same `alert_webhook_url` endpoint(s) used with a distinct event type. |

---

## v1.2 — Error Intelligence

*Surface patterns in failures, not just individual failed jobs.*
Expand Down
10 changes: 9 additions & 1 deletion bin/release
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,16 @@ sed -i '' \
[$VERSION]: https://github.com/eclectic-coding/solid_queue_web/releases/tag/$TAG" \
CHANGELOG.md

echo "==> Pruning shipped ROADMAP section..."
MINOR_VERSION=$(echo "$VERSION" | cut -d. -f1-2)
awk -v ver="$MINOR_VERSION" '
/^## v/ && $0 ~ ("^## v" ver "([^0-9]|$)") { skip=1; next }
skip && /^---/ { skip=0; next }
!skip
' ROADMAP.md > ROADMAP.tmp && mv ROADMAP.tmp ROADMAP.md

echo "==> Committing release..."
git add "$VERSION_FILE" Gemfile.lock CHANGELOG.md
git add "$VERSION_FILE" Gemfile.lock CHANGELOG.md ROADMAP.md
git commit -m "Release $TAG"

echo "==> Tagging $TAG..."
Expand Down