summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated Rubocop for generator_templates/fix-generator-templates-directoryYorick Peterse2016-05-191-1/+1
|
* Move generator templates to generator_templates/Yorick Peterse2016-05-193-1/+3
| | | | | | Since we eager load everything in lib/ putting ERB code in .rb files will result in syntax errors. By moving the templates to ./generator_templates we can work around this.
* Merge branch 'simplify-animation-css' into 'master' Jacob Schatz2016-05-195-12/+74
|\ | | | | | | | | | | | | | | | | Replace animate.css with a smaller subset of animations. As discussed in #15667. This saves ~50KB uncompressed. cc: @jschatz1 See merge request !3937
| * Replace animate.css with a smaller subset of animations.Connor Shea2016-05-135-12/+74
| | | | | | | | As discussed in #15667.
* | Merge branch 'doc-broken-links' into 'master' Jeroen van Baarsen2016-05-193-2/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix broken documentation links Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15249 - [x] `/help/ui`- This is working for me - [x] `/help/ci/examples/deployment/README.md` - Fixed - [x] `/help/ci/api/projects.md` - Fixed - [x] `/help/markdown/LICENSE` - Cannot do much to fix it, added a note. - [x] `/help/ci/ssh/README.md` - Cannot find this link referenced anywhere. See merge request !3903
| * | Fix broken linksdoc-broken-linksAchilleas Pipinellis2016-04-193-2/+3
| | | | | | | | | | | | [ci skip]
* | | Merge branch 'patch-1' into 'master' Rémy Coutable2016-05-192-1/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed advice on invalid permissions on upload path When running the checks, my upload path has wrong permissions, the advice could not fix it because it does not change the permission of this directory (only sub-directories). ``` Uploads directory setup correctly? ... no Try fixing it: sudo find /home/git/gitlab/public/uploads -type d -not -path /home/git/gitlab/public/uploads -exec chmod 0700 {} \; For more information see: doc/install/installation.md in section "GitLab" Please fix the error above and rerun the checks. ``` Executing this instead fixed the error : ``` sudo chmod 700 /home/git/gitlab/public/uploads ``` See merge request !2948
| * | | Added CHANGELOG entryLudovic Perrine2016-05-191-0/+1
| | | |
| * | | Fixed advice on invalid permissions on upload pathJazz2016-05-191-1/+1
| | | |
* | | | Merge branch 'migration-helpers' into 'master' Robert Speicher2016-05-196-2/+393
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added helper methods for database migrations These helpers can ultimately be used to write migrations that don't require downtime. See #15464 for more information. See merge request !3860
| * | | | Fixed typos in migration templatesmigration-helpersYorick Peterse2016-05-192-2/+2
| | | | |
| * | | | Remove left-over use of strip_heredocYorick Peterse2016-05-191-1/+1
| | | | |
| * | | | Removed stray strip_heredoc from migration helpersYorick Peterse2016-05-131-1/+1
| | | | |
| * | | | Fixed styling per Rubocop pedanticsYorick Peterse2016-05-122-5/+7
| | | | |
| * | | | Tell Rubocop to ignore lib/templatesYorick Peterse2016-05-121-1/+2
| | | | |
| * | | | Link to migration guide in migration templatesYorick Peterse2016-05-122-0/+6
| | | | |
| * | | | Updated migration styleguide for new helpersYorick Peterse2016-05-121-2/+44
| | | | |
| * | | | Added custom migration generator templatesYorick Peterse2016-05-122-0/+84
| | | | | | | | | | | | | | | | | | | | | | | | | This allows us to automatically include Gitlab::Database::MigrationHelpers into newly generated migrations.
| * | | | Added helper methods for database migrationsYorick Peterse2016-05-122-0/+256
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These helpers can be used to perform migrations without taking down the entire application. For example, the method "add_column_with_default" can be used to add a new column with a default value without locking the entire table.
* | | | | Merge branch 'fix-svg-constant-errors' into 'master' Robert Speicher2016-05-192-89/+89
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix warning messages with SVG ALLOWED_ELEMENTS Define the right module names so that Rails autoloading and eager loading will work properly. Eliminates "warning: already initialized constant Gitlab::Sanitizers::SVG::ALLOWED_ELEMENTS" See merge request !4207
| * | | | | Fix warning messages with SVG ALLOWED_ELEMENTSStan Hu2016-05-192-89/+89
| | | | | | | | | | | | | | | | | | | | | | | | Eliminates "warning: already initialized constant Gitlab::Sanitizers::SVG::ALLOWED_ELEMENTS"
* | | | | | Merge branch 'mooreniemi/gitlab-ce-issue_15236' into 'master' Robert Speicher2016-05-195-12/+49
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changing the confidentiality of an issue now creates a new system note Closes #15236. See merge request !4189
| * | | | | | Move #create_confidentiality_note to Issues::UpdateServicemooreniemi/gitlab-ce-issue_15236Rémy Coutable2016-05-185-32/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | | | | Changing the confidentiality of an issue now creates a new system noteAlex Moore-Niemi2016-05-186-7/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | Merge branch 'revert-3656b5db' into 'master' Stan Hu2016-05-192-1/+5
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert "Merge branch 'issues/15127' into 'master'" This reverts merge request !3647 See merge request !4212
| * | | | | | Revert "Merge branch 'issues/15127' into 'master'"revert-3656b5dbStan Hu2016-05-192-1/+5
|/ / / / / / | | | | | | | | | | | | This reverts merge request !3647
* | | | | | Merge branch 'issues/15127' into 'master' Stan Hu2016-05-192-5/+1
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix #15127 ActiveJob::DeserializationError thrown `send_devise_notification` pre-maturely enqueued the task when the user instance has not yet been committed into the database, causing a record-not-found in the other sidekiq process. `devise-async` has already been taking care of asynchronous mail sending, we just need to run it inside queue `mailers` instead of `mailer` to enable it. The implementation of `devise-async` enqueues the task in `after_commit` hook which is the right way to do it. See merge request !3647
| * | | | | fix #15127 ActiveJob::DeserializationError thrownP.S.V.R2016-04-112-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | send_devise_notification pre-maturely enqueued the task when the user instance has not yet been committed into the database, causing a record-not-found in the other sidekiq process. devise-async has already been taking care of asynchronous mail sending, we just need to run it inside queue `mailers` instead of `mailer` to enable it.
* | | | | | Merge branch 'issue_17560' into 'master' Robert Speicher2016-05-197-33/+107
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mask credentials from URL when the import of project has failed. REF: #17560 See merge request !4185
| * | | | | | Mask credentials from URL when import of project has failed.Rubén Dávila2016-05-187-33/+107
| | | | | | |
* | | | | | | Merge branch '17635-remove-unused-project-scopes' into 'master' Robert Speicher2016-05-191-25/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove unused Project scopes Closes #17635. See merge request !4204
| * | | | | | | Remove unused Project scopes17635-remove-unused-project-scopesRémy Coutable2016-05-181-25/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | | Merge branch 'fix-changelog' into 'master' Rémy Coutable2016-05-181-8/+5
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix changelog for 7.9.3 Closes #1484 See merge request !4202
| * | | | | | | Fix changelog for 7.9.3 [ci-skip]Robert Schilling2016-05-181-8/+5
| | | | | | | |
* | | | | | | | Merge branch 'master' into 'master' Hannes Rosenögger2016-05-181-2/+2
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix example urls for (dis)associating runners to projects See merge request !2993
| * | | | | | | fix example urls for (de)associating runners to projectsa-tal2016-02-261-2/+2
| | | | | | | |
* | | | | | | | Merge branch 'patch-1' into 'master' Hannes Rosenögger2016-05-181-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | doc: fix git lfs workaround for using http instead of https the url should only point to `info/lfs` instead of `info/lfs/batch/objects` See merge request !2713
| * | | | | | | | doc: fix git lfs workaround for using http instead of https Felix Ruess2016-02-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | the url should only point to `info/lfs` instead of `info/lfs/batch/objects`
* | | | | | | | | Merge branch '17628-remove-unused-methods' into 'master' Robert Speicher2016-05-181-9/+0
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove User#tm_in_authorized_projects and User#tm_of These methods seems to be unused. Closes #17628. Signed-off-by: Rémy Coutable <remy@rymai.me> See merge request !4198
| * | | | | | | | | Remove User#tm_in_authorized_projects and User#tm_ofRémy Coutable2016-05-181-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These methods seems to be unused. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | | | | Merge branch '15584-remove-back-compat-code' into 'master' Robert Speicher2016-05-181-5/+1
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove back-compat code that's not needed anymore Solves #15584. See merge request !4187
| * | | | | | | | | Remove back-compat code that's not needed anymore15584-remove-back-compat-codeRémy Coutable2016-05-171-5/+1
| | |_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | | | Merge branch 'docker-registry-view' into 'master' Kamil Trzciński2016-05-1841-22/+954
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add container registry support Tasks: - [x] Merge docker/distribution authentication service: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3787 - [x] Implement Docker Registry API - [x] Show a list of docker images in GitLab - [x] Remove registry repository on project deletion - [x] Support project rename, move and namespace rename - [x] Use token when connecting the registry - [x] Allow to delete images from GitLab - [x] Support pushing from GitLab CI (gitlab-ci-token / $CI_BUILD_TOKEN) - [x] Support GitLab Runner pulling for public repositories - [ ] Support GitLab Runner pulling for private repositories - [x] Add tests for Docker Registry API - [x] Add tests for a views - [x] Make texts nicer - [x] Implement a backup support - [ ] Create administration documentation https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4141 - [ ] Create user documentation See merge request !4040
| * \ \ \ \ \ \ \ \ Merge branch 'master' into docker-registry-viewdocker-registry-viewKamil Trzcinski2016-05-182-0/+3
| |\ \ \ \ \ \ \ \ \ | | | |_|_|/ / / / / | | |/| | | | | | |
| * | | | | | | | | Verify if registry is enabled in registryKamil Trzcinski2016-05-182-1/+6
| | | | | | | | | |
| * | | | | | | | | Improve code designKamil Trzcinski2016-05-182-5/+9
| | | | | | | | | |
| * | | | | | | | | Provide full test coverage to lib/container_registry API implementationKamil Trzcinski2016-05-1711-57/+232
| | | | | | | | | |
| * | | | | | | | | Add .gitkeepKamil Trzcinski2016-05-176-2/+48
| | | | | | | | | |
| * | | | | | | | | Fix specsKamil Trzcinski2016-05-163-2/+10
| | | | | | | | | |
| * | | | | | | | | Fix rubocop offensesKamil Trzcinski2016-05-161-1/+1
| | | | | | | | | |