- 28 Jul, 2017 40 commits
-
-
Florian Lemaitre authored
-
Robert Speicher authored
Ensure Gitlab.config.gitlab.host/port and Gitlab::Application.routes.default_url_options are set correctly in Capybara + :js specs Closes #35599 See merge request !13126
-
Robert Speicher authored
Fix spec/features/projects/branches_spec See merge request !13163
-
Rémy Coutable authored
Add copy about search terms to ux guide See merge request !10267
-
Marcia Ramos authored
Add link to JIRA article in docs Closes #35046 See merge request !13154
-
Marcia Ramos authored
Explain all possible values of 'only' and 'except' Closes #34119 See merge request !13138
-
Robert Speicher authored
Load and process at most 100 commits when pushing into default branch Closes #35531 See merge request !13132
-
Douwe Maan authored
Fix replying to commit comments on merge requests created from forks Closes #31772 See merge request !13137
-
-
Rémy Coutable authored
Fixup POST /v3/:id/hooks and PUT /v3/:id/hooks/:hook_id See merge request !12673
-
Richard Clamp authored
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
tauriedavis authored
-
Grzegorz Bizon authored
Merge branch '35695-comment-appears-in-a-wrong-place-after-changing-diff-view-to-inline' into 'master' Resolve "Comment appears in a wrong place after changing diff view to inline" Closes #35695 See merge request !13156
-
Rémy Coutable authored
This makes the default sort order for branches 'recently updated' rather than by name. Closes #26890 See merge request !8666
-
Sean McGivern authored
A commit comment shows in the MR, but if the MR is from a fork, it will have a different project ID to the MR's target project. In that case, add an note_project_id param so that we can pick the correct project for the note.
-
Sean McGivern authored
Fix 500 error when rendering avatar for deleted project creator See merge request !13110
-
Athar Hameed authored
-
Douwe Maan authored
-
Sean McGivern authored
Merge issuable "reopened" state into "opened" See merge request !12972
-
Rémy Coutable authored
added article from techbeacon on CI See merge request !10452
-
Rémy Coutable authored
Update gitlab_flow.md, Teatro seems to be completely dead, see also… See merge request !13157
-
Rémy Coutable authored
Log web hook execution timeout events See merge request !13134
-
Rémy Coutable authored
Docs: fix HAProxy name and exporter's link See merge request !13091
-
Sean McGivern authored
Add log messages to clarify log messages about API CSRF token verification failure Closes #35705 See merge request !13158
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Douwe Maan authored
-
bart authored
Update gitlab_flow.md, Teatro seems to be completely dead, see also https://forum.gitlab.com/t/gitlab-flow-documentation-teatro/7774
-
Rémy Coutable authored
Make access level for protected tag factories more compatible with EE See merge request !13133
-
Sean McGivern authored
When you change the diff view (inline / side-by-side), we set a cookie based on that new view. When you add a comment, we choose the style to use in the response based on that cookie. However, when you have just changed diff style, the request cookie will contain the old value, so we should use the view param instead.
-
Filipa Lacerda authored
Resolve "Images in Wiki display have wrong size" Closes #35691 See merge request !13153
-
James Edwards-Jones authored
[ci skip]
-
Filipa Lacerda authored
Fixed the breadcrumb title for help pages Closes #35679 See merge request !13151
-
Tim Zallmann authored
Removed inline JS in shared HAML files See merge request !13073
-
Kamil Trzciński authored
Follow-up from "Allow to use cross project pipelines" ver 2 Closes #35282, gitlab-ee#2604, and #35584 See merge request !13102
-
Tim Zallmann authored
-
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.
-
Lin Jen-Shin authored
So the behaviour would be similar in CE and EE
-
Achilleas Pipinellis authored
-
Rémy Coutable authored
Use `:empty_project` where possible in feature specs See merge request !13118
-