Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2018-08-03 18:46:24 +0300
committerJacob Vosmaer <jacob@gitlab.com>2018-08-03 18:46:24 +0300
commitbc7b07db791a8a7a7634acb71f9f2915d751b6c8 (patch)
tree45c94e821a7d33eb0a3fe797b1052b505768654e
parent84308e0db3a59386613c5a3fee3a4f1d8e084280 (diff)
Version 0.115.0v0.115.0
-rw-r--r--CHANGELOG.md28
-rw-r--r--VERSION2
-rw-r--r--changelogs/unreleased/add-on-config-toml-example.yml5
-rw-r--r--changelogs/unreleased/diff-stats-rpc.yml5
-rw-r--r--changelogs/unreleased/list-new-commits-chunking.yml5
-rw-r--r--changelogs/unreleased/numstat-small-fixes.yml5
-rw-r--r--changelogs/unreleased/remove-danger-dockerfile.yml5
-rw-r--r--changelogs/unreleased/sh-bump-gitlab-markup.yml5
-rw-r--r--changelogs/unreleased/update-gitaly-proto.yml5
-rw-r--r--changelogs/unreleased/zj-stop-vendor-version-info.yml5
-rw-r--r--changelogs/unreleased/zj-vendor-gitlab-git-20180730.yml5
11 files changed, 29 insertions, 46 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 51241280c..08d943d0f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,33 @@
# Gitaly changelog
+## v0.115.0
+
+#### Added
+- Implement DiffService.DiffStats RPC
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/808
+- Update gitaly-proto to 0.109.0
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/843
+
+#### Changed
+- Stop vendoring Gitlab::VersionInfo
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/840
+
+#### Fixed
+- Check errors and fix chunking in ListNewCommits
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/852
+- Fix reStructuredText not working on Gitaly nodes
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/838
+
+#### Other
+- Add auth to the config.toml.example file
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/851
+- Remove the Dockerfile for Danger since the image is now built by https://gitlab.com/gitlab-org/gitlab-build-images
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/836
+- Vendor Gitlab::Git at 2ca8219a20f16
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/841
+- Move diff parser test to own package
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/837
+
## v0.114.0
#### Added
diff --git a/VERSION b/VERSION
index 18455b77f..bdc80994d 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.114.0
+0.115.0
diff --git a/changelogs/unreleased/add-on-config-toml-example.yml b/changelogs/unreleased/add-on-config-toml-example.yml
deleted file mode 100644
index 86c842fca..000000000
--- a/changelogs/unreleased/add-on-config-toml-example.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Add auth to the config.toml.example file
-merge_request: 851
-author:
-type: other
diff --git a/changelogs/unreleased/diff-stats-rpc.yml b/changelogs/unreleased/diff-stats-rpc.yml
deleted file mode 100644
index 61c515686..000000000
--- a/changelogs/unreleased/diff-stats-rpc.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Implement DiffService.DiffStats RPC
-merge_request: 808
-author:
-type: added
diff --git a/changelogs/unreleased/list-new-commits-chunking.yml b/changelogs/unreleased/list-new-commits-chunking.yml
deleted file mode 100644
index e2a707bf8..000000000
--- a/changelogs/unreleased/list-new-commits-chunking.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Check errors and fix chunking in ListNewCommits
-merge_request: 852
-author:
-type: fixed
diff --git a/changelogs/unreleased/numstat-small-fixes.yml b/changelogs/unreleased/numstat-small-fixes.yml
deleted file mode 100644
index 33776a226..000000000
--- a/changelogs/unreleased/numstat-small-fixes.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Move diff parser test to own package
-merge_request: 837
-author:
-type: other
diff --git a/changelogs/unreleased/remove-danger-dockerfile.yml b/changelogs/unreleased/remove-danger-dockerfile.yml
deleted file mode 100644
index 476211722..000000000
--- a/changelogs/unreleased/remove-danger-dockerfile.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Remove the Dockerfile for Danger since the image is now built by https://gitlab.com/gitlab-org/gitlab-build-images
-merge_request: 836
-author:
-type: other
diff --git a/changelogs/unreleased/sh-bump-gitlab-markup.yml b/changelogs/unreleased/sh-bump-gitlab-markup.yml
deleted file mode 100644
index 47de3dbf0..000000000
--- a/changelogs/unreleased/sh-bump-gitlab-markup.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Fix reStructuredText not working on Gitaly nodes
-merge_request: 838
-author:
-type: fixed
diff --git a/changelogs/unreleased/update-gitaly-proto.yml b/changelogs/unreleased/update-gitaly-proto.yml
deleted file mode 100644
index e0d424667..000000000
--- a/changelogs/unreleased/update-gitaly-proto.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Update gitaly-proto to 0.109.0
-merge_request: 843
-author:
-type: added
diff --git a/changelogs/unreleased/zj-stop-vendor-version-info.yml b/changelogs/unreleased/zj-stop-vendor-version-info.yml
deleted file mode 100644
index 70c4b900c..000000000
--- a/changelogs/unreleased/zj-stop-vendor-version-info.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Stop vendoring Gitlab::VersionInfo
-merge_request: 840
-author:
-type: changed
diff --git a/changelogs/unreleased/zj-vendor-gitlab-git-20180730.yml b/changelogs/unreleased/zj-vendor-gitlab-git-20180730.yml
deleted file mode 100644
index 408ec3e50..000000000
--- a/changelogs/unreleased/zj-vendor-gitlab-git-20180730.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-title: Vendor Gitlab::Git at 2ca8219a20f16
-merge_request: 841
-author:
-type: other