Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## <a name="v0-28-0-alpha.35" href="#v0-28-0-alpha-35">v0.28.0-alpha.35</a> [(2025-06-03)](https://github.com/nodegit/nodegit/releases/tag/v0.28.0-alpha.35)

[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.28.0-alpha.34...v0.28.0-alpha.35)

#### Summary of Changes
- Bump libgit2 to 1.9.1
- Bump OpenSSL to 3.0
- Move OpenSSL Packaging to Github Actions
- Add arm64 build Support

#### Merged PRs into NodeGit
- [Bump libgit2 to 1.9.1](https://github.com/nodegit/nodegit/pull/2025)
- [Bump OpenSSL to 3.0, Move OpenSSL package generation to Github Actions](https://github.com/nodegit/nodegit/pull/2026)
- [fix: correct macos arch labels](github.com/nodegit/nodegit/pull/2027)
- [Add Ability to compile for arm64](https://github.com/nodegit/nodegit/pull/2028)

## <a name="v0-28-0-alpha.34" href="#v0-28-0-alpha-34">v0.28.0-alpha.34</a> [(2025-06-03)](https://github.com/nodegit/nodegit/releases/tag/v0.28.0-alpha.34)

[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.28.0-alpha.33...v0.28.0-alpha.34)
Expand Down
5 changes: 5 additions & 0 deletions generate/input/descriptor.json
Original file line number Diff line number Diff line change
Expand Up @@ -1526,6 +1526,11 @@
}
}
},
"email": {
"cDependencies": [
"git2/sys/email.h"
]
},
"email_create_options": {
"hasConstructor": true
},
Expand Down
51 changes: 51 additions & 0 deletions generate/input/libgit2-supplement.json
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,54 @@
"isErrorCode": true
}
},
"git_email_create_from_diff": {
"file": "sys/email.h",
"type": "function",
"isAsync": true,
"group": "email",
"args": [
{
"name": "out",
"type": "git_buf *"
},
{
"name": "diff",
"type": "git_diff *"
},
{
"name": "patch_idx",
"type": "size_t"
},
{
"name": "patch_count",
"type": "size_t"
},
{
"name": "commit_id",
"type": "const git_oid *"
},
{
"name": "summary",
"type": "const char *"
},
{
"name": "body",
"type": "const char *"
},
{
"name": "author",
"type": "const git_signature *"
},
{
"name": "opts",
"type": "git_email_create_options *"
}
],
"return": {
"type": "int",
"isErrorCode": true
}
},
"git_diff_get_perfdata": {
"file": "sys/diff.h",
"args": [
Expand Down Expand Up @@ -2619,6 +2667,9 @@
"blame": [
"git_blame_file"
],
"email": [
"git_email_create_from_diff"
],
"note": [
"git_note_author",
"git_note_commit_create",
Expand Down
5 changes: 2 additions & 3 deletions generate/templates/templates/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,8 @@
"<(electron_openssl_root)/include"
],
"libraries": [
# this order is significant on centos7 apparently...
"<(electron_openssl_root)/lib/libssl.a",
"<(electron_openssl_root)/lib/libcrypto.a"
"<(electron_openssl_root)/lib64/libssl.a",
"<(electron_openssl_root)/lib64/libcrypto.a"
]
}],
["<(is_electron) == 1 and <(electron_openssl_static) != 1", {
Expand Down
Loading