Skip to content

Commit 3d7f274

Browse files
committed
Bump to v0.23.0
1 parent 291b988 commit 3d7f274

File tree

4 files changed

+34
-4
lines changed

4 files changed

+34
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
os: linux
3939
dist: xenial
4040
node_js: "8"
41-
env: TARGET_ARCH="x64" EXTENDED_TESTING="false"
41+
env: TARGET_ARCH="x64" EXTENDED_TESTING="false" SKIP_DEPLOY="true"
4242
- stage: "Deploy documentation"
4343
os: linux
4444
dist: xenial
@@ -100,7 +100,7 @@ script:
100100
fi
101101

102102
after_success:
103-
- if [ -n "$TRAVIS_TAG" ] && [ "$EXTENDED_TESTING" != "true" ] && [ "$DEPLOY_DOCUMENTATION" != "true" ]; then
103+
- if [ -n "$TRAVIS_TAG" ] && [ "$EXTENDED_TESTING" != "true" ] && [ "$DEPLOY_DOCUMENTATION" != "true" ] && [ "$SKIP_DEPLOY" != "true" ]; then
104104
npm install -g node-pre-gyp;
105105
npm install -g aws-sdk;
106106
node lifecycleScripts/clean;

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Change Log
22

3+
## <a name="v0-23-0" href="#v0-23-0">v0.23.0</a> [(2018-10-22)](https://github.com/nodegit/nodegit/releases/tag/v0.23.0)
4+
5+
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.22.2...v0.23.0)
6+
7+
#### Summary of changes
8+
- Added Node 10 support.
9+
- We no longer compile OpenSSL. Instead, we prefer the OpenSSL shipped with Node. In electron builds, we prefer the system openssl on linux, and we get prebuilt static libs from Conan.
10+
- Cleaned up some compiler warnings
11+
- Our http_parser dependency is now a submodule.
12+
- Updated some dependencies in npm to get rid of security vulnerabilities and warnings.
13+
- Exposed transfer progress callback for pushing.
14+
- Libssh2 is now preconfigured for both Mac OS and Windows
15+
16+
#### Merged PRs into NodeGit
17+
- [warn about node v10 incompatibility in readme #1534](https://github.com/nodegit/nodegit/pull/1534)
18+
- [Define error codes to fix compiler warnings about unused variables #1486](https://github.com/nodegit/nodegit/pull/1486)
19+
- [Include http_parser via submodule #1551](https://github.com/nodegit/nodegit/pull/1551)
20+
- [Update dependencies to get rid of security vulnerabilities #1547](https://github.com/nodegit/nodegit/pull/1547)
21+
- [add github issue template #1548](https://github.com/nodegit/nodegit/pull/1548)
22+
- [Enable git_push_transfer_progress - Help wanted #1500](https://github.com/nodegit/nodegit/pull/1500)
23+
- [Fixed createBranch API params #1552](https://github.com/nodegit/nodegit/pull/1552)
24+
- [Use curl-config to find curl #1555](https://github.com/nodegit/nodegit/pull/1555)
25+
- [Update readme #1554](https://github.com/nodegit/nodegit/pull/1554)
26+
- [Node 10 support #1545](https://github.com/nodegit/nodegit/pull/1545)
27+
- [Update dependencies #1519](https://github.com/nodegit/nodegit/pull/1519)
28+
- [Run submodule updates in sequence rather than parallel #1558](https://github.com/nodegit/nodegit/pull/1558)
29+
- [Fix Electron builds on win32 #1560](https://github.com/nodegit/nodegit/pull/1560)
30+
- [Use static `libssh2_config.h` on MacOS builds #1569](https://github.com/nodegit/nodegit/pull/1569)
31+
32+
333
## <a name="v0-23-0-alpha.2" href="#v0-23-0-alpha.2">v0.23.0-alpha.2</a> [(2018-10-19)](https://github.com/nodegit/nodegit/releases/tag/v0.23.0-alpha.2)
434

535
[Full Changelog](https://github.com/nodegit/nodegit/compare/v0.23.0-alpha.1...v0.23.0-alpha.2)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nodegit",
33
"description": "Node.js libgit2 asynchronous native bindings",
4-
"version": "0.23.0-alpha.2",
4+
"version": "0.23.0",
55
"homepage": "http://nodegit.org",
66
"keywords": [
77
"libgit2",

0 commit comments

Comments
 (0)