1. 16 2月, 2017 6 次提交
  2. 15 2月, 2017 1 次提交
  3. 14 2月, 2017 12 次提交
  4. 11 2月, 2017 1 次提交
    • Y
      Enforce use of add_concurrent_foreign_key · 766060bc
      Yorick Peterse 提交于
      This adds a Rubocop rule to enforce the use of
      add_concurrent_foreign_key instead of the regular add_foreign_key
      method. This cop has been disabled for existing migrations so we don't
      need to change those.
      766060bc
  5. 10 2月, 2017 1 次提交
  6. 09 2月, 2017 3 次提交
  7. 07 2月, 2017 3 次提交
  8. 06 2月, 2017 1 次提交
  9. 05 2月, 2017 1 次提交
    • S
      Add index to labels for `type` and project_id` · 1e97a6df
      Stan Hu 提交于
      When loading pages that display the number of open issues,
      the backend runs a query such as:
      
      ```sql
      SELECT "labels"."id" FROM "labels" WHERE "labels"."type" IN ('ProjectLabel') AND "labels"."project_id" = 1000
      ```
      
      This results in an entire scan of the `labels` table. To optimize performance,
      add the appropriate index to the table.
      
      Closes #27676
      1e97a6df
  10. 03 2月, 2017 5 次提交
  11. 02 2月, 2017 1 次提交
  12. 01 2月, 2017 5 次提交
    • K
      Pages domain model specs · d3b82848
      Kamil Trzcinski 提交于
      d3b82848
    • K
      Added PagesDomain · 6e99226c
      Kamil Trzcinski 提交于
      6e99226c
    • K
    • K
      Initial work on GitLab Pages update · 5f7257c2
      Kamil Trzcinski 提交于
      5f7257c2
    • K
      Add GitLab Pages · 120f9aba
      Kamil Trzcinski 提交于
      - The pages are created when build artifacts for `pages` job are uploaded
      - Pages serve the content under: http://group.pages.domain.com/project
      - Pages can be used to serve the group page, special project named as host: group.pages.domain.com
      - User can provide own 403 and 404 error pages by creating 403.html and 404.html in group page project
      - Pages can be explicitly removed from the project by clicking Remove Pages in Project Settings
      - The size of pages is limited by Application Setting: max pages size, which limits the maximum size of unpacked archive (default: 100MB)
      - The public/ is extracted from artifacts and content is served as static pages
      - Pages asynchronous worker use `dd` to limit the unpacked tar size
      - Pages needs to be explicitly enabled and domain needs to be specified in gitlab.yml
      - Pages are part of backups
      - Pages notify the deployment status using Commit Status API
      - Pages use a new sidekiq queue: pages
      - Pages use a separate nginx config which needs to be explicitly added
      120f9aba