(216) commits
Eric Bower
·
2025-03-28
feat: allow config `desc` to add a description box to index page refactor: consolidate docs page onto index This change will allow maintainers to add a description box to the top of their git-pr instance as an introduction to their service.
Eric Bower
·
2025-03-13
refactor(cli): replace `pr print` with `print` chore(cli): remove `pr diff`
Eric Bower
·
2025-02-02
fix(range-diff): properly handle removed files from a patchset
Eric Bower
·
2024-12-26
refactor: return range diff header This will allow us to generate different outputs directly in our templates using the RangeDiffHeader struct
Eric Bower
·
2024-12-23
refactor(web): default status is open This changes the default patch request index view to show only patch requests with status `open`. This helps with the noise.
Eric Bower
·
2024-12-21
fix: highlight review patches This was a regression from a previous refactor. Now we show added patches from a reviewer.
Eric Bower
·
2024-10-23
feat: add multitenancy The goal of this change is to support the ability to let any user create repos, similar to popular code forges. Repos are created adhoc when a user uploads a patchset. As part of this change, we are deprecating the previous way to configure repos. Repos can be thought of as containers for patch requests and not much more. They don't need to strictly map to a git repo. Multitenancy is opt-in via the `git-pr.toml` field: ``` create_repo = "user" ```
Eric Bower
·
2024-10-21
feat: ability to filter pr table data by status, title, and user
Eric Bower
·
2024-10-21
refactor: separate models from sqlite db We will likely want to support postgresql so this change will make that easier.
Andreas Gruhler
·
2024-08-28
feat: improve documentation This improves documentation by stating the admin list needs to be populated with ssh pubkeys and that the config file repos can be configured with a default_branch name to show in the help text.
jolheiser
·
2024-07-22
fix: log admin as closer Previously the contributor was logged as the closer, even when an admin closed a pr Signed-off-by: jolheiser <git@jolheiser.com>
jolheiser
·
2024-07-22
contrib: add dev script This patch adds a fairly contained dev script that almost doubles as an integration test if you squint hard enough. It runs an isolated instance that we can add more things to, it at least seems handy to me for quickly testing how changes affect e.g. the web UI, RSS feed, etc. Signed-off-by: jolheiser <git@jolheiser.com>
jolheiser
·
2024-07-22
fix: only log status change if the status changes Signed-off-by: jolheiser <git@jolheiser.com>
jolheiser
·
2024-07-22
fix: use eventlog time for pr details Signed-off-by: jolheiser <git@jolheiser.com>
jolheiser
·
2024-07-22
fix: insert repoID with pr creation We need to add the repoID when a new pr is created. As well, all NullXXX when inserting should be set to Valid. Signed-off-by: jolheiser <git@jolheiser.com>
Eric Bower
·
2024-07-21
feat(cli): add `--accept` and `--close` to `pr add` cmd refactor(cli): always print PR summary when applicable
jolheiser
·
2024-07-19
feat: consistent user display This patch unifies how user accounts look across the entire frontend It also adds some CSS specifically for reviews/admins Signed-off-by: jolheiser <git@jolheiser.com>
Eric Bower
·
2024-07-19
feat: static assets folder Create a static folder that will be served as-is with the ability for users to bring-their-own static folder. If we detect `data_dir/static/` we will serve that instead of the embedded one we provide by default.
Eric Bower
·
2024-07-19
fix(cli): access control for removing patchsets I also fixed some other access control issues for changing PR status.
Eric Bower
·
2024-07-19
fix(cli): remove vim comment This was probably not a great solution and instead we should rely on the end-user to figure out how to properly highlight in their editor
Eric Bower
·
2024-07-18
feat: empty patch support `git format-patch --cover-letter` is a great way to provide a summary of all the changes within a patchset so we want to explicity support that functionality. The only gotcha here is we now allow empty patches. So if there is an empty patch in the patchset, the committer needs to add another option: `git am -3 --empty=stop|drop|keep` depending on their preference.
8085b4f
(v0.0.1)
Eric Bower
·
2024-07-14
refactor: patch requests -> patchsets -> patches Previously a patch request contained a series of patches. This worked great as an MVP but we are starting to see some issues with this impl. Previously the contrib and reviewer would push patches to git-pr similar to github pull requests. They all get merged into a single patchset. This mostly works until you want to start editing previous commits to keep the commit history tidy and relevant. For many workflows, going back to a previous commit and amending it to address feedback is desirable. This creates a new model, patchset, which is a mostly immutable container for patches. 1-to-many patch request to patchsets and 1-to-many patchset to patches. Think of these patchsets as revisions. This allows us to better organize collaboration and enable features like `git range-diff` to see changes between revisions. BREAKING CHANGE: sqlite dbs will have to be recreated as the new models are fundamentally different. Sorry for the inconvenience!
Eric Bower
·
2024-07-14
fix: for content sha ignore diff file with base-commit Our content sha computation is wrong when one contrib provides a base-commit and the other does not. Unfortunately this is dependent on the client and whether or not they provide the base commit `git format-patch --base` so we have to hack around it to keep commit sha identical.
Eric Bower
·
2024-07-14
content sha should ignore diff file with base-commit Eric Bower (1): fix: for content sha ignore diff file with base-commit pr.go | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) -- 2.45.2
jolheiser
·
2024-07-17
feat: add basic OGP data to patch request page This patch adds some basic OGP data to the patch request details page. It includes the title, URL, and site name. Signed-off-by: jolheiser <git@jolheiser.com>
jolheiser
·
2024-07-16
feat: list only your own PRs Signed-off-by: jolheiser <git@jolheiser.com>
Eric Bower
·
2024-07-17
refactor: convert AuthorDate to time.Time then format with cfg Unfortunately, `patch.AuthorDate` is stored as `TEXT` in sqlite and not a `DATETIME` so we have to do extra work to convert it on-the-fly. We can create a separate migration to convert it to a datetime.
jolheiser
·
2024-07-15
feat: configurable time format This patch allows the displayed time format to be configurable. By default it uses time.RFC3339 Signed-off-by: jolheiser <git@jolheiser.com>
jolheiser
·
2024-07-15
fix: use config url for web pages This patch uses the config URL in the frontend so that self-hosted users can point contributors to use their SSH server. Signed-off-by: jolheiser <git@jolheiser.com>
Eric Bower
·
2024-07-02
style(web): highlight admin style(cli): add more info to lists
Eric Bower
·
2024-06-24
refactor: remove comments I'd rather comments be part of a patch
Eric Bower
·
2024-05-31
feat: `pr add --force` to replace patchset style: various design tweaks feat: list repo ID with `pr ls`
Eric Bower
·
2024-04-28
progress Wow does this actually work? I wonder how we can do this.