File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
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
+
1
33
# 1.18.0 (2025-04-24)
2
34
3
35
- Upgrade Linux Glibc wheels to ` manylinux_2_28 `
You can’t perform that action at this time.
0 commit comments