@brokkai/bug-bot 0.2.0 → 0.2.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/README.md +7 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -162,6 +162,13 @@ refuses to send another create request. Run `once` to try reconciliation again.
|
|
|
162
162
|
If it never appears, inspect GitHub and the saved state before repairing the
|
|
163
163
|
pending entry; `retry` intentionally cannot blindly resend an ambiguous request.
|
|
164
164
|
|
|
165
|
+
Confirmed HTTP rejections, such as validation or permission failures, keep the
|
|
166
|
+
candidate pending. Correct the request or access problem, then run `once` to
|
|
167
|
+
resume, or `retry --once` if the attempt budget is exhausted. Timeouts, server
|
|
168
|
+
errors, and incomplete responses still require marker reconciliation. Older
|
|
169
|
+
versions saved every create error as ambiguous; those existing `posting` entries
|
|
170
|
+
still require inspection when no marker appears.
|
|
171
|
+
|
|
165
172
|
A per-repository local lock coordinates instances across branches and config
|
|
166
173
|
paths using the same state home. Different machines/accounts and simultaneous
|
|
167
174
|
human reports cannot be locked atomically with GitHub issue creation. Run one
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.2.
|
|
2
|
+
"version": "0.2.1",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"arm64"
|
|
26
26
|
],
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"@brokkai/bug-bot-linux-x64": "0.2.
|
|
29
|
-
"@brokkai/bug-bot-linux-arm64": "0.2.
|
|
30
|
-
"@brokkai/bug-bot-darwin-x64": "0.2.
|
|
31
|
-
"@brokkai/bug-bot-darwin-arm64": "0.2.
|
|
28
|
+
"@brokkai/bug-bot-linux-x64": "0.2.1",
|
|
29
|
+
"@brokkai/bug-bot-linux-arm64": "0.2.1",
|
|
30
|
+
"@brokkai/bug-bot-darwin-x64": "0.2.1",
|
|
31
|
+
"@brokkai/bug-bot-darwin-arm64": "0.2.1"
|
|
32
32
|
}
|
|
33
33
|
}
|