- Sep 06, 2019
-
- Sep 05, 2019
-
-
Sean McGivern authored
Resolve "user-content.gitlab-static.net brings back 404 only" See merge request gitlab-org/gitlab-ce!32703 (cherry picked from commit 0e335ec9) 921c704f Set asset_proxy_whitelist default to gitlab host
-
Mayra Cabrera authored
Bring method back that was mistakenly removed See merge request gitlab-org/gitlab-ce!32667 (cherry picked from commit 0fad0ed8) 0a9cc6ab Bring method back that was mistakenly removed
-
Thong Kuah authored
Avoid checking dns rebind protection in validation Closes #66723 See merge request gitlab-org/gitlab-ce!32577 (cherry picked from commit 4e9c531a) 8f07ba0d Avoid checking dns rebind protection in validation
-
Thong Kuah authored
Allow not resolvable urls when dns rebinding setting is disabled See merge request gitlab-org/gitlab-ce!32523 (cherry picked from commit 86a3d822) aab94e7b Allow not resolvable urls when rebinding setting is disabled
-
Mayra Cabrera authored
Create partial index for gitlab-monitor CI metrics See merge request gitlab-org/gitlab-ce!32546 (cherry picked from commit 1961fd1f) bd56acd3 Create partial index for gitlab-monitor CI metrics
-
Andreas Brandl authored
This speeds up the following query: ```sql SELECT users.* FROM users WHERE users.unconfirmed_email = ? ORDER BY users.id ASC LIMIT 1 ``` Presumably, this is a query coming from Devise. Context is https://gitlab.com/gitlab-org/gitlab-ce/issues/66958.
-
- Sep 04, 2019
-
-
Grzegorz Bizon authored
Persist `needs:` validation as config error See merge request gitlab-org/gitlab-ce!32648 (cherry picked from commit 0da3257c) 0a39a3d4 Persist `needs:` validation as config error
-
- Sep 02, 2019
-
-
Andreas Brandl authored
This adjusts the partial condition for an index. The index is intended to be used when counting active users with `ghost IS NOT TRUE AND bot_type IS NULL`. With the current index, this wasn't working as the partial condition didn't match the query: `ghost <> TRUE` is not semantically equivalent to `ghost IS NOT TRUE` (null semantics). The reason we add an index particularly intended for EE is that the EE query is going to have the additional part `AND bot_type IS NULL` whereas the CE query doesn't. Logically, it'd be enough to have an index for `ghost IS NOT TRUE`. However, on GitLab.com, the query planner makes poor choices when the additional `AND bot_type IS NULL` part is present: It goes for the index on `bot_type` and doesn't use the partial index. Note the existing index isn't being used at all according to GitLab.com index statistics. Hence we can first remove it and don't have to worry about the window of time without an index. Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/66770
-
Filipa Lacerda authored
Update Mermaid to v8.2.6 See merge request gitlab-org/gitlab-ce!32502 (cherry picked from commit 84edac2a) af4312f1 Update Mermaid to v8.2.6
-
Grzegorz Bizon authored
Fix permissions check in `RelativeLinkFilter` See merge request gitlab-org/gitlab-ce!32448 (cherry picked from commit 60fd4217) be0f039d Fix upload URLs in Markdown
-
- Aug 30, 2019
-
-
Arun Kumar Mohan authored
Previously, the `showStagedIcon` property was doing the opposite of what its name suggested. It was rendering the staged icon when `showStagedIcon` was `false` and rendering the regular icon when it was `true`.
-
This change limits the number of emails for new access requests notifications to 10 most recently active owners/maintainers
-
https://gitlab.com/gitlab-org/gitlab-ce/issues/56295Jesse Hall authored
All avatars now visible in commit trailers.
-
James Fargher authored
This does not support upgrading from earlier versions
-
Shinya Maeda authored
When deployable is nil, we gracefully take care of the case.
-
Rename epic column state to state_id to be consistent with issues and merge requests
-
Markus Koller authored
- Use "results" instead of "blobs", "wiki blobs", "snippet blobs" - Use "comments" instead of "notes" - Use correct pluralization - Don't add "1 - 10 of" if there's only one page
-
-
Lee Tickett authored
This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
-
-
Tiger Watson authored
-
- Aug 29, 2019
-
-
Adds a slash command in slach for closing issues. See https://docs.gitlab.com/ee/integration/slash_commands.html for documentation on the wider feature set.
-
Stan Hu authored
Previously submitting a DELETE request to an issuable URL would be enough to destroy it, but this should require human confirmation. We now require that the `destroy_confirm` parameter is set to a truthy value before this can complete. In addition, we log a Sentry error if a deletion arrived without confirmation. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/62387
-
Maneschi Romain authored
-
Nick Thomas authored
This reverts commit 0eff75fa.
-
George Koltsov authored
-
-
Wolfgang Faust authored
Fix missing .btn-success class on the following buttons: * 'Create milestone' button * Secondary button on profile tabs `btn-create` was an old class which was was removed in !23232 and replaced with `btn-success`, but these two seem to have been missed in the process.
-
Olena Horal-Koretska authored
-
Balasankar C authored
Signed-off-by:
Balasankar "Balu" C <balasankar@gitlab.com>
-
Lee Tickett authored
This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
-
Stan Hu authored
There was some confusion over whether `code` or `content` is the right parameter for snippets. Internally, the database stores `content`. However: 1. Project snippets use `code`. `code` gets remapped in `content` in `lib/api/project_snippets.rb`. 2. Personal snippets use `content`. To unify these APIs, allow an alias of `content` to work for project snippets. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66673
-
Stan Hu authored
When a restricted visibility level of `private` is set in the instance, creating a snippet with the `visibility` level would always fail. This happened because: 1. `params[:visibility]` was a string (e.g. "public") 2. `CreateSnippetService` and `UpdateSnippetService` only looked at `params[:visibility_level]`, which was `nil`. To fix this, we: 1. Make `CreateSnippetService` look at the newly-built `snippet.visibility_level`, since the right value is assigned by the `VisibilityLevel#visibility=` method. 2. Modify `UpdateSnippetService` to handle both `visibility_level` and `visibility` parameters. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66050
-
Heinrich Lee Yu authored
It should not be a start to a new thread but rather a reply to an existing thread
-
Heinrich Lee Yu authored
Changes the document event listener to listen to mousedown instead of click
-
Thong Kuah authored
For Environment.deployed_to_cluster
-
- Aug 28, 2019
-
-