1. 01 2月, 2017 11 次提交
  2. 26 1月, 2017 1 次提交
    • T
      Add a system hook for when a project is updated. · 0de335ec
      Tommy Beadle 提交于
      This sends a project_update hook when a repo is updated.  This does not include
      renaming or transferring a project.  Those are covered by project_rename and
      project_transfer.  This will get called, however, when the visibility is
      changed.
      0de335ec
  3. 24 1月, 2017 1 次提交
  4. 16 1月, 2017 1 次提交
  5. 15 1月, 2017 1 次提交
  6. 06 1月, 2017 1 次提交
  7. 20 12月, 2016 3 次提交
  8. 17 12月, 2016 1 次提交
  9. 23 11月, 2016 1 次提交
    • Y
      Remove event caching code · 5371da34
      Yorick Peterse 提交于
      Flushing the events cache worked by updating a recent number of rows in
      the "events" table. This has the result that on PostgreSQL a lot of dead
      tuples are produced on a regular basis. This in turn means that
      PostgreSQL will spend considerable amounts of time vacuuming this table.
      This in turn can lead to an increase of database load.
      
      For GitLab.com we measured the impact of not using events caching and
      found no measurable increase in response timings. Meanwhile not flushing
      the events cache lead to the "events" table having no more dead tuples
      as now rows are only inserted into this table.
      
      As a result of this we are hereby removing events caching as it does not
      appear to help and only increases database load.
      
      For more information see the following comment:
      https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6578#note_18864037
      5371da34
  10. 19 11月, 2016 1 次提交
  11. 17 11月, 2016 1 次提交
  12. 16 11月, 2016 3 次提交
    • A
    • A
      Limit autocomplete to currently selected items · d54b8826
      Akram FARES 提交于
      d54b8826
    • N
      shows user avatar in mention autocomplete in editor · eaef9453
      Nur Rony 提交于
      adds entry in CHANGELOG
      
      no uninitialized variable and unnecessary if statement
      
      formatting issue in CHANGELOG
      
      resolves scss lint warings
      
      cleanup: unnecessary css classes
      
      adds css class that cleaned up by mistake
      
      replaces snake_case variables name with camelCase
      
      removes unnecessary css class and adds white color border for avatar
      
      moves changelog entry from 8.13 to 8.14
      
      remove bottom margin from avatar-inline
      
      resolves lint warnings
      
      rebased and moves changelog entry to 8.14
      
      fixes avatar shifting on hover
      
      adds entry at top of 8.14 section in CHANGELOG.md
      
      calls sanitization for gl.utils
      
      syncing changelog with master and created changelog files using cli
      
      changes changelog title
      eaef9453
  13. 04 11月, 2016 1 次提交
  14. 28 10月, 2016 1 次提交
  15. 20 10月, 2016 2 次提交
  16. 05 10月, 2016 1 次提交
  17. 29 9月, 2016 1 次提交
  18. 27 9月, 2016 1 次提交
    • N
      Enforce the fork_project permission in Projects::CreateService · 3ed80a01
      Nick Thomas 提交于
      Projects::ForkService delegates to this service almost entirely, but needed
      one small change so it would propagate create errors correctly.
      
      CreateService#execute needs significant refactoring; it is now right at the
      complexity limit set by Rubocop. I avoided doing so in this commit to keep the
      diff as small as possible.
      
      Several tests depend on the insecure behaviour of ForkService, so fi them up at
      the same time.
      3ed80a01
  19. 14 9月, 2016 1 次提交
    • Y
      Move pushes_since_gc to Redis · 4e87c023
      Yorick Peterse 提交于
      This moves tracking of the pushes since the last Git GC from PostgreSQL
      to Redis. This reduces the number of writes on the "projects" table.
      This in turn reduces the vacuuming overhead.
      
      The lease used for incrementing the counter has been removed. This lease
      was mostly put in place to prevent high database load but this isn't
      needed anymore due to the counter now being stored in Redis.
      
      Fixes gitlab-org/gitlab-ce#22125
      4e87c023
  20. 13 9月, 2016 1 次提交
  21. 01 9月, 2016 1 次提交
  22. 18 8月, 2016 1 次提交
  23. 13 8月, 2016 3 次提交