- 11 Dec, 2015 3 commits
-
-
Kamil Trzcinski authored
-
Grzegorz Bizon authored
-
Grzegorz Bizon authored
-
- 10 Dec, 2015 3 commits
-
-
Gabriel Mazetto authored
-
Kamil Trzcinski authored
-
Drew Blessing authored
Skipped CI because it has already passed. Had to rebase due to CHANGELOG.
-
- 08 Dec, 2015 4 commits
-
-
Douwe Maan authored
-
Douwe Maan authored
-
Douwe Maan authored
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
- 07 Dec, 2015 1 commit
-
-
Douwe Maan authored
-
- 05 Dec, 2015 1 commit
-
-
Stan Hu authored
Two issues: 1. The constraints in the resources were incorrect. Here's what it was before: ``` group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/} ``` In this case, id is actually the title of the milestone, which can be anything at the moment. After: ``` group_milestone GET /groups/:group_id/milestones/:id(.:format) groups/milestones#show {:id=>/[^\/]+/, :group_id=>/[a-zA-Z.0-9_\-]+(?<!\.atom)/} ``` 2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like: ActionView::Template::Error (No route matches {:action=>"show", :controller=>"groups/milestones", :group_id=>#<Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false>, :id=>"", :title=>"肯定不是中文的问题"} missing required keys: [:id]): This change uses the babosa library to create a better slug, which surprisingly isn't actually used by the global milestone controllers. Instead, they use the title passed as a query string for some reason. Closes https://github.com/gitlabhq/gitlabhq/issues/9881 Fix constraints
-
- 04 Dec, 2015 1 commit
-
-
Gabriel Mazetto authored
Updated Sidekiq to 3.5.x
-
- 03 Dec, 2015 1 commit
-
-
Valery Sizov authored
-
- 30 Nov, 2015 2 commits
-
-
Douwe Maan authored
-
Valery Sizov authored
-
- 29 Nov, 2015 1 commit
-
-
Robert Speicher authored
-
- 26 Nov, 2015 2 commits
-
-
Stan Hu authored
-
Valery Sizov authored
-
- 25 Nov, 2015 2 commits
-
-
Stan Hu authored
If a DB migration occurs, there's a chance that the application settings are loaded from the cache and provide stale values, causing Error 500s. This ensures that at startup the settings are always refreshed. Closes #3643
-
Valery Sizov authored
-
- 24 Nov, 2015 3 commits
-
-
Marin Jankovski authored
-
Marin Jankovski authored
-
Yorick Peterse authored
This makes it easier to see if a problem is caused by slow queries or slow Ruby code (unrelated to any SQL queries that might be used).
-
- 23 Nov, 2015 2 commits
-
-
Kamil Trzcinski authored
-
Zeger-Jan van de Weg authored
-
- 20 Nov, 2015 2 commits
-
-
Rubén Dávila authored
-
Ruben Davila authored
Everytime the User check or uncheck a Task Item from the Issue or Merge Request description, a new update is going to be added to the activity logs of the Issue or Merge Request. Note that when using the edit form, you can only update the Task item status or add/delete/modify existing ones. Doing both actions is not fully supported.
-
- 19 Nov, 2015 1 commit
-
-
Marin Jankovski authored
-
- 18 Nov, 2015 2 commits
-
-
Valery Sizov authored
-
Zeger-Jan van de Weg authored
-
- 16 Nov, 2015 4 commits
-
-
Robert Speicher authored
This reverts commit 63144cd0, reversing changes made to 8ab5df9d.
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Marin Jankovski authored
-
Valery Sizov authored
-
- 13 Nov, 2015 1 commit
-
-
Kamil Trzcinski authored
- Enable CI by default for all new projects
-
- 12 Nov, 2015 1 commit
-
-
Jason Lee authored
Use RJS to render edit note feature. Before: ``` Rendered projects/notes/_note.html.haml (27.9ms) Rendered projects/_zen.html.haml (0.3ms) Rendered projects/notes/_hints.html.haml (0.7ms) Rendered projects/_md_preview.html.haml (3.9ms) Rendered projects/notes/_edit_form.html.haml (6.9ms) Rendered projects/notes/_note.html.haml (17.7ms) Rendered projects/_zen.html.haml (0.3ms) Rendered projects/notes/_hints.html.haml (0.6ms) Rendered projects/_md_preview.html.haml (3.4ms) Rendered projects/notes/_edit_form.html.haml (7.0ms) ``` After: ``` Rendered projects/notes/_note.html.haml (13.8ms) Rendered projects/notes/_note.html.haml (7.1ms) Rendered projects/notes/_note.html.haml (9.5ms) Rendered projects/notes/_note.html.haml (8.5ms) ``` This change reduce at least 6ms * N ('N' - number of notes).
-
- 10 Nov, 2015 3 commits
-
-
Kamil Trzcinski authored
-
Kamil Trzcinski authored
- Offloads uploading to GitLab Workhorse - Use /authorize request for fast uploading - Added backup recipes for artifacts - Support download acceleration using X-Sendfile
-
Kamil Trzcinski authored
-