summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'revert-sentry-js' into 'master' Jacob Schatz2016-04-211-1/+0
| | | | | | | | Revert "Merge branch 'sentry-js' into 'master'" This reverts commit 0f309794e78243b1ee16ba6f1451dbb0752956c5, reversing changes made to 1e596fef1c42a1dd925636c48fea01be444dc3ab. See merge request !3851
* Merge branch 'fix/cross-project-labels-project-reference' into 'master' Grzegorz Bizon2016-04-211-15/+21
| | | | | | | | | Fix cross-project label ref used with invalid project When cross-project label reference was used with invalid project reference, `nil` was assigned to project variable which later caused an exception. Closes #15168 See merge request !3811
* Merge branch 'fix-grape-internal-allowed-action' into 'master' Robert Speicher2016-04-212-1/+10
| | | | | | | | Fix setting of "action" for Grape transactions After wondering why we're not getting all the data in Grafana that I wanted I realized I wasn't setting the "action" field properly here. See merge request !3842
* Merge branch 'sentry-js' into 'master' Robert Speicher2016-04-211-0/+1
| | | | | | | Add Sentry logging for JavaScript errors Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/12675 See merge request !3795
* Merge branch 'feature/incremental-build-trace-update' into 'master' Rémy Coutable2016-04-212-0/+35
| | | | | | | | | Add incremental build trace update API Closes #14537 Must be merged if we want changes from gitlab-org/gitlab-ci-multi-runner!124 to work. See merge request !3447
* Merge branch 'license-templates-and-api-12804' into 'master' Robert Speicher2016-04-203-0/+71
| | | | | | | License templates when creating/editing a LICENSE file Closes #12804 See merge request !3660
* Merge branch 'slack_wiki_notifications' into 'master' Rémy Coutable2016-04-201-0/+6
| | | | | | | | | | | | | | | | | | | add slack notifications for wiki pages ## What does this MR do? Lets the Slack service be configured to send notifications when wiki pages are created or edited. ## Are there points in the code the reviewer needs to double check? I'm just starting to get familiar with the Gitlab codebase and I was unsure on how to get the wiki page url to pass it to the slack message, on whether or not I needed to refactor the create/update methods for wiki pages from the controller to a service (but seemed necessary to test it better), and if I needed to add a column to the web hooks table or if the services table would have been enough. Please let me know if I should change anything and I will improve the MR, thanks for checking :) ## Why was this MR needed? Related to #563 and fixes #4233. See merge request !2998
* Merge branch '15139-fix-constants-redefinition-warnings' into 'master' Robert Speicher2016-04-201-4/+4
| | | | | | | Define constants only if not defined yet and freeze them Fixes #15139. See merge request !3810
* Configuring of points per UDP packettoggle-points-per-packetYorick Peterse2016-04-191-3/+4
| | | | | | | | | This allows users to configure the number of points stored in a single UDP packet. This in turn can be used to reduce the number of UDP packets being sent at the cost of these packets being somewhat larger. The default setting is 1 point per packet so nothing changes for existing users.
* Merge branch 'api-fix-annotated-tags' into 'master' Rémy Coutable2016-04-191-1/+1
|\ | | | | | | | | | | | | | | | | API: Present an array of Gitlab::Git::Tag instead of array of rugged tags The annotated message was always `null` because the wrong array was presented. The entity requires an array of `Gitlab::Git::Tags` instead an array of raw rugged tags was presented. Since a rugged tag does not respond to `message` to get the annotated message, this was always `null`. See merge request !3764
| * API: Present an array of Gitlab::Git::Tag instead of array of rugged tagsRobert Schilling2016-04-171-1/+1
| |
* | Merge branch 'make-before-after-overridable' into 'master' Kamil Trzciński2016-04-191-15/+18
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Make before_script and after_script overridable This is makes it possible to overwrite the before_script and after_script at job level. This is continuation of https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3771 See merge request !3772
| * | Make rubocop happymake-before-after-overridableKamil Trzcinski2016-04-181-12/+15
| | |
| * | Merge branch 'after-script' into make-before-after-overridableKamil Trzcinski2016-04-181-15/+0
| |\ \
| * \ \ Merge branch 'after-script' into make-before-after-overridableKamil Trzcinski2016-04-182-13/+64
| |\ \ \
| * \ \ \ Merge branch 'after-script' into make-before-after-overridableKamil Trzcinski2016-04-181-27/+33
| |\ \ \ \
| * \ \ \ \ Merge branch 'after-script' into make-before-after-overridableKamil Trzcinski2016-04-171-9/+9
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * after-script: Add CHANGELOG and documentation Rename finally_script to after_script Conflicts: lib/ci/gitlab_ci_yaml_processor.rb spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
| * | | | | | Allow the before_script and finally_script to be overwritten in context of jobKamil Trzcinski2016-04-161-11/+11
| | | | | | |
* | | | | | | Merge branch 'after-script' into 'master' Kamil Trzciński2016-04-191-18/+30
|\ \ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement after_script which allows to do cleanups as part of the build process This implements `after_script` in global context. The `after_script` will be executed always after the job, even if the job were canceled. This requires changes on Runner side that will be implemented in 1.2. cc @tmaczukin @grzesiek See merge request !3771
| * | | | | | Resolve mergeafter-scriptKamil Trzcinski2016-04-181-15/+0
| | |_|_|/ / | |/| | | |
| * | | | | Merge remote-tracking branch 'origin/master' into after-scriptKamil Trzcinski2016-04-181-3/+37
| |\ \ \ \ \
| * \ \ \ \ \ Merge remote-tracking branch 'origin/master' into after-scriptKamil Trzcinski2016-04-181-10/+27
| |\ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | |
| * | | | | | Fix rubocop complainsKamil Trzcinski2016-04-181-27/+33
| | |_|_|/ / | |/| | | |
| * | | | | Rename finally_script to after_scriptKamil Trzcinski2016-04-171-6/+6
| | |_|/ / | |/| | |
| * | | | Implement finally_script which allows to do cleanups as part of the build ↵Kamil Trzcinski2016-04-161-2/+8
| | |_|/ | |/| | | | | | | | | | process
* | | | Using single builder for push and tag eventsGabriel Mazetto2016-04-191-20/+1
| | | |
* | | | Added System Hooks for push and tag_pushGabriel Mazetto2016-04-191-1/+21
| | | | | | | | | | | | | | | | | | | | Code is based on Project Webhooks, removing deprecations and without commits listing.
* | | | Set GitHub milestones to Issue/Merge Request that were importedDouglas Barbosa Alexandre2016-04-182-0/+14
| | | |
* | | | Import milestones from GitHubDouglas Barbosa Alexandre2016-04-182-1/+60
| | | |
* | | | Apply GitHub labels to Issue/Merge Request that were importedDouglas Barbosa Alexandre2016-04-181-0/+14
| | | |
* | | | Import labels from GitHubDouglas Barbosa Alexandre2016-04-182-1/+34
| | | |
* | | | Merge branch 'gh-keep-issues-prs-references' into 'master' Robert Speicher2016-04-182-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use GitHub Issue/PR number as iid to keep references Closes #15294 See merge request !3759
| * | | | Use GitHub Issue/PR number as iid to keep referencesDouglas Barbosa Alexandre2016-04-182-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | With these changes we don’t lost the issue/pr references when importing them to GitLab.
* | | | | Add "action" tag to /internal/allowed APIYorick Peterse2016-04-181-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | This allows us to re-use any other analytics that rely on the "action" tag having a value set.
* | | | | Merge branch 'issue_3508' into 'master' Douwe Maan2016-04-181-2/+8
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | Restrict public users for private instances Implements #3508 See merge request !3440
| * | | | Add changelog entryFelipe Artur2016-04-181-1/+1
| | | | |
| * | | | Fix documentation and improve permissions codeFelipe Artur2016-04-182-5/+1
| | | | |
| * | | | Insert users check into apiFelipe Artur2016-04-182-2/+12
| | |_|/ | |/| |
* | | | Count the number of SQL queries per transactionYorick Peterse2016-04-181-0/+1
|/ / / | | | | | | | | | Fixes gitlab-org/gitlab-ce#15335
* | | Minor refactorings in CI configfeature/ci-job-env-variablesGrzegorz Bizon2016-04-181-4/+7
| | |
* | | Validate job-level variables in YAML config fileGrzegorz Bizon2016-04-181-0/+8
| | |
* | | Minor refactoring in code related to job variablesGrzegorz Bizon2016-04-181-5/+1
| | |
* | | Make CI config return empty array if no job variablesGrzegorz Bizon2016-04-181-2/+5
| | |
* | | Rename method that returns global envs in CI confGrzegorz Bizon2016-04-181-1/+1
| | |
* | | Read job variables directly from gitlab CI configGrzegorz Bizon2016-04-181-2/+10
| | |
* | | Add `variables` keyword to job in CI config YAMLGrzegorz Bizon2016-04-181-1/+2
| |/ |/|
* | Use Module#prepend for method instrumentationfix-method-instrumentationYorick Peterse2016-04-181-10/+27
|/ | | | | | | | | By using Module#prepend we can define a Module containing all proxy methods. This removes the need for setting up crazy method alias chains and in turn prevents us from having to deal with all that madness (e.g. methods calling each other recursively). Fixes gitlab-org/gitlab-ce#15281
* Merge branch 'fix/project-import_url' into 'master' Robert Speicher2016-04-1512-47/+91
|\ | | | | | | | | | | | | | | | | Fix for import_url fields on projects containing third-party credentials Fixes https://dev.gitlab.org/gitlab/gitlabhq/issues/2658 Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/13955 See merge request !3066
| * Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵James Lopez2016-04-154-33/+22
| |\ | | | | | | | | | fix/project-import_url
| * \ Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵James Lopez2016-04-1428-136/+516
| |\ \ | | | | | | | | | | | | fix/project-import_url