Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
AgeCommit message (Collapse)Author
2015-12-07Merge branch 'webhook_payload_with_changes' into 'master' Valery Sizov
Add added, modified and removed properties to commit object in webhook https://gitlab.com/gitlab-org/gitlab-ee/issues/20 See merge request !1988
2015-12-07fixes after reviewValery Sizov
2015-12-07fox specsValery Sizov
2015-12-07Merge branch 'fix-global-milestones-error-500' into 'master' Douwe Maan
Fix Error 500 when creating global milestones with Unicode characters 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 See merge request !1983
2015-12-07Merge branch 'issue_1156'Douwe Maan
2015-12-06Fixed duplicated issue note email notifications.Anton Baklanov
Fixes #2560
2015-12-05Fix spec that broke due to fact that iid is needed, not id, for ↵Stan Hu
MilestonesController
2015-12-05Fix Error 500 when creating global milestones with Unicode charactersStan Hu
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
2015-12-04Merge branch 'link-refs' into 'master' Robert Speicher
Recognize issue/MR/snippet/commit links as references. Fixes #3744 and #3745 See merge request !1933
2015-12-04Add added, modified and removed properties to commit object in webhookValery Sizov
2015-12-04Merge branch 'extend-events-api'Dmitriy Zaporozhets
2015-12-04Extent Event and Note APIDmitriy Zaporozhets
* add note to Events API * add author section to Events API * add noteable_id and noteable_type to Notes API Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-12-04Add API endpoint to fetch merge request commits listDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-12-03Raise the exception from #execute instead of #run_hook. #1156 #3069Rubén Dávila
2015-12-03Call update hook from new GitHooksService class. #3069Rubén Dávila
2015-12-03Run custom Git hooks when creating or deleting branches through the UI. #1156Rubén Dávila
2015-12-03Use URL helpers in specsDouwe Maan
2015-12-03Merge branch 'master' into link-refsDouwe Maan
2015-12-03Merge branch 'master' into ui/form-consistencyDouwe Maan
2015-12-03Merge branch 'deprecated_warnings' into 'master' Dmitriy Zaporozhets
Git rid of deprecated warnings after rails update https://gitlab.com/gitlab-org/gitlab-ce/issues/3798 https://gitlab.com/gitlab-org/gitlab-ce/issues/3797 See merge request !1946
2015-12-03fix deprecation messages in testsValery Sizov
2015-12-03Fix broken spec related to MySQL and fractional seconds support.Rubén Dávila
2015-12-02Allow invalid URLs in closing patternDouwe Maan
2015-12-02Use consistent casing for form field labelsDouwe Maan
2015-12-02Prevent impersonation if blockedAndrew Tomaka
2015-12-02Merge branch 'master' into link-refsDouwe Maan
2015-12-02Satisfy RubocopDouwe Maan
2015-12-01Add new references to markdown feature spec.Douwe Maan
2015-12-01Pick up direct links to issues/MRs as references.Douwe Maan
2015-12-01Autolink first so we don't pick up numeric anchors as issue references.Douwe Maan
2015-12-01Render commit reference using short sha, but include full sha in comment.Douwe Maan
2015-12-01Merge pull request #9868 from yms9654/commit-without-whitespaceStan Hu
Add ignore whitespace change option to commit view
2015-12-01Add ignore whitespace change option to commit viewMinsik Yoon
2015-12-01Fix specsDouwe Maan
2015-11-30Recognize commit range with named refs in compare URLs.Douwe Maan
2015-11-30Recognize issue/MR/snippet/commit links as references.Douwe Maan
2015-11-30Render commit range reference with short shas, link to full shas.Douwe Maan
2015-11-30Merge branch 'stanhu/gitlab-ce-fix-404-after-project-removal'Robert Speicher
See merge request !1916
2015-11-30Merge branch 'rails_update_to_4_2' into 'master' Valery Sizov
Rails update to 4.2.4 https://gitlab.com/gitlab-org/gitlab-ce/issues/2694 See merge request !1902
2015-11-30test fixValery Sizov
2015-11-30fix specsValery Sizov
2015-11-30Merge branch 'gmail_actions_links_on_set_of_emails' into 'master' Dmitriy Zaporozhets
Show Gmail actions links only on expected set of emails See merge request !1901
2015-11-30fix notification_service specsValery Sizov
2015-11-27Merge branch 'jcorcuera/gitlab-ce-issue_3428'Douwe Maan
2015-11-26Merge branch 'master' of https://github.com/gitlabhq/gitlabhqStan Hu
2015-11-26Merge pull request #9670 from janten/gravatar-retinaStan Hu
Add support for HiDPI displays in gravatar service
2015-11-26Strip attributes for Milestone and Issuable. #3428Jose Corcuera
2015-11-26Fix 404 in redirection after removing a projectStan Hu
Closes https://github.com/gitlabhq/gitlabhq/issues/9844 Closes #3559
2015-11-25Fix raw private snippets access workflowDouglas Barbosa Alexandre
2015-11-25Remove some repetition in notify spec.Marin Jankovski