summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-01-18 22:22:47 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2019-01-25 17:44:51 +0000
commite5081962d6af5ce33583ba50da9b1e77625a2bc0 (patch)
tree44a2d4dd2c21d4d1ad1cd935c0f2f1e69a672b61
parent2236b3dda0a39b7c914c02291d5c796e989bd994 (diff)
downloadlibgit2-e5081962d6af5ce33583ba50da9b1e77625a2bc0.tar.gz
CHANGELOG: update for v0.27.8
-rw-r--r--CHANGELOG.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f7e72d343..e935b77ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,36 @@
+v0.27.8
+-------
+
+This is a bugfix release with the following change:
+
+- Negative gitignore rules should match git's behavior. For example,
+ given a gitignore rule of `*.test` and a second gitignore rule of
+ `!dir/*`, we would incorrect apply the negation rules. With this
+ fix, we behave like git.
+
+- Always provide custom transport implementations with the URL in the
+ action function. v0.27.7 included a change that would erroneously
+ provide NULL to subsequent calls to the action function. This is
+ fixed.
+
+- Fix several bugs parsing malformed commits and malformed trees.
+
+- Allow configuration file directory locations to be specified as
+ `/dev/null`.
+
+- Ensure that when an error occurs reading from the loose ODB backend
+ that we do not segfault.
+
+- Ensure that when a filter stream application fails that we do not
+ segfault.
+
+- Ensure that any configuration reading failures are propagated while
+ loading submodule information.
+
+- Peel annotated tags fully when creating an annotated commit.
+
+- Ensure that numbers are parsed correctly in a variety of places.
+
v0.27.7
-------