- 18 Dec, 2017 1 commit
-
-
Stanislaw Wozniak authored
-
- 28 Nov, 2017 1 commit
-
-
Shinya Maeda authored
-
- 16 Nov, 2017 1 commit
-
-
Jacopo authored
Adds a rubocop rule (with autocorrect) to ensure line break after guard clauses.
-
- 15 Nov, 2017 1 commit
-
-
Jose Ivan Vargas Lopez authored
-
- 06 Nov, 2017 1 commit
-
-
Sean McGivern authored
When an issue is reopened, the action is 'reopen', but the state is 'opened' (as we don't have a separate 'reopened' state any more). Because we checked the action in one method and the state in another, this lead to a weird case where the mesage neither linked to the issue, nor contained an attachment with its details. Just checking the action is fine, as it's the most granular.
-
- 02 Nov, 2017 2 commits
-
-
Kamil Trzcinski authored
-
Alessio Caiazza authored
-
- 26 Oct, 2017 1 commit
-
-
Alessio Caiazza authored
-
- 24 Oct, 2017 1 commit
-
-
Robert Schilling authored
-
- 13 Oct, 2017 1 commit
-
-
Matt Coleman authored
-
- 06 Oct, 2017 1 commit
-
-
Stan Hu authored
We used to include the first and last name of the user, but !6624 modified this to include only the username. Let's compromise and add both in the form of `First Last (username)`. Closes #38865
-
- 04 Oct, 2017 1 commit
-
-
Mircea Danila Dumitrescu authored
namespace should be lowercased in kubernetes. This is also true for the scenario where the namespace is generated from the project group-name.
-
- 01 Oct, 2017 1 commit
-
-
Shinya Maeda authored
-
- 27 Sep, 2017 1 commit
-
-
Shinya Maeda authored
-
- 13 Sep, 2017 1 commit
-
-
Lin Jen-Shin authored
Before this fix, I don't know if those emails would work having newlines in them.
-
- 29 Aug, 2017 1 commit
-
-
Maxim Rydkin authored
-
- 22 Aug, 2017 1 commit
-
-
Shinya Maeda authored
-
- 14 Aug, 2017 1 commit
-
-
Robert Speicher authored
An upcoming update to rubocop-gitlab-security added additional violations.
-
- 03 Aug, 2017 1 commit
-
-
Mehdi Lahmam authored
-
- 01 Aug, 2017 1 commit
-
-
Gabriel Mazetto authored
-
- 31 Jul, 2017 2 commits
-
-
Pawel Chojnacki authored
-
Pawel Chojnacki authored
-
- 28 Jul, 2017 1 commit
-
-
Yorick Peterse authored
Having two states that essentially mean the same thing is very much like having a boolean "true" and boolean "mostly-true": it's rather silly. This commit merges the "reopened" state into the "opened" state while taking care of system notes still showing messages along the lines of "Alice reopened this issue". A big benefit from having only two states (opened and closed) is that indexing and querying becomes simpler and more performant. For example, to get all the opened queries we no longer have to query both states: SELECT * FROM issues WHERE project_id = 2 AND state IN ('opened', 'reopened'); Instead we can query a single state directly, which can be much faster: SELECT * FROM issues WHERE project_id = 2 AND state = 'opened'; Further, only having two states makes indexing easier as we will only ever filter (and thus scan an index) using a single value. Partial indexes could help but aren't supported on MySQL, complicating the development process and not being helpful for MySQL.
-
- 27 Jul, 2017 1 commit
-
-
Jarka Kadlecova authored
-
- 25 Jul, 2017 1 commit
-
-
Jarka Kadlecova authored
-
- 24 Jul, 2017 1 commit
-
-
Jarka Kadlecova authored
-
- 19 Jul, 2017 1 commit
-
-
Dimitrie Hoekstra authored
-
- 18 Jul, 2017 1 commit
-
-
Felipe Artur authored
-
- 07 Jul, 2017 1 commit
-
-
Douwe Maan authored
-
- 06 Jul, 2017 2 commits
-
-
Yorick Peterse authored
This is allowed for existing instances so we don't end up 76 offenses right away, but for new code one should _only_ use this if they _have_ to remove non database data. Even then it's usually better to do this in a service class as this gives you more control over how to remove the data (e.g. in bulk).
-
Lin Jen-Shin authored
-
- 05 Jul, 2017 1 commit
-
-
Douwe Maan authored
-
- 30 Jun, 2017 1 commit
-
-
Adam Niedzielski authored
-
- 22 Jun, 2017 1 commit
-
-
Pawel Chojnacki authored
-
- 21 Jun, 2017 1 commit
-
-
Grzegorz Bizon authored
-
- 19 Jun, 2017 1 commit
-
-
Douwe Maan authored
-
- 16 Jun, 2017 2 commits
-
-
Lin Jen-Shin authored
-
Lin Jen-Shin authored
-
- 15 Jun, 2017 1 commit
-
-
Eric Eastwood authored
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/27070 Deprecate "chat commands" in favor of "slash commands" We looked for things like: - `slash commmand` - `slash_command` - `slash-command` - `SlashCommand`
-
- 14 Jun, 2017 1 commit
-
-
Nick Thomas authored
-