|
| 1 | +# 1.18.2 (UNRELEASED) |
| 2 | + |
| 3 | +- Add support for almost all global options |
| 4 | + [#1409](https://github.com/libgit2/pygit2/pull/1409) |
| 5 | + |
| 6 | +- Now it's possible to set `Submodule.url = url` |
| 7 | + [#1395](https://github.com/libgit2/pygit2/pull/1395) |
| 8 | + |
| 9 | +- New `RemoteCallbacks.push_negotiation(...)` |
| 10 | + [#1396](https://github.com/libgit2/pygit2/pull/1396) |
| 11 | + |
| 12 | +- New optional boolean argument `connect` in `Remote.ls_remotes(...)` |
| 13 | + [#1396](https://github.com/libgit2/pygit2/pull/1396) |
| 14 | + |
| 15 | +- Now `Remote.ls_remotes(...)` returns a list of `RemoteHead` objects |
| 16 | + [#1397](https://github.com/libgit2/pygit2/pull/1397) |
| 17 | + |
| 18 | +- Now `RemoteHead.loid` is Oid zero instead of None when not available locally |
| 19 | + [#1397](https://github.com/libgit2/pygit2/pull/1397) |
| 20 | + |
| 21 | +- Documentation fixes |
| 22 | + [#1388](https://github.com/libgit2/pygit2/pull/1388) |
| 23 | + |
| 24 | +- Typing improvements |
| 25 | + [#1387](https://github.com/libgit2/pygit2/pull/1387) |
| 26 | + [#1389](https://github.com/libgit2/pygit2/pull/1389) |
| 27 | + [#1390](https://github.com/libgit2/pygit2/pull/1390) |
| 28 | + [#1391](https://github.com/libgit2/pygit2/pull/1391) |
| 29 | + [#1392](https://github.com/libgit2/pygit2/pull/1392) |
| 30 | + [#1393](https://github.com/libgit2/pygit2/pull/1393) |
| 31 | + [#1394](https://github.com/libgit2/pygit2/pull/1394) |
| 32 | + [#1398](https://github.com/libgit2/pygit2/pull/1398) |
| 33 | + [#1399](https://github.com/libgit2/pygit2/pull/1399) |
| 34 | + [#1400](https://github.com/libgit2/pygit2/pull/1400) |
| 35 | + [#1402](https://github.com/libgit2/pygit2/pull/1402) |
| 36 | + [#1403](https://github.com/libgit2/pygit2/pull/1403) |
| 37 | + [#1406](https://github.com/libgit2/pygit2/pull/1406) |
| 38 | + |
| 39 | +Deprecations: |
| 40 | + |
| 41 | +- Now `Remote.ls_remotes(...)` returns a list of `RemoteHead` objects |
| 42 | + |
| 43 | + # Before |
| 44 | + for head in remote.ls_remotes(): |
| 45 | + head['name'] |
| 46 | + head['oid'] |
| 47 | + head['loid'] |
| 48 | + head['local'] |
| 49 | + head['symref_target'] |
| 50 | + |
| 51 | + # Now |
| 52 | + for head in remote.ls_remotes(): |
| 53 | + head.name |
| 54 | + head.oid |
| 55 | + head.loid |
| 56 | + head.local |
| 57 | + head.symref_target |
| 58 | + |
| 59 | + |
1 | 60 | # 1.18.1 (2025-07-26)
|
2 | 61 |
|
3 | 62 | - Update wheels to libgit2 1.9.1 and OpenSSL 3.3
|
|
0 commit comments