Skip to content

Commit 42e835f

Browse files
committed
Update changelog
1 parent 375f238 commit 42e835f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# 1.18.1 (UNRELEASED)
2+
3+
- Update wheels to libgit2 1.9.1 and OpenSSL 3.3
4+
5+
- New `Index.remove_directory(...)`
6+
[#1377](https://github.com/libgit2/pygit2/pull/1377)
7+
8+
- Now `Repository.merge_file_from_index(...)` returns a `MergeFileResult` object when
9+
called with `use_deprecated=False`
10+
[#1376](https://github.com/libgit2/pygit2/pull/1376)
11+
12+
- Typing improvements
13+
[#1369](https://github.com/libgit2/pygit2/pull/1369)
14+
[#1370](https://github.com/libgit2/pygit2/pull/1370)
15+
[#1371](https://github.com/libgit2/pygit2/pull/1371)
16+
[#1373](https://github.com/libgit2/pygit2/pull/1373)
17+
[#1384](https://github.com/libgit2/pygit2/pull/1384)
18+
19+
Deprecations:
20+
21+
- Update your code:
22+
23+
# Before
24+
contents = Repository.merge_file_from_index(...)
25+
26+
# Now
27+
result = Repository.merge_file_from_index(..., use_deprecated=False)
28+
contents = result.contents
29+
30+
At some point in the future `use_deprecated=False` will be the default.
31+
32+
133
# 1.18.0 (2025-04-24)
234

335
- Upgrade Linux Glibc wheels to `manylinux_2_28`

0 commit comments

Comments
 (0)