diff options
| -rw-r--r-- | CHANGELOG | 3 | ||||
| -rw-r--r-- | VERSION | 2 | ||||
| -rw-r--r-- | lib/gitlab_post_receive.rb | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,6 @@ +v2.0.1 + - Send post-receive changes to redis as a string instead of array + v2.0.0 - Works with GitLab v7.3+ - Replace raise with abort when checking path to prevent path exposure @@ -1 +1 @@ -2.0.0 +2.0.1 diff --git a/lib/gitlab_post_receive.rb b/lib/gitlab_post_receive.rb index 3f9f384..bd80408 100644 --- a/lib/gitlab_post_receive.rb +++ b/lib/gitlab_post_receive.rb @@ -7,7 +7,7 @@ class GitlabPostReceive def initialize(repo_path, actor, changes) @config = GitlabConfig.new @repo_path, @actor = repo_path.strip, actor - @changes = changes.lines + @changes = changes end def exec |
