prreviewbuddy 0.25.13 → 0.29.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,133 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.29.1
4
+
5
+ **Icons in the review sidebar.** Every item in a review's sidebar now has an icon: Review, KISS,
6
+ Issues, Questions, Files, PR context, Diagrams, Recommendations, and the links at the bottom. All
7
+ reviews and Settings had small text symbols before; they now have full-size icons like the rest.
8
+ The themes in the review path keep their numbers.
9
+
10
+ **Review path themes start collapsed.** On a review's path page, each theme now opens folded to
11
+ its title, priority and size, so you can see the whole path at a glance. Click a theme to open it,
12
+ or choose it in the sidebar to jump straight to it opened.
13
+
14
+ ## 0.29.0
15
+
16
+ **Filter your reviews by author.** The reviews list has a dropdown beside the search that lists
17
+ everyone whose pull requests you have reviewed. Choose someone and the list shows only their
18
+ reviews. It works together with the filters beside it, so you can see, say, everything of one
19
+ person's that is still in progress. Reviews of a local branch with no pull request have no GitHub
20
+ username, so they show under Everyone only.
21
+
22
+ **Mark a review reviewed from the list.** Each review's menu in the reviews list now has Mark
23
+ reviewed, so you no longer have to open a review to mark it. Once it is reviewed, the same menu
24
+ offers Mark in progress to undo it. As before, marking a review reviewed takes it out of your
25
+ review queue.
26
+
27
+ **Delete a review from its own page.** The menu at the top of a review now has Delete review,
28
+ with the same confirmation the list uses. It deletes only the review you are looking at, not
29
+ earlier reviews of the same branch, and then takes you back to your reviews. A review that is
30
+ still being analysed cannot be deleted.
31
+
32
+ **Easier to scan sidebar.** In a review's sidebar, Issues, Questions, Files, PR context and the
33
+ links at the bottom are now white, so the review path above them stands out as its own list.
34
+
35
+ ## 0.28.0
36
+
37
+ **Save a review, and work through a queue.** The star on each review in your reviews list now
38
+ means Saved. A saved review still sits at the top of the list, and the new Saved filter shows only
39
+ those. For a batch you are working through right now, choose Add to review queue from a review's
40
+ menu: the Queue filter lists them in the order you added them, and Continue reviewing at the top of
41
+ the list opens the first one. Marking a review Reviewed takes it out of the queue. Moving it back
42
+ to In progress does not put it back, so the queue only ever holds what you chose to put there.
43
+
44
+ **Saved and queued reviews are kept for ninety days.** Other reviews are still kept for thirty
45
+ days. The ninety days count from the last time you opened the review, so one you keep coming back
46
+ to stays. A saved review is not kept forever: after ninety days without being opened it is removed
47
+ like any other.
48
+
49
+ **A saved review no longer disappears from the list.** The list shows your fifty most recent
50
+ branches, and a review saved or queued further back than that used to be missing from it
51
+ altogether. Saved and queued reviews are now always listed, in addition to the fifty most recent.
52
+
53
+ ## 0.27.2
54
+
55
+ **Choose the model a review runs under.** `prreviewbuddy review --model <model>` asks the agent for
56
+ a particular model instead of whichever one it normally uses. It works with any agent:
57
+ `--agent codex --model gpt-5.3-codex`, or `--model opus` for Claude Code, with `--lens kiss` as well
58
+ as with the standard review, and with several pull requests at once. The name is passed straight
59
+ through, so anything your agent
60
+ accepts works here, including one released after this version of PR Review Buddy.
61
+ `prreviewbuddy --help` says where to find the names each agent takes, and a name the agent does not
62
+ know is answered by the agent itself, in its own words, along with where to look for one that
63
+ works.
64
+
65
+ **A review keeps the model it was pinned to.** Every agent call a review makes asks for the model
66
+ that review was pinned to: updating it, re-analysing it, running `--lens kiss` on it, asking the
67
+ assistant a question about it, and drawing a diagram of it. Only starting a new analysis changes
68
+ that, with `prreviewbuddy review --reanalyse --model <model>`. A review that never named a model
69
+ stays that way, and will not silently acquire one.
70
+
71
+ **Reviews now say which model made them, and only when they can.** Analysis details record what was
72
+ asked for and, where the agent reports it, what actually answered. Those are shown as separate
73
+ facts, because asking for a model is not proof of having got one: Codex never states which model it
74
+ used, so a Codex review says so rather than repeating the request back as though it were confirmed.
75
+ A review that pinned nothing still reads as it always did, naming just the agent. Those two facts
76
+ describe the run that last worked on the review, so bringing a review up to date re-states them
77
+ from the run that did the updating rather than carrying the earlier analysis's answers forward.
78
+ What the review asked for is not a fact about one run and survives, which is what keeps a pinned
79
+ review pinned.
80
+
81
+ ## 0.26.0
82
+
83
+ **Review several pull requests with one command.** `prreviewbuddy review --pr <url> <url> ...`
84
+ starts a review of each one. Every pull request gets an ordinary review of its own, with its own
85
+ link, exactly as if you had named it on its own. Two run at a time by default; `--concurrency <n>`
86
+ changes that. The link to all your reviews is printed as soon as the batch starts, so you can watch
87
+ the reviews appear there while they are being made, and one line per pull request shows the step
88
+ each has reached. At the end every pull request is listed with its own link. A pull request that
89
+ fails does not stop the others, and the command exits with 1 if any of them failed.
90
+
91
+ **Ctrl-C stops a review rather than failing it.** Pressing Ctrl-C during a batch stops the reviews
92
+ that are running and starts no more. A stopped review now says **Review stopped** on its page, with
93
+ a **Carry on** button, and **Analysis stopped** in the list of reviews. A review that genuinely went
94
+ wrong now says **Analysis failed** there instead. Running the same command again carries on from
95
+ where each review got to.
96
+
97
+ **Two pull requests from the same branch name are no longer mixed up.** Pull requests from two forks
98
+ that share a head branch name (such as `patch-1`) used to be handed each other's review. A review now
99
+ records its pull request number and is only handed back for that number. One consequence: a pull
100
+ request reviewed before this version, without its conversation attached, has no recorded number and
101
+ gets a fresh review the next time you ask for it.
102
+
103
+ ## 0.25.15
104
+
105
+ **Buddy AI answers one question at a time.** While Buddy AI was answering, a suggested question
106
+ or **Explain in simple terms** still started a second one. The conversation briefly showed two
107
+ questions, and then the page reloaded.
108
+
109
+ Those controls are now greyed out while a question is being answered, and nothing new starts until
110
+ it finishes or you press **Stop**. If you stop a question while something is already in the ask
111
+ field, that draft is kept. Diagrams are unchanged and can still be drawn while a question is being
112
+ answered.
113
+
114
+ After you press **Stop**, you can ask again right away. Before, a question asked in the moment
115
+ after Stop could be refused as a second one while the stopped question was still winding down, and
116
+ the page reloaded. The same applies to stopping a diagram and drawing another.
117
+
118
+ ## 0.25.14
119
+
120
+ **A question keeps being answered after you leave the review.** If you asked Buddy AI something
121
+ and then went to the reviews list or opened another review, the answer was thrown away. Coming
122
+ back showed an empty assistant, and your question had gone too. Drawing a diagram had the same
123
+ problem.
124
+
125
+ A question or a diagram now keeps going until it finishes, whichever page you are on. If you come
126
+ back while it is still working, the review shows your question with its progress, and the answer
127
+ appears when it is ready. **Stop** is the only thing that ends one early, and it works from any
128
+ page that has the review open. Anything you did on the review in the meantime, such as marking it
129
+ reviewed, is kept when the answer arrives.
130
+
3
131
  ## 0.25.13
4
132
 
5
133
  **Two updates of the same review no longer run over each other.** Pressing **Update review** on the