Commit ff0a822
committed
Fix hot fix
In 1ff8966 (Hot fix: accommodate for (silent?) change in GitHub API's
condition parsing, 2026-01-15), I tried to work around a silent change
on GitHub's backend side.
The change that broke Git for Windows' automation was that the
`created=>${after}` search parameter no longer worked. In my frantic
search for a hot fix, I failed to realize that the `=` in this construct
is not actually part of the condition, but it is the assignment of a
`GET` parameter. And the change on GitHub's side is simply that the
`>${date}` condition no longer works, at all.
The hot fix changed the order of `>` and `=`, which made the
greater-than character part of the `GET` parameter's name: `create>`.
As my excellent colleague Matthew Cheetham figured out, the equally
documented form `${date}..` of that date condition _does_ work, still.
So I guess some eager engineer simply forgot that there are multiple
documented ways to specify date ranges, and they accidentally dropped
support for one of them. Unfortunately, that was the form we used.
So let's now use the other instead.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>1 parent 2c933ff commit ff0a822
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
0 commit comments