[DRE-commits] [gitlab-shell] 02/05: Updated version 5.8.0 from 'upstream/5.8.0'

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Tue Aug 22 08:47:55 UTC 2017


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository gitlab-shell.

commit d99fb50785495da1a82c040f174073359d6bfc2f
Merge: c8b8eb0 b2cfa41
Author: Pirate Praveen <praveen at debian.org>
Date:   Tue Aug 22 14:08:40 2017 +0530

    Updated version 5.8.0 from 'upstream/5.8.0'
    
    with Debian dir a597b3b8bc5ca603d618170bbc0db5fe8f1760e5

 .codeclimate.yml                                   |   19 +
 .gitignore                                         |    6 +
 .gitlab-ci.yml                                     |   34 +-
 CHANGELOG                                          |   81 +
 CONTRIBUTING.md                                    |  647 ++
 Gemfile.lock                                       |    3 -
 Makefile                                           |    2 +-
 README.md                                          |   53 +-
 VERSION                                            |    2 +-
 bin/compile                                        |   17 +
 bin/create-hooks                                   |    2 +-
 config.yml.example                                 |   14 +-
 go/README.md                                       |    6 +
 go/cmd/gitaly-receive-pack/main.go                 |   37 +
 go/cmd/gitaly-upload-pack/main.go                  |   37 +
 go/internal/config/config.go                       |   57 +
 go/internal/config/config_test.go                  |   28 +
 go/internal/handler/handler.go                     |   51 +
 go/internal/handler/receive_pack.go                |   26 +
 go/internal/handler/upload_pack.go                 |   26 +
 go/internal/logger/logger.go                       |   73 +
 go/vendor/github.com/golang/protobuf/LICENSE       |   31 +
 .../github.com/golang/protobuf/proto/Makefile      |   43 +
 .../github.com/golang/protobuf/proto/clone.go      |  229 +
 .../github.com/golang/protobuf/proto/decode.go     |  970 +++
 .../github.com/golang/protobuf/proto/encode.go     | 1362 ++++
 .../github.com/golang/protobuf/proto/equal.go      |  300 +
 .../github.com/golang/protobuf/proto/extensions.go |  587 ++
 go/vendor/github.com/golang/protobuf/proto/lib.go  |  898 +++
 .../golang/protobuf/proto/message_set.go           |  311 +
 .../golang/protobuf/proto/pointer_reflect.go       |  484 ++
 .../golang/protobuf/proto/pointer_unsafe.go        |  270 +
 .../github.com/golang/protobuf/proto/properties.go |  872 +++
 go/vendor/github.com/golang/protobuf/proto/text.go |  854 +++
 .../golang/protobuf/proto/text_parser.go           |  895 +++
 .../golang/protobuf/ptypes/any/any.pb.go           |  155 +
 .../golang/protobuf/ptypes/any/any.proto           |  140 +
 .../protobuf/ptypes/timestamp/timestamp.pb.go      |  127 +
 .../protobuf/ptypes/timestamp/timestamp.proto      |  111 +
 .../gitlab.com/gitlab-org/gitaly-proto/LICENSE     |   21 +
 .../gitlab-org/gitaly-proto/go/README.md           |    4 +
 .../gitlab.com/gitlab-org/gitaly-proto/go/VERSION  |    1 +
 .../gitlab-org/gitaly-proto/go/blob.pb.go          |  310 +
 .../gitlab-org/gitaly-proto/go/commit.pb.go        | 1462 ++++
 .../gitaly-proto/go/deprecated-services.pb.go      | 1146 +++
 .../gitlab-org/gitaly-proto/go/diff.pb.go          |  560 ++
 .../gitlab-org/gitaly-proto/go/notifications.pb.go |  136 +
 .../gitlab-org/gitaly-proto/go/ref.pb.go           |  929 +++
 .../gitaly-proto/go/repository-service.pb.go       |  347 +
 .../gitlab-org/gitaly-proto/go/shared.pb.go        |  176 +
 .../gitlab-org/gitaly-proto/go/smarthttp.pb.go     |  487 ++
 .../gitlab-org/gitaly-proto/go/ssh.pb.go           |  378 +
 go/vendor/gitlab.com/gitlab-org/gitaly/LICENSE     |   21 +
 go/vendor/gitlab.com/gitlab-org/gitaly/NOTICE      | 2233 ++++++
 .../gitlab-org/gitaly/auth/rpccredentials.go       |   25 +
 .../gitlab.com/gitlab-org/gitaly/client/dial.go    |   61 +
 .../gitlab-org/gitaly/client/receive_pack.go       |   40 +
 .../gitlab-org/gitaly/client/std_stream.go         |   66 +
 .../gitlab-org/gitaly/client/upload_pack.go        |   40 +
 .../gitlab-org/gitaly/streamio/stream.go           |  136 +
 go/vendor/golang.org/x/net/LICENSE                 |   27 +
 go/vendor/golang.org/x/net/PATENTS                 |   22 +
 go/vendor/golang.org/x/net/context/context.go      |  156 +
 go/vendor/golang.org/x/net/context/go17.go         |   72 +
 go/vendor/golang.org/x/net/context/pre_go17.go     |  300 +
 go/vendor/golang.org/x/net/http2/Dockerfile        |   51 +
 go/vendor/golang.org/x/net/http2/Makefile          |    3 +
 go/vendor/golang.org/x/net/http2/README            |   20 +
 .../golang.org/x/net/http2/client_conn_pool.go     |  256 +
 .../golang.org/x/net/http2/configure_transport.go  |   80 +
 go/vendor/golang.org/x/net/http2/databuffer.go     |  146 +
 go/vendor/golang.org/x/net/http2/errors.go         |  130 +
 go/vendor/golang.org/x/net/http2/flow.go           |   50 +
 go/vendor/golang.org/x/net/http2/frame.go          | 1579 ++++
 go/vendor/golang.org/x/net/http2/go16.go           |   43 +
 go/vendor/golang.org/x/net/http2/go17.go           |  106 +
 go/vendor/golang.org/x/net/http2/go17_not18.go     |   36 +
 go/vendor/golang.org/x/net/http2/go18.go           |   54 +
 go/vendor/golang.org/x/net/http2/gotrack.go        |  170 +
 go/vendor/golang.org/x/net/http2/headermap.go      |   78 +
 go/vendor/golang.org/x/net/http2/hpack/encode.go   |  240 +
 go/vendor/golang.org/x/net/http2/hpack/hpack.go    |  490 ++
 go/vendor/golang.org/x/net/http2/hpack/huffman.go  |  212 +
 go/vendor/golang.org/x/net/http2/hpack/tables.go   |  478 ++
 go/vendor/golang.org/x/net/http2/http2.go          |  387 +
 go/vendor/golang.org/x/net/http2/not_go16.go       |   46 +
 go/vendor/golang.org/x/net/http2/not_go17.go       |   87 +
 go/vendor/golang.org/x/net/http2/not_go18.go       |   27 +
 go/vendor/golang.org/x/net/http2/pipe.go           |  153 +
 go/vendor/golang.org/x/net/http2/server.go         | 2774 +++++++
 go/vendor/golang.org/x/net/http2/transport.go      | 2128 ++++++
 go/vendor/golang.org/x/net/http2/write.go          |  370 +
 go/vendor/golang.org/x/net/http2/writesched.go     |  242 +
 .../golang.org/x/net/http2/writesched_priority.go  |  452 ++
 .../golang.org/x/net/http2/writesched_random.go    |   72 +
 go/vendor/golang.org/x/net/idna/idna.go            |  668 ++
 go/vendor/golang.org/x/net/idna/punycode.go        |  203 +
 go/vendor/golang.org/x/net/idna/tables.go          | 4477 ++++++++++++
 go/vendor/golang.org/x/net/idna/trie.go            |   72 +
 go/vendor/golang.org/x/net/idna/trieval.go         |  114 +
 .../x/net/internal/timeseries/timeseries.go        |  525 ++
 go/vendor/golang.org/x/net/lex/httplex/httplex.go  |  351 +
 go/vendor/golang.org/x/net/trace/events.go         |  532 ++
 go/vendor/golang.org/x/net/trace/histogram.go      |  365 +
 go/vendor/golang.org/x/net/trace/trace.go          | 1079 +++
 go/vendor/golang.org/x/text/LICENSE                |   27 +
 go/vendor/golang.org/x/text/PATENTS                |   22 +
 go/vendor/golang.org/x/text/internal/gen/code.go   |  351 +
 go/vendor/golang.org/x/text/internal/gen/gen.go    |  281 +
 .../golang.org/x/text/internal/triegen/compact.go  |   58 +
 .../golang.org/x/text/internal/triegen/print.go    |  251 +
 .../golang.org/x/text/internal/triegen/triegen.go  |  494 ++
 go/vendor/golang.org/x/text/internal/ucd/ucd.go    |  376 +
 .../golang.org/x/text/secure/bidirule/bidirule.go  |  342 +
 go/vendor/golang.org/x/text/transform/transform.go |  705 ++
 go/vendor/golang.org/x/text/unicode/bidi/bidi.go   |  198 +
 .../golang.org/x/text/unicode/bidi/bracket.go      |  335 +
 go/vendor/golang.org/x/text/unicode/bidi/core.go   | 1058 +++
 go/vendor/golang.org/x/text/unicode/bidi/gen.go    |  133 +
 .../golang.org/x/text/unicode/bidi/gen_ranges.go   |   57 +
 .../golang.org/x/text/unicode/bidi/gen_trieval.go  |   64 +
 go/vendor/golang.org/x/text/unicode/bidi/prop.go   |  206 +
 go/vendor/golang.org/x/text/unicode/bidi/tables.go | 1779 +++++
 .../golang.org/x/text/unicode/bidi/trieval.go      |   60 +
 go/vendor/golang.org/x/text/unicode/cldr/base.go   |  100 +
 go/vendor/golang.org/x/text/unicode/cldr/cldr.go   |  130 +
 .../golang.org/x/text/unicode/cldr/collate.go      |  359 +
 go/vendor/golang.org/x/text/unicode/cldr/decode.go |  171 +
 .../golang.org/x/text/unicode/cldr/makexml.go      |  400 +
 .../golang.org/x/text/unicode/cldr/resolve.go      |  602 ++
 go/vendor/golang.org/x/text/unicode/cldr/slice.go  |  144 +
 go/vendor/golang.org/x/text/unicode/cldr/xml.go    | 1456 ++++
 .../golang.org/x/text/unicode/norm/composition.go  |  514 ++
 .../golang.org/x/text/unicode/norm/forminfo.go     |  259 +
 go/vendor/golang.org/x/text/unicode/norm/input.go  |  105 +
 go/vendor/golang.org/x/text/unicode/norm/iter.go   |  450 ++
 .../golang.org/x/text/unicode/norm/maketables.go   |  976 +++
 .../golang.org/x/text/unicode/norm/normalize.go    |  609 ++
 .../golang.org/x/text/unicode/norm/readwriter.go   |  125 +
 go/vendor/golang.org/x/text/unicode/norm/tables.go | 7631 ++++++++++++++++++++
 .../golang.org/x/text/unicode/norm/transform.go    |   88 +
 go/vendor/golang.org/x/text/unicode/norm/trie.go   |   54 +
 .../golang.org/x/text/unicode/norm/triegen.go      |  117 +
 .../golang.org/x/text/unicode/rangetable/gen.go    |  113 +
 .../golang.org/x/text/unicode/rangetable/merge.go  |  260 +
 .../x/text/unicode/rangetable/rangetable.go        |   70 +
 .../golang.org/x/text/unicode/rangetable/tables.go | 5735 +++++++++++++++
 go/vendor/google.golang.org/genproto/LICENSE       |  202 +
 .../genproto/googleapis/rpc/status/status.pb.go    |  144 +
 go/vendor/google.golang.org/grpc/CONTRIBUTING.md   |   46 +
 go/vendor/google.golang.org/grpc/LICENSE           |   28 +
 go/vendor/google.golang.org/grpc/Makefile          |   52 +
 go/vendor/google.golang.org/grpc/PATENTS           |   22 +
 go/vendor/google.golang.org/grpc/README.md         |   57 +
 go/vendor/google.golang.org/grpc/backoff.go        |   80 +
 go/vendor/google.golang.org/grpc/balancer.go       |  400 +
 go/vendor/google.golang.org/grpc/call.go           |  286 +
 go/vendor/google.golang.org/grpc/clientconn.go     |  965 +++
 go/vendor/google.golang.org/grpc/codegen.sh        |   17 +
 .../google.golang.org/grpc/codes/code_string.go    |   16 +
 go/vendor/google.golang.org/grpc/codes/codes.go    |  159 +
 go/vendor/google.golang.org/grpc/coverage.sh       |   48 +
 .../grpc/credentials/credentials.go                |  234 +
 .../grpc/credentials/credentials_util_go17.go      |   75 +
 .../grpc/credentials/credentials_util_go18.go      |   53 +
 .../grpc/credentials/credentials_util_pre_go17.go  |   72 +
 go/vendor/google.golang.org/grpc/doc.go            |    6 +
 go/vendor/google.golang.org/grpc/grpclog/logger.go |   93 +
 go/vendor/google.golang.org/grpc/interceptor.go    |   90 +
 .../google.golang.org/grpc/internal/internal.go    |   49 +
 .../google.golang.org/grpc/keepalive/keepalive.go  |   80 +
 .../google.golang.org/grpc/metadata/metadata.go    |  176 +
 go/vendor/google.golang.org/grpc/naming/naming.go  |   74 +
 go/vendor/google.golang.org/grpc/peer/peer.go      |   65 +
 go/vendor/google.golang.org/grpc/rpc_util.go       |  519 ++
 go/vendor/google.golang.org/grpc/server.go         | 1054 +++
 go/vendor/google.golang.org/grpc/stats/handlers.go |   76 +
 go/vendor/google.golang.org/grpc/stats/stats.go    |  223 +
 go/vendor/google.golang.org/grpc/status/status.go  |  136 +
 go/vendor/google.golang.org/grpc/stream.go         |  625 ++
 go/vendor/google.golang.org/grpc/tap/tap.go        |   54 +
 go/vendor/google.golang.org/grpc/trace.go          |  119 +
 .../google.golang.org/grpc/transport/control.go    |  193 +
 go/vendor/google.golang.org/grpc/transport/go16.go |   46 +
 go/vendor/google.golang.org/grpc/transport/go17.go |   46 +
 .../grpc/transport/handler_server.go               |  397 +
 .../grpc/transport/http2_client.go                 | 1129 +++
 .../grpc/transport/http2_server.go                 |  835 +++
 .../google.golang.org/grpc/transport/http_util.go  |  513 ++
 .../google.golang.org/grpc/transport/pre_go16.go   |   51 +
 .../google.golang.org/grpc/transport/transport.go  |  608 ++
 go/vendor/gopkg.in/yaml.v2/LICENSE                 |   13 +
 go/vendor/gopkg.in/yaml.v2/LICENSE.libyaml         |   31 +
 go/vendor/gopkg.in/yaml.v2/README.md               |  131 +
 go/vendor/gopkg.in/yaml.v2/apic.go                 |  742 ++
 go/vendor/gopkg.in/yaml.v2/decode.go               |  682 ++
 go/vendor/gopkg.in/yaml.v2/emitterc.go             | 1684 +++++
 go/vendor/gopkg.in/yaml.v2/encode.go               |  306 +
 go/vendor/gopkg.in/yaml.v2/parserc.go              | 1095 +++
 go/vendor/gopkg.in/yaml.v2/readerc.go              |  394 +
 go/vendor/gopkg.in/yaml.v2/resolve.go              |  208 +
 go/vendor/gopkg.in/yaml.v2/scannerc.go             | 2710 +++++++
 go/vendor/gopkg.in/yaml.v2/sorter.go               |  104 +
 go/vendor/gopkg.in/yaml.v2/writerc.go              |   89 +
 go/vendor/gopkg.in/yaml.v2/yaml.go                 |  346 +
 go/vendor/gopkg.in/yaml.v2/yamlh.go                |  716 ++
 go/vendor/gopkg.in/yaml.v2/yamlprivateh.go         |  173 +
 go/vendor/vendor.json                              |  249 +
 hooks/post-receive                                 |    5 +-
 hooks/pre-receive                                  |    5 +-
 hooks/update                                       |    2 +-
 lib/gitlab_access.rb                               |   16 +-
 lib/gitlab_access_status.rb                        |   14 +-
 lib/gitlab_authorized_keys.rb                      |    0
 lib/gitlab_config.rb                               |   11 +-
 lib/gitlab_custom_hook.rb                          |   81 +-
 lib/gitlab_keys.rb                                 |   13 +
 lib/gitlab_net.rb                                  |   50 +-
 lib/gitlab_post_receive.rb                         |   24 +-
 lib/gitlab_projects.rb                             |  101 +-
 lib/gitlab_shell.rb                                |  110 +-
 lib/names_helper.rb                                |    7 -
 lib/vendor/redis/lib/redis.rb                      |   11 +-
 lib/vendor/redis/lib/redis/client.rb               |    6 +-
 lib/vendor/redis/lib/redis/connection/ruby.rb      |   65 +-
 lib/vendor/redis/lib/redis/distributed.rb          |    4 +-
 lib/vendor/redis/lib/redis/version.rb              |    2 +-
 spec/gitlab_access_spec.rb                         |    7 +-
 spec/gitlab_custom_hook_spec.rb                    |  292 +-
 spec/gitlab_keys_spec.rb                           |   47 +-
 spec/gitlab_net_spec.rb                            |  205 +-
 spec/gitlab_post_receive_spec.rb                   |   52 +-
 spec/gitlab_projects_spec.rb                       |  147 +
 spec/gitlab_shell_spec.rb                          |  203 +-
 spec/httpunix_spec.rb                              |    2 +-
 spec/names_helper_spec.rb                          |    5 -
 spec/support/hook_fail                             |    3 +
 spec/support/hook_ok                               |    3 +
 spec/vcr_cassettes/allowed-pull.yml                |   36 +-
 spec/vcr_cassettes/allowed-push.yml                |   36 +-
 spec/vcr_cassettes/broadcast_message-none.yml      |   38 +-
 spec/vcr_cassettes/broadcast_message-ok.yml        |   36 +-
 spec/vcr_cassettes/check-ok.yml                    |   38 +-
 spec/vcr_cassettes/discover-ok.yml                 |   38 +-
 ...d-push-with-user.yml => http-pull-disabled.yml} |   36 +-
 ...-access-disabled.yml => http-push-disabled.yml} |   26 +-
 spec/vcr_cassettes/lfs-authenticate-ok.yml         |   40 +-
 ...access-disabled.yml => notify-post-receive.yml} |   24 +-
 spec/vcr_cassettes/ssh-key-not-found.yml           |   38 +-
 spec/vcr_cassettes/ssh-key-not-implemented.yml     |   42 +-
 spec/vcr_cassettes/ssh-key-ok.yml                  |   35 +-
 .../{denied-push.yml => ssh-pull-disabled.yml}     |   40 +-
 ...ss-disabled.yml => ssh-pull-project-denied.yml} |   26 +-
 .../{denied-pull.yml => ssh-push-disabled.yml}     |   40 +-
 ...h.yml => ssh-push-project-denied-with-user.yml} |   36 +-
 ...llowed-push.yml => ssh-push-project-denied.yml} |   36 +-
 .../two-factor-recovery-codes-fail.yml             |   34 +-
 spec/vcr_cassettes/two-factor-recovery-codes.yml   |   34 +-
 support/go-format                                  |   16 +
 support/go-test                                    |   12 +
 support/go_build.rb                                |   33 +
 261 files changed, 87058 insertions(+), 718 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/gitlab-shell.git



More information about the Pkg-ruby-extras-commits mailing list