Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 0551dfd4 | 2026-08-15 13:37:11 | Merge pull request #7346 from weihanglo/zstream-infloop fix(zstream): fail on truncated input instead of looping forever | ||
| 0334930c | 2026-08-15 13:35:47 | Merge pull request #7341 from karpovantonme/docs/param-names-match-signatures docs: fix six @param names that do not match the signatures | ||
| 5948ef38 | 2026-08-13 13:48:38 | CVE-2026-5917: Escape repo path in gen_proto() Takes inspiration from 346f28b89d6aae0c3ea0b9f0b0bc0f0afa177fab Signed-off-by: Stephen Gallagher <sgallagh@redhat.com> | ||
| 5254f5dc | 2026-08-12 08:32:40 | fix(zstream): fail on truncated input instead of looping forever `inflate()` reports `Z_BUF_ERROR` when a truncated stream exhausts its input before reaching `Z_STREAM_END`. The stock `zstream_seterr` suggests treating that as non-fatal so callers can retry with more input or output space. However, the drain loop in `git_zstream_get_output` can supply neither because * output space is still available * input is only refilled outside the loop It would leads to zero-progress forever. The problematic behavior was found in `git_odb_read` on a truncated loose object. The proposed fix here: Detect the stuck state in the drain loop and report an error. | ||
| 1e9bbdc0 | 2026-08-12 16:16:06 | fix signed-int-overflow inconfig_parse_int64 | ||
| 82249d14 | 2026-08-10 20:59:45 | Merge pull request #7129 from jar-of-salt/merge-octopus Add Merge Support for `octopus` Strategy | ||
| 9a25a980 | 2026-08-10 20:00:00 | merge: octopus merge updates A handful of minor refactorings around the octopus merge code to bring it more in line with the rest of the merge codebase. | ||
| 97c3475f | 2026-08-10 21:31:49 | docs: fix six \param names that do not match the signatures - refdb_backend: the iterator callback documents `out` for an argument named `iter`; unlock documents `who`, which is the name `rename` uses, while unlock itself takes `sig` - utf-conv: git_utf8_from_16 documents `src_len`, an argument only git_utf8_from_16_with_len has - path_w32: both trim_end and remove_namespace document `path` for an argument named `str` - w32_util: filetime_to_timespec documents `FILETIME`, the type, where the argument is `ft` Comments only. | ||
| 270074bc | 2026-08-08 17:44:24 | Merge pull request #7176 from dislogical/feat/index-extensions Add support for arbitrary index extensions | ||
| 0c3cf4e9 | 2026-08-06 21:28:11 | index: fixups for index extension support |