An error occurred fetching the project authors.
- 16 May, 2016 1 commit
-
-
Sean McGivern authored
Before: we took the next milestone due across all projects in the search and found issues whose milestone title matched that one. Problems: 1. The milestone could be closed. 2. Different projects have milestones with different schedules. 3. Different projects have milestones with different titles. 4. Different projects can have milestones with different schedules, but the _same_ title. That means we could show issues from a past milestone, or one that's far in the future. After: gather the ID of the next milestone on each project we're looking at, and find issues with those milestone IDs. Problems: 1. For a lot of projects, this can return a lot of IDs. 2. The SQL query has to be different between Postgres and MySQL, because MySQL is much more lenient with HAVING: as well as the columns appearing in GROUP BY or in aggregate clauses, MySQL allows them to appear in the SELECT list (un-aggregated).
-
- 15 May, 2016 1 commit
-
-
Pablo Carranza authored
-
- 13 May, 2016 1 commit
-
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
- 12 May, 2016 9 commits
-
-
Ahmad Sherif authored
Closes #15638
-
Takuya Noguchi authored
-
Yorick Peterse authored
[ci skip]
-
DJ Mountney authored
and drop exception handling around HealthCheck::Utils.process_checks, it wasn't needed
-
Sean McGivern authored
The ForksController enforces this, so don't show the link if it won't go anywhere.
-
Yorick Peterse authored
Because method call timings are inclusive (that is, they include the time of any sub method calls) this would lead to the total method execution time often being far greater than the total transaction time. Because this is incredibly confusing it's best to simply _not_ track the total method execution time, after all it's not that useful to begin with. Fixes gitlab-org/gitlab-ce#17239
-
Andrei Gliga authored
-
Andrei Gliga authored
Allow Admins to remove the Login with buttons for OAuth services and still be able to import on the changelog
-
Timothy Andrew authored
-
- 11 May, 2016 3 commits
-
-
Yorick Peterse authored
[ci skip]
-
Sean McGivern authored
`Time#to_date` just takes the (timezone-less) year, date, and month, and creates a new date from that. Because the commits in the list are grouped by date, rather than chunked when the date changes, a commit can be shown in the wrong order if its CommitDate has a timezone-less date that's different to other commits around it. Convert all CommitDates to the server timezone before grouping, as that will at least produce consistent results. Users can still see a timestamp on the commit that doesn't match the date it's grouped under, because the timestamp shown uses the user's local timezone, and the grouping uses the server's timezone, but that was an issue anyway.
-
Sean McGivern authored
The repository push email can be very expensive to generate, especially with syntax-highlighted diffs. Instead of generating the email for each recipient, generate one email object and reset the Message-Id and To headers for each recipient. (Cloning would also be expensive in the case of large emails, although probably not as bad as generating from scratch.)
-
- 10 May, 2016 7 commits
-
-
Alfredo Sumaran authored
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Grzegorz Bizon authored
-
Rémy Coutable authored
- Fix naming of API::CommitStatuses - Ensure we use require_dependency instead of require - Ensure the namespace is right in lib/api/api.rb, otherwise, we might require Grape::API::Helpers which defines the `#params` method. This is to avoid requiring a file multiple times and getting an "Already initialized constant" error. Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Stan Hu authored
Attempts to address #13521, #14825 Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
This reverts commit 4cc85a58, reversing changes made to 90ae445b. Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 09 May, 2016 7 commits
-
-
Benedikt Huss authored
-
Stan Hu authored
Closes #1625
-
Felipe Artur authored
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
cnam-dep authored
-
Artem Sidorenko authored
-
Stan Hu authored
If you attempt to push thousands of branches at once, the 60-second timeout will occur because GitAccess checking does a lot of work to check if the user has permission to push to a branch. This changes does two things: 1. Instead of making 1 DB query per branch push, use a memoized list of protected branches to check 2. Memoize what permissions the user has to perform on this project On a test of 10,000 branch pushes, this prevents gitlab-shell from hitting the 60-second timeout. Closes #17225
-
- 08 May, 2016 1 commit
-
-
Benedikt Huss authored
-
- 07 May, 2016 3 commits
-
-
Stan Hu authored
Closes #17348
-
Stan Hu authored
Run ProjectDestroyWorker after pending_delete attribute has been committed to DB
-
Stan Hu authored
Use a custom Loofah scrubber since sanitize 2.x transformers are inadequate to handle case-sensitive SVG attributes. sanitize parses documents as HTML instead of XML, which causes all SVG attribute names (e.g. viewBox) to be downcased. * SVG element list: https://www.w3.org/TR/SVG/eltindex.html * SVG attribute list: https://www.w3.org/TR/SVG/attindex.html Closes #14555
-
- 06 May, 2016 3 commits
-
-
Ahmad Sherif authored
Fixes #14002
-
Takuya Noguchi authored
-
Ben Bodenmiller authored
-
- 05 May, 2016 4 commits
-
-
Yorick Peterse authored
-
Yorick Peterse authored
Apparently this was already released in 8.7.2 but no changelog entry was added. [ci skip]
-
Yorick Peterse authored
[ci skip]
-
Yorick Peterse authored
[ci skip]
-