Skip to content
Snippets Groups Projects
  1. Sep 04, 2019
  2. Sep 02, 2019
  3. Aug 30, 2019
  4. Aug 29, 2019
  5. Aug 23, 2019
    • Scott Hampton's avatar
      Change misleading pipeline status tooltip · f093ceb4
      Scott Hampton authored and Mayra Cabrera's avatar Mayra Cabrera committed
      Some pipeline status icon tooltips were showing
      "Commit: ..." which customers found to be
      misleading since it was not the commit that was
      failing but the pipeline.
      
      We are changing all status icon tooltips to say
      "Pipeline: ..." instead of "Commit: ..." now.
      f093ceb4
  6. Aug 21, 2019
    • Oswaldo Ferreir's avatar
      Avoid exposing unaccessible repo data upon GFM processing · 4daf3dc0
      Oswaldo Ferreir authored
      When post-processing relative links to absolute links
      RelativeLinkFilter didn't take into consideration that
      internal repository data could be exposed for users
      that do not have repository access to the project.
      
      This commit solves that by checking whether the user
      can `download_code` at this repository, avoiding any
      processing of this filter if the user can't.
      
      Additionally, if we're processing for a group (
      no project was given), we check if the user can
      read it in order to expand the href as an extra.
      That doesn't seem necessarily a breach now,
      but an extra check doesn't hurt as after all
      the user needs to be able to `read_group`.
      4daf3dc0
  7. Aug 19, 2019
  8. Aug 17, 2019
  9. Aug 14, 2019
  10. Aug 12, 2019
    • Markus Koller's avatar
      Load search result counts asynchronously · 49c83155
      Markus Koller authored
      Querying all counts for the different search results in the same request
      led to timeouts, so we now only calculate the count for the *current*
      search results, and request the others in separate asynchronous calls.
      Verified
      49c83155
  11. Aug 07, 2019
  12. Aug 06, 2019
  13. Aug 05, 2019
  14. Aug 02, 2019
  15. Jul 29, 2019
  16. Jul 26, 2019
  17. Jul 25, 2019
  18. Jul 24, 2019
    • Illya Klymov's avatar
      Add links in admin area overview · a6ac0a27
      Illya Klymov authored
      Introduces new `feature_entry` helper for dashboard.
      This helper reduces code duplication when listing available features
      and relevant links to configuration sections
      a6ac0a27
  19. Jul 23, 2019
  20. Jul 22, 2019
  21. Jul 17, 2019
  22. Jul 15, 2019
  23. Jul 12, 2019
  24. Jul 11, 2019
  25. Jul 09, 2019
  26. Jul 07, 2019
  27. Jul 04, 2019
    • Christie Lenneville's avatar
      Change 'Todo' to 'To Do' · c433082f
      Christie Lenneville authored
      Currently, we label items to be done as "Todo." This is grammatically
      incorrect and (therefore) confusing—especially to our Spanish-speaking
      users for whom "todo" has a specific and unrelated meaning.
      
      We should use "To Do" and always use it as singular (not "To Dos").
      
      Updates to wording in a few places per MR (ee) discussion
      
      Updating locale/gitlab.pot
      
      Updates to wording in a few places per MR (ee) discussion
      
      Updating locale/gitlab.pot
      c433082f
  28. Jun 29, 2019
    • Stan Hu's avatar
      Fix attachments using the wrong URLs in e-mails · 0e341a6e
      Stan Hu authored
      Prior to https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29889,
      only the project context were set for the Markdown renderer. For a note
      on an issuable, the group context was set to `nil` because
      `note.noteable.try(:group)` attempted to get the issuable's group, which
      doesn't exist.
      
      To make group notifications work, now both the project and group context
      are set. The context gets passed to `RelativeLinkFilter`, which
      previously assumed that it wasn't possible to have both a group and a
      project in the Markdown context. However, if a group were defined, it
      would take precedence, and the URL rendered for uploads would be
      `/group/-/uploads` instead of `/group/project/uploads/`. This led to
      404s in e-mails.
      
      However, now that we have both project and group in the context, we
      render the Markdown giving priority to the project context if is set.
      
      Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63910
      0e341a6e
  29. Jun 28, 2019
Loading