Skip to content
Snippets Groups Projects
  1. Aug 01, 2018
  2. Jul 31, 2018
  3. Jul 30, 2018
    • Stan Hu's avatar
      Fix /admin/jobs failing to load due to statement timeout · 00709a13
      Stan Hu authored
      The `ORDER BY created_at DESC` clause causes a sequential scan because
      there is no index on the `created_at` column. We can sort by `id`
      or by `updated_at` to make things fast.
      
      Closes #49767
      00709a13
    • Felipe Artur's avatar
    • Bob Van Landuyt's avatar
      Show the status of a user in interactions · f1d3ea63
      Bob Van Landuyt authored
      The status is shown for
      - The author of a commit when viewing a commit
      - Notes on a commit (regular/diff)
      - The user that triggered a pipeline when viewing a pipeline
      - The author of a merge request when viewing a merge request
      - The author of notes on a merge request (regular/diff)
      - The author of an issue when viewing an issue
      - The author of notes on an issue
      - The author of a snippet when viewing a snippet
      - The author of notes on a snippet
      - A user's profile page
      - The list of members of a group/user
      f1d3ea63
    • Bob Van Landuyt's avatar
      Allow users to set a status · b4c4b48a
      Bob Van Landuyt authored
      This can be done trough the API for the current user, or on the
      profile page.
      b4c4b48a
  4. Jul 28, 2018
  5. Jul 27, 2018
  6. Jul 26, 2018
  7. Jul 24, 2018
  8. Jul 23, 2018
  9. Jul 22, 2018
  10. Jul 20, 2018
  11. Jul 18, 2018
    • Stan Hu's avatar
      Limit the TTL for anonymous sessions to 1 hour · c559c43d
      Stan Hu authored
      By default, all sessions are given the same expiration time configured in the
      session store (e.g. 1 week). However, unauthenticated users can generate a lot
      of sessions, primarily for CSRF verification. It makes sense to reduce the TTL
      for unauthenticated to something much lower than the default (e.g. 1 hour) to
      limit Redis memory. In addition, Rails creates a new session after login,
      so the short TTL doesn't even need to be extended.
      
      Closes #48101
      c559c43d
  12. Jul 17, 2018
  13. Jul 13, 2018
  14. Jul 12, 2018
  15. Jul 11, 2018
Loading