Skip to content
Closed
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Upgraded `hono` to `^4.12.18` to address CVE-2026-44455, CVE-2026-44456, CVE-2026-44457, CVE-2026-44458. [#1186](https://github.com/sourcebot-dev/sourcebot/pull/1186)
- Upgraded `ip-address` to `^10.2.0` to address CVE-2026-42338. [#1189](https://github.com/sourcebot-dev/sourcebot/pull/1189)
- Upgraded `fast-xml-builder` to `^1.2.0` to address CVE-2026-44664, CVE-2026-44665. [#1184](https://github.com/sourcebot-dev/sourcebot/pull/1184)
- Fixed inconsistent left padding in preview window file path truncation. [#1196](https://github.com/sourcebot-dev/sourcebot/issues/1196)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Incorrect PR reference in changelog entry.

The changelog entry references #1196 with an /issues/ URL, but this PR is #1197. According to the coding guidelines, changelog entries must reference the PR number in the format [#<id>](https://github.com/sourcebot-dev/sourcebot/pull/<id>).

🔗 Proposed fix
-- Fixed inconsistent left padding in preview window file path truncation. [`#1196`](https://github.com/sourcebot-dev/sourcebot/issues/1196)
+- Fixed inconsistent left padding in preview window file path truncation. [`#1197`](https://github.com/sourcebot-dev/sourcebot/pull/1197)

As per coding guidelines, entries must include the GitHub pull request id at the end of the line, formatted as # where the URL points to the pull request, not the issue.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Fixed inconsistent left padding in preview window file path truncation. [#1196](https://github.com/sourcebot-dev/sourcebot/issues/1196)
- Fixed inconsistent left padding in preview window file path truncation. [`#1197`](https://github.com/sourcebot-dev/sourcebot/pull/1197)
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@CHANGELOG.md` at line 22, Update the CHANGELOG.md entry that currently reads
"Fixed inconsistent left padding in preview window file path truncation.
[`#1196`](https://github.com/sourcebot-dev/sourcebot/issues/1196)" to reference
the correct pull request: change the PR id to 1197 and point the URL to the pull
request page (https://github.com/sourcebot-dev/sourcebot/pull/1197) so the line
ends with [`#1197`](https://github.com/sourcebot-dev/sourcebot/pull/1197); locate
the exact string in CHANGELOG.md and replace both the numeric id and the
/issues/ URL accordingly.


### Changed
- Reduced the log verbosity of the worker by changing various log messages from info to debug. [#1179](https://github.com/sourcebot-dev/sourcebot/pull/1179)
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@

.truncate-start {
direction: rtl;
text-align: left;
text-align: right;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
Expand Down