An error occurred fetching the project authors.
- 05 May, 2019 2 commits
- 02 May, 2019 2 commits
-
-
Luke Duncalfe authored
The new two-step Gitaly `Rebase` RPC yields the rebase commit SHA to the client before proceeding with the rebase. This avoids an issue where the rebase commit SHA was returned when the RPC had fully completed, and in some cases this would be after the Rails `post_receive` worker services had already run. In these situations, the merge request did not yet have its rebase_commit_sha attribute set introducing the possibility for bugs (such as previous approvals being reset). https://gitlab.com/gitlab-org/gitlab-ee/issues/5966
-
Jan Provaznik authored
Extends existing graphql's tracer with opentracing measurements. Because it also adds Tracing::Graphql class (for opentracing), it also renames Graphql::Tracing class to Graphql::GenericTracing to minimize confusion with similar class names.
-
- 30 Apr, 2019 2 commits
-
-
John Cai authored
Gitaly's FetchIntoObjectPool RPC will idempotently fetch objects into an object pool. If the pool doesn't exist, it will create an empty pool before attempting the fetch. This change adds client code as well as specs to cover this behavior.
-
Stan Hu authored
We've seen a significant performance penalty when using `BatchLoader#__replace_with!`. This defines methods on the batch loader that proxy to the 'real' object using send. The alternative is `method_missing`, which is slower. However, we've noticed that `method_missing` can be faster if: 1. The objects being loaded have a large interface. 2. We don't call too many methods on the loaded object. Avatar uploads meet both criteria above, so let's use the newly-released feature in https://github.com/exAspArk/batch-loader/pull/45. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/60903
-
- 29 Apr, 2019 2 commits
-
-
Peter Leitzen authored
Before this commit using `/rails/letter_opener` in `development` environment failed with: undefined method `before_filter' See https://github.com/fgrehm/letter_opener_web/issues/68 This commit upgrades `letter_opener_web` to 1.3.4 so Rails 5.1 is supported.
-
Bob Van Landuyt authored
This ports the changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10462/ to CE
-
- 27 Apr, 2019 1 commit
-
-
Gabriel Mazetto authored
-
- 26 Apr, 2019 1 commit
-
-
Felipe Artur authored
Accessing http://localhostrails/letter_opener is thowring an exception, updating the gem fixes it.
-
- 25 Apr, 2019 1 commit
-
-
Francisco Javier López authored
Inside a wiki, when we show the sidebar or browse to the `pages`, all page contents are retrieved from Gitaly and that is a waste of resources, since no content from that pages are going to be showed. This MR introduces the method `ProjectWiki#list_pages`, which uses new wiki_list_pages RPC call to retrieve pages without content Also in the `WikisController` we're using the method to show pages in the sidebar and also on the `pages` page.
-
- 23 Apr, 2019 3 commits
-
-
Stan Hu authored
These upgrades are necessary to support Ruby 2.6. This matches the Gitaly MR: https://gitlab.com/gitlab-org/gitaly/merge_requests/1066
-
Heinrich Lee Yu authored
Removes unneeded patches
-
Jasper Maes authored
Model.new.attributes now also returns encrypted attributes.
-
- 22 Apr, 2019 2 commits
-
-
Stan Hu authored
Fixes minor bugs (https://github.com/mperham/sidekiq/blob/master/Changes.md#526) and keeps version used with gitlab-monitor consistent.
-
Stan Hu authored
This pulls in a fix for libxslt that addresses CVE-2019-11068: https://github.com/sparklemotion/nokogiri/releases
-
- 18 Apr, 2019 1 commit
-
-
Andrew Newdigate authored
This change is a fairly straightforward refactor to extract the tracing and correlation-id code from the gitlab rails codebase into the new LabKit-Ruby project. The corresponding import into LabKit-Ruby was in https://gitlab.com/gitlab-org/labkit-ruby/merge_requests/1 The code itself remains very similar for now. Extracting it allows us to reuse it in other projects, such as Gitaly-Ruby. This will give us the advantages of correlation-ids and distributed tracing in that project too.
-
- 17 Apr, 2019 1 commit
-
-
Kartikey Tanna authored
-
- 12 Apr, 2019 3 commits
-
-
Dmitriy Zaporozhets authored
Signed-off-by:
Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Thong Kuah authored
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 10 Apr, 2019 1 commit
-
-
Sean McGivern authored
This reverts commit a5378665.
-
- 05 Apr, 2019 1 commit
-
-
Stan Hu authored
This update has two important fixes: 1. It reverts the monkey patch introduced in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/23385 since https://github.com/rack/rack/pull/1201 is now part of the release. 2. Preserve forwarded IP address for trusted proxy chains (https://github.com/rack/rack/pull/1343).
-
- 04 Apr, 2019 1 commit
-
-
Stan Hu authored
This fixes a number of issues as described in https://weblog.rubyonrails.org/releases/. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58963
-
- 02 Apr, 2019 1 commit
-
-
Patrick Bajao authored
Add `GetArchiveRequest` to git-archive params. Modifies `Git::Repository#archive_metadata` to append `path` to `ArchivePrefix` so it'll not hit the cache of repository archive when it already exists.
-
- 27 Mar, 2019 1 commit
-
-
Gabriel Mazetto authored
The new version requires `python3` to be available. In omnibus installation this is already a reality as we are currently pathing previous `gitlab-markup` version to use `python3` instead of `python2`. We are now requiring `python3` with the gem without having to patch it. As a consequence to also make it easy to use it in development, we've introduced a `Pipfile` and `Pipfile.lock`, working similarly to `Gemfile` and `Gemfile.lock`, and added documentation on how to use them.
-
- 25 Mar, 2019 1 commit
-
-
Enrique Alcantara authored
- Also remove boostrap 4 migration adapter
-
- 19 Mar, 2019 2 commits
-
-
Dmitriy Zaporozhets authored
Signed-off-by:
Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Stan Hu authored
This version bump makes things consistent between Gitaly and fixes a significant number of bugs: https://github.com/libgit2/libgit2/releases This also decreases disk space of Omnibus builds by ~30 MB. There is also a workaround for https://github.com/libgit2/rugged/issues/785. If Gitaly or another process changes .gitconfig while Rugged has the file loaded, Rugged::Repository#each_key will report stale values unless a lookup is done first. This bug only manifests in a spec because we are using both Gitaly and Rugged at the same time there, and we normally don't use Rugged in the CE/EE code in this way.
-
- 18 Mar, 2019 1 commit
-
-
Pirate Praveen authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 13 Mar, 2019 1 commit
-
-
Mike Greiling authored
Remove references to the vendored copies of At.js and jquery.carat as well as the legacy rails wrapper gem.
-
- 12 Mar, 2019 1 commit
-
-
Pirate Praveen authored
-
- 08 Mar, 2019 4 commits
-
-
Mike Greiling authored
-
Pirate Praveen authored
-
Marin Jankovski authored
This reverts merge request !17871
-
Praveen Arimbrathodiyil authored
-
- 06 Mar, 2019 1 commit
-
-
Patrick Bajao authored
When `force` is set to `true` and `start_branch` is set, the branch will be ovewritten with the new commit based on the `HEAD` of the `start_branch`. This commit includes changes to update the `gitaly-proto` gem.
-
- 04 Mar, 2019 1 commit
-
-
Drew Blessing authored
We've previously exposed ca_file and ssl_version but there are many possible options that can be used inside tls_options. Instead of exposing individual ones, simply expose the entire hash so it can be passed in and we won't have to add things in the future.
-
- 01 Mar, 2019 2 commits
-
-
Stan Hu authored
1.4.1 contains a number of bug fixes and performance improvements: https://github.com/Shopify/bootsnap/blob/master/CHANGELOG.md
-
Stan Hu authored
-