-
Notifications
You must be signed in to change notification settings - Fork 1
docs: Add February 2026 changelog with Discord integration, Notification Tips, and bug fixes #237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
3ff1892
279556a
1699c24
45022e5
40457c2
5096ec1
9f11d43
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| --- | ||
| title: February 2026 | ||
| --- | ||
|
|
||
| **New Features:** | ||
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: PR #1941 adds
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Added "PR context is retrieved correctly" based on PR #1937 which fixes the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Based on PR #1945 which adds tips to outbound notifications. Key files:
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Removed the "Notification Tips" entry from the changelog because PR #1959 deleted the tips module ( |
||
|
|
||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Discord integration feature from PR #1965. Adds bot mentions, passive channel listening, and Discord notifications (mirrors Slack functionality). |
||
| * **Configurable GitHub PR Comment Trigger Mode:** Control whether Promptless responds to all PR comments or only @promptless mentions. New organizations listen to all comments by default—start any comment with `aside` or `/aside` to have Promptless skip it. Existing organizations continue to require @promptless mentions. Configure this in Settings → Org Settings. | ||
|
|
||
| **Improvements:** | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Based on PR #1946 which fixes credential retrieval in
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Based on PR #1952 which adds
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Documents new configurable GitHub PR comment trigger mode from PR #1984. Key changes in |
||
|
|
||
| * **Paste Images into Task Input:** Paste images directly into the task input box from your clipboard. Take a screenshot (<kbd>Cmd</kbd>+<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>4</kbd> on Mac) and paste it—no need to save to a file first. | ||
|
|
||
| * **DCO Compliance for Open-Source Projects:** Promptless now automatically adds DCO sign-off to commits on open-source projects. Projects with DCO requirements—like those under the Linux Foundation or CNCF—work with Promptless out of the box. | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Based on PR #1969 which adds automatic DCO sign-off to commits for the |
||
|
|
||
| * **Clearer Notification Tips:** Notification tips in Slack and GitHub now include direct links to the Promptless dashboard—making it easier to act on labels, assignments, and inline comments. | ||
|
|
||
| * **Scoped CI Failure Handling:** When CI checks fail on documentation PRs, Promptless investigates whether the failures are actually caused by the current suggestion—pre-existing or unrelated failures are left alone. If Promptless finds real documentation issues outside the suggestion's scope, it creates a separate suggestion to address them. | ||
|
|
||
| **Bug Fixes:** | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Based on PR #1998 which adds scoped CI failure handling. Key changes in |
||
|
|
||
| * **Read-Only GitHub App Reliability:** Fixed issues affecting open-source projects using the Read-Only GitHub App integration. PRs from forked repositories now sync correctly when processing follow-on instructions, comments are acknowledged with reactions, PR comments post as expected, citation comments no longer trigger recursive processing loops, and PR context is retrieved correctly. | ||
|
|
||
| * **Slack Notification Large Diff Handling:** Fixed Slack notifications failing or getting cut off when suggestions involve many file changes. Notifications now gracefully truncate the file list and show how many additional files were changed, while full details remain available in the attached file. | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Based on PR #1956 which changes |
||
|
|
||
| * **Auto-Merge Documentation PR Reliability:** Fixed auto-merge for documentation PRs failing for GitHub Cloud users. Auto-merge now correctly retrieves authentication credentials for both GitHub Cloud and GitHub Enterprise installations. | ||
|
|
||
| * **Conflict Resolution Reliability:** Fixed automatic conflict resolution failing when suggestions have many conflicting files—Promptless now handles large file conflicts without running into message size limits. | ||
|
|
||
| * **PR Citation Comment Reliability:** Fixed intermittent failures when posting citation comments to documentation PRs. When line-level review comments can't be posted due to GitHub API limitations, citations now fall back to regular PR comments—so you still see the source references. | ||
|
|
||
| * **TypeScript and Rust File Display:** Fixed TypeScript (.ts), Rust (.rs), and Emacs Org-mode (.org) files displaying as binary content—these file types now render as readable text when reviewing documentation changes. | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Citation: Based on PR #1934 which fixes two bugs in GitHub OSS integration: 404 errors during
_sync_open_pr_branchfor fork-based PRs (fixed inserver/agent/promptless_agent.py) and 403 errors when adding reactions/comments via read-only app token (fixed by using service account PAT across multiple files includingserver/backend/integrations/github/routes.py).View source