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/lib
AgeCommit message (Collapse)Author
2017-02-23Enable Performance/RedundantMergeDouwe Maan
2017-02-23Enable Style/SpaceInsideBracketsDouwe Maan
2017-02-23Enable Style/MutableConstantDouwe Maan
2017-02-23Enable Style/DotPositionDouwe Maan
2017-02-23Remove last merge_request endpointRobert Schilling
2017-02-23Merge branch 'api-notes-entity-fields' into 'master' Sean McGivern
Remove deprecated `upvotes` and `downvotes` from the notes API Closes #28441 See merge request !9384
2017-02-23Rebase to master for avoiding failing testsGeorge Andrinopoulos
2017-02-23Merge branch 'improve-ee_compat_check-by-using-git-apply-3way-flag' into ↵Robert Speicher
'master' Improve `Gitlab::EeCompatCheck` by using the `git apply --3way` flag See merge request !9447
2017-02-22Merge branch 'master' into 'api-notes-entity-fields'Robert Schilling
# Conflicts: # doc/api/v3_to_v4.md
2017-02-22Merge branch 'connection-pool-host' into 'master'Rémy Coutable
Allow setting of a custom connection pool host See merge request !9445
2017-02-22Improve `Gitlab::EeCompatCheck` by using the `git apply --3way` flag Rémy Coutable
This should solve 99% of the false-positive of the `ee_compat_check` job.
2017-02-22Merge branch '27032-add-a-house-keeping-api-call' into 'master' Rémy Coutable
Add housekeeping endpoint for Projects API Closes #27032 See merge request !9421
2017-02-22Merge branch 'zj-fix-slash-command-labels' into 'master' Douwe Maan
Chat slash commands show labels correctly Closes #28358 See merge request !9408
2017-02-22Merge branch 'grapify-ci-runners-api' into 'master' Rémy Coutable
Grapify the CI::Runners API See merge request !9440
2017-02-22Allow setting of a custom connection pool hostYorick Peterse
This allows you to set a custom host when calling Gitlab::Database.create_connection_pool. This is necessary for load balancing as in this case we want to inherit all settings except for the hostname.
2017-02-22Grapify the CI::Runners APIRobert Schilling
2017-02-22Merge branch 'grapify-ci-triggers-api' into 'master' Rémy Coutable
Grapfiy the CI::Triggers API See merge request !9439
2017-02-22Merge branch '26087-asciidoc-cicd-badges-snippet' into 'master'Rémy Coutable
Add AsciiDoc snippet for CI/CD Badges Closes #26087 See merge request !9164
2017-02-22Add housekeeping endpoint for Projects APIMark Fletcher
2017-02-22Remove deprecated `upvotes` and `downvotes` from the notes APIRobert Schilling
2017-02-22Merge branch '22132-rename-branch-name-params-to-branch' into 'master' Rémy Coutable
Standardize branch name params as `branch` on V4 API Closes #22132 See merge request !8936
2017-02-22Merge branch 'api-subscription-restful' into 'master' Sean McGivern
API: Make subscription API more RESTfuL Closes #28327 See merge request !9325
2017-02-22Merge branch '28093-snippet-and-issue-spam-check-on-edit' into 'master'Sean McGivern
Spam check and reCAPTCHA improvements Closes #28093 See merge request !9248
2017-02-22Grapfiy the CI::Triggers APIRobert Schilling
2017-02-22Merge branch 'dm-no-more-andor' into 'master'Robert Speicher
No more and/or See merge request !9428
2017-02-22Merge branch '26881-backup-fails-if-data-changes' into 'master' Douwe Maan
Copy data before compression to prevent 'file changed as we read it' Closes #26881 See merge request !8728
2017-02-22No more and/orDouwe Maan
2017-02-22# This is a combination of 2 commits.Drew Blessing
# This is the 1st commit message: Add `copy` backup strategy to combat file changed errors The backup Rake task used to stream data directly from the live data directory into the backup. Under many circumstances this worked OK. However, really active instances would experience a 'file changed as we read it' error - especially with data like the registry. This now copies the data first, then compresses it. It will take a bit more disk space while the backup is in progress, but it's a necessary thing. # The commit message #2 will be skipped: # Add env var
2017-02-21Merge branch '1363-redo-mailroom-support' into 'master' Douwe Maan
Redo internals of Incoming Mail Support See merge request !9385
2017-02-21Change branch_name param to branch throughout V4 APIOswaldo Ferreira
2017-02-21Merge branch 'rename-retry-failed-pipeline-to-retry' into 'master' Filipa Lacerda
Rename retry failed button on pipeline page to just retry See merge request !9369
2017-02-21Fix incomming email check task to use same patch we did in mail_roomGabriel Mazetto
2017-02-21Merge branch 'hash-concurrent-foreign-key-names' into 'master'Rémy Coutable
Hash concurrent foreign key names similar to Rails See merge request !9415
2017-02-21API: Make subscription API more RESTfuLRobert Schilling
2017-02-21Spam check and reCAPTCHA improvementsOswaldo Ferreira
2017-02-21Hash concurrent foreign key names similar to RailsYorick Peterse
This was initially not implemented simply because I forgot about the size limit of constraint names in PostgreSQL (63 bytes). Using the old technique we can't add foreign keys for certain tables. For example, adding a foreign key on protected_branch_merge_access_levels.protected_branch_id would lead to the following key name: fk_protected_branch_merge_access_levels_protected_branches_protected_branch_id This key is 78 bytes long, thus violating the PostgreSQL size requirements. The hashing strategy is copied from Rails' foreign_key_name() method, which unfortunately is private and subject to change without notice.
2017-02-21Chat slash commands show labels correctlyZ.J. van de Weg
2017-02-21Backport Todos API to V3Robert Schilling
2017-02-21API: Use POST requests to mark todos as doneRobert Schilling
2017-02-20Merge branch '26315-unify-labels-filter-behavior' into 'master' Rémy Coutable
Unify issues search behavior by always filtering when ALL labels matches Closes #26315 See merge request !8849
2017-02-20Reuse User#find_by_any_email on UserFormatter#find_by_emailDouglas Barbosa Alexandre
2017-02-20Use leading periods on UserFormatter#find_by_external_uidDouglas Barbosa Alexandre
2017-02-20Add a simple cache for Gitlab::GithubImport::Client#userDouglas Barbosa Alexandre
2017-02-20GitHub Importer - Find users based on their email addressDouglas Barbosa Alexandre
The returned email by the GitHub API is the user's publicly visible email address (or null if the user has not specified a public email address in their profile)
2017-02-20Merge branch 'api-star-restful' into 'master'Rémy Coutable
API: Moved `DELETE /projects/:id/star` to `POST /projects/:id/unstar` Closes #28328 See merge request !9328
2017-02-20Unify issues search behavior by always filtering when ALL labels matchesOswaldo Ferreira
2017-02-20Merge branch 'fix-grammar' into 'master' Robert Speicher
Fix some grammar in the API docs See merge request !9379
2017-02-20fixed specs + docsdimitrieh
2017-02-20Add AsciiDoc snippet for CI/CD BadgesJan Christophersen
This commit adds CI/CD Badges Snippets for AsciiDoc as requested in #26087. I've however run into an issue in highlighting the snippet, it seems as if AsciiDoc is currently not being highlighted properly (displayed as plaintext) Add testcase for to_asciidoc Update test case for Badges list
2017-02-20Merge branch 'api-post-block' into 'master' Sean McGivern
API: Use POST to (un)block a user Closes #14596 See merge request !9371