Skip to content

Commit a660082

Browse files
committed
Update libgit2 to 1.9
1 parent 1742e6b commit a660082

14 files changed

+65
-39
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git2"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -20,7 +20,7 @@ url = "2.0"
2020
bitflags = "2.1.0"
2121
libc = "0.2"
2222
log = "0.4.8"
23-
libgit2-sys = { path = "libgit2-sys", version = "0.17.0" }
23+
libgit2-sys = { path = "libgit2-sys", version = "0.18.0" }
2424

2525
[target."cfg(all(unix, not(target_os = \"macos\")))".dependencies]
2626
openssl-sys = { version = "0.9.45", optional = true }

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ libgit2 bindings for Rust.
66

77
```toml
88
[dependencies]
9-
git2 = "0.19.0"
9+
git2 = "0.20.0"
1010
```
1111

1212
## Rust version requirements
@@ -16,7 +16,7 @@ stable release as well.
1616

1717
## Version of libgit2
1818

19-
Currently this library requires libgit2 1.8.1 (or newer patch versions). The
19+
Currently this library requires libgit2 1.9.0 (or newer patch versions). The
2020
source for libgit2 is included in the libgit2-sys crate so there's no need to
2121
pre-install the libgit2 library, the libgit2-sys crate will figure that and/or
2222
build that for you. On the other hand, if an appropriate version of `libgit2`

git2-curl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git2-curl"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-lang/git2-rs"
@@ -16,7 +16,7 @@ edition = "2018"
1616
curl = "0.4.33"
1717
url = "2.0"
1818
log = "0.4"
19-
git2 = { path = "..", version = "0.19", default-features = false }
19+
git2 = { path = "..", version = "0.20", default-features = false }
2020

2121
[dev-dependencies]
2222
civet = "0.11"

git2-curl/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! > **NOTE**: At this time this crate likely does not support a `git push`
1616
//! > operation, only clones.
1717
18-
#![doc(html_root_url = "https://docs.rs/git2-curl/0.20")]
18+
#![doc(html_root_url = "https://docs.rs/git2-curl/0.21")]
1919
#![deny(missing_docs)]
2020
#![warn(rust_2018_idioms)]
2121
#![cfg_attr(test, deny(warnings))]

libgit2-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libgit2-sys"
3-
version = "0.17.0+1.8.1"
3+
version = "0.18.0+1.9.0"
44
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"]
55
links = "git2"
66
build = "build.rs"

libgit2-sys/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::process::Command;
77
/// Tries to use system libgit2 and emits necessary build script instructions.
88
fn try_system_libgit2() -> Result<pkg_config::Library, pkg_config::Error> {
99
let mut cfg = pkg_config::Config::new();
10-
match cfg.range_version("1.8.1".."1.9.0").probe("libgit2") {
10+
match cfg.range_version("1.9.0".."1.10.0").probe("libgit2") {
1111
Ok(lib) => {
1212
for include in &lib.include_paths {
1313
println!("cargo:root={}", include.display());

libgit2-sys/lib.rs

+17-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/libgit2-sys/0.17")]
1+
#![doc(html_root_url = "https://docs.rs/libgit2-sys/0.18")]
22
#![allow(non_camel_case_types, unused_extern_crates)]
33

44
// This is required to link libz when libssh2-sys is not included.
@@ -395,6 +395,15 @@ pub struct git_remote_callbacks {
395395
pub remote_ready: git_remote_ready_cb,
396396
pub payload: *mut c_void,
397397
pub resolve_url: git_url_resolve_cb,
398+
pub update_refs: Option<
399+
extern "C" fn(
400+
*const c_char,
401+
*const git_oid,
402+
*const git_oid,
403+
*mut git_refspec,
404+
*mut c_void,
405+
) -> c_int,
406+
>,
398407
}
399408

400409
#[repr(C)]
@@ -668,8 +677,7 @@ pub struct git_status_entry {
668677

669678
git_enum! {
670679
pub enum git_checkout_strategy_t {
671-
GIT_CHECKOUT_NONE = 0,
672-
GIT_CHECKOUT_SAFE = 1 << 0,
680+
GIT_CHECKOUT_SAFE = 0,
673681
GIT_CHECKOUT_FORCE = 1 << 1,
674682
GIT_CHECKOUT_RECREATE_MISSING = 1 << 2,
675683
GIT_CHECKOUT_ALLOW_CONFLICTS = 1 << 4,
@@ -686,6 +694,7 @@ git_enum! {
686694
GIT_CHECKOUT_DONT_OVERWRITE_IGNORED = 1 << 19,
687695
GIT_CHECKOUT_CONFLICT_STYLE_MERGE = 1 << 20,
688696
GIT_CHECKOUT_CONFLICT_STYLE_DIFF3 = 1 << 21,
697+
GIT_CHECKOUT_NONE = 1 << 30,
689698

690699
GIT_CHECKOUT_UPDATE_SUBMODULES = 1 << 16,
691700
GIT_CHECKOUT_UPDATE_SUBMODULES_IF_CHANGED = 1 << 17,
@@ -808,10 +817,13 @@ pub struct git_blame_hunk {
808817
pub final_commit_id: git_oid,
809818
pub final_start_line_number: usize,
810819
pub final_signature: *mut git_signature,
820+
pub final_committer: *mut git_signature,
811821
pub orig_commit_id: git_oid,
812822
pub orig_path: *const c_char,
813823
pub orig_start_line_number: usize,
814824
pub orig_signature: *mut git_signature,
825+
pub orig_committer: *mut git_signature,
826+
pub summary: *const c_char,
815827
pub boundary: c_char,
816828
}
817829

@@ -870,7 +882,6 @@ pub struct git_config_entry {
870882
pub origin_path: *const c_char,
871883
pub include_depth: c_uint,
872884
pub level: git_config_level_t,
873-
pub free: Option<extern "C" fn(*mut git_config_entry)>,
874885
}
875886

876887
git_enum! {
@@ -2906,7 +2917,7 @@ extern "C" {
29062917
message: *const c_char,
29072918
tree: *const git_tree,
29082919
parent_count: size_t,
2909-
parents: *const *mut git_commit,
2920+
parents: *mut *const git_commit,
29102921
) -> c_int;
29112922
pub fn git_commit_create_buffer(
29122923
out: *mut git_buf,
@@ -2917,7 +2928,7 @@ extern "C" {
29172928
message: *const c_char,
29182929
tree: *const git_tree,
29192930
parent_count: size_t,
2920-
parents: *const *mut git_commit,
2931+
parents: *mut *const git_commit,
29212932
) -> c_int;
29222933
pub fn git_commit_header_field(
29232934
out: *mut git_buf,

libgit2-sys/libgit2

Submodule libgit2 updated 423 files

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
//! source `Repository`, to ensure that they do not outlive the repository
6666
//! itself.
6767
68-
#![doc(html_root_url = "https://docs.rs/git2/0.19")]
68+
#![doc(html_root_url = "https://docs.rs/git2/0.20")]
6969
#![allow(trivial_numeric_casts, trivial_casts)]
7070
#![deny(missing_docs)]
7171
#![warn(rust_2018_idioms)]

src/repo.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1302,9 +1302,9 @@ impl Repository {
13021302
parents: &[&Commit<'_>],
13031303
) -> Result<Oid, Error> {
13041304
let update_ref = crate::opt_cstr(update_ref)?;
1305-
let parent_ptrs = parents
1305+
let mut parent_ptrs = parents
13061306
.iter()
1307-
.map(|p| p.raw() as *mut raw::git_commit)
1307+
.map(|p| p.raw() as *const raw::git_commit)
13081308
.collect::<Vec<_>>();
13091309
let message = CString::new(message)?;
13101310
let mut raw = raw::git_oid {
@@ -1321,7 +1321,7 @@ impl Repository {
13211321
message,
13221322
tree.raw(),
13231323
parents.len() as size_t,
1324-
parent_ptrs.as_ptr()
1324+
parent_ptrs.as_mut_ptr()
13251325
));
13261326
Ok(Binding::from_raw(&raw as *const _))
13271327
}
@@ -1340,9 +1340,9 @@ impl Repository {
13401340
tree: &Tree<'_>,
13411341
parents: &[&Commit<'_>],
13421342
) -> Result<Buf, Error> {
1343-
let parent_ptrs = parents
1343+
let mut parent_ptrs = parents
13441344
.iter()
1345-
.map(|p| p.raw() as *mut raw::git_commit)
1345+
.map(|p| p.raw() as *const raw::git_commit)
13461346
.collect::<Vec<_>>();
13471347
let message = CString::new(message)?;
13481348
let buf = Buf::new();
@@ -1356,7 +1356,7 @@ impl Repository {
13561356
message,
13571357
tree.raw(),
13581358
parents.len() as size_t,
1359-
parent_ptrs.as_ptr()
1359+
parent_ptrs.as_mut_ptr()
13601360
));
13611361
Ok(buf)
13621362
}

systest/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ fn main() {
1515
.header("git2/sys/mempack.h")
1616
.header("git2/sys/repository.h")
1717
.header("git2/sys/cred.h")
18+
.header("git2/sys/email.h")
1819
.header("git2/cred_helpers.h")
1920
.type_name(|s, _, _| s.to_string());
2021
cfg.field_name(|_, f| match f {

tests/add_extensions.rs

+14-7
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,21 @@ fn test_add_extensions() -> Result<(), Error> {
1010
}
1111

1212
let extensions = unsafe { get_extensions() }?;
13+
let extensions: Vec<_> = extensions.iter().collect();
1314

14-
assert_eq!(extensions.len(), 4);
15-
assert_eq!(extensions.get(0), Some("custom"));
16-
assert_eq!(extensions.get(1), Some("noop"));
17-
// The objectformat extension was added in 1.6
18-
assert_eq!(extensions.get(2), Some("objectformat"));
19-
// The worktreeconfig extension was added in 1.8
20-
assert_eq!(extensions.get(3), Some("worktreeconfig"));
15+
assert_eq!(
16+
extensions,
17+
[
18+
Some("custom"),
19+
Some("noop"),
20+
// The objectformat extension was added in 1.6
21+
Some("objectformat"),
22+
// The preciousobjects extension was added in 1.9
23+
Some("preciousobjects"),
24+
// The worktreeconfig extension was added in 1.8
25+
Some("worktreeconfig")
26+
]
27+
);
2128

2229
Ok(())
2330
}

tests/get_extensions.rs

+13-6
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,20 @@ use git2::Error;
66
#[test]
77
fn test_get_extensions() -> Result<(), Error> {
88
let extensions = unsafe { get_extensions() }?;
9+
let extensions: Vec<_> = extensions.iter().collect();
910

10-
assert_eq!(extensions.len(), 3);
11-
assert_eq!(extensions.get(0), Some("noop"));
12-
// The objectformat extension was added in 1.6
13-
assert_eq!(extensions.get(1), Some("objectformat"));
14-
// The worktreeconfig extension was added in 1.8
15-
assert_eq!(extensions.get(2), Some("worktreeconfig"));
11+
assert_eq!(
12+
extensions,
13+
[
14+
Some("noop"),
15+
// The objectformat extension was added in 1.6
16+
Some("objectformat"),
17+
// The preciousobjects extension was added in 1.9
18+
Some("preciousobjects"),
19+
// The worktreeconfig extension was added in 1.8
20+
Some("worktreeconfig")
21+
]
22+
);
1623

1724
Ok(())
1825
}

tests/remove_extensions.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ fn test_remove_extensions() -> Result<(), Error> {
1111
"!ignore",
1212
"!noop",
1313
"!objectformat",
14+
"!preciousobjects",
1415
"!worktreeconfig",
1516
"other",
1617
])?;
1718
}
1819

1920
let extensions = unsafe { get_extensions() }?;
21+
let extensions: Vec<_> = extensions.iter().collect();
2022

21-
assert_eq!(extensions.len(), 2);
22-
assert_eq!(extensions.get(0), Some("custom"));
23-
assert_eq!(extensions.get(1), Some("other"));
23+
assert_eq!(extensions, [Some("custom"), Some("other")]);
2424

2525
Ok(())
2626
}

0 commit comments

Comments
 (0)