1. 19 Nov, 2019 1 commit
  2. 18 Nov, 2019 2 commits
  3. 15 Nov, 2019 1 commit
  4. 04 Nov, 2019 3 commits
  5. 30 Oct, 2019 1 commit
  6. 28 Oct, 2019 2 commits
  7. 25 Oct, 2019 4 commits
  8. 24 Oct, 2019 13 commits
  9. 23 Oct, 2019 10 commits
  10. 22 Oct, 2019 3 commits
    • Luke Duncalfe's avatar
      Pass all wiki markup formats through pipelines · bc534868
      Luke Duncalfe authored
      Previously, when the wiki page format was anything other than `markdown`
      or `asciidoc` the formatted content would be returned though a Gitaly
      call. Gitaly in turn would delegate formatting to the gitlab-gollum-lib
      gem, which in turn would delegate that to various gems (like RDoc for
      `rdoc`) and then apply some very liberal sanitization.
      
      It was too liberal!
      
      This change brings our wiki content formatting in line with how we
      format other markdown at GitLab, so we have a SSOT for sanitization.
      
      https://gitlab.com/gitlab-org/gitlab/issues/30540
      bc534868
    • Kerri Miller's avatar
      Avoid #authenticate_user! in #route_not_found · 2a4457ea
      Kerri Miller authored
      This method, #route_not_found, is executed as the final fallback for
      unrecognized routes (as the name might imply.) We want to avoid
      `#authenticate_user!` when calling `#route_not_found`;
      `#authenticate_user!` can, depending on the request format, return a 401
      instead of redirecting to a login page. This opens a subtle security
      exploit where anonymous users will receive a 401 response when
      attempting to access a private repo, while a recognized user will
      receive a 404, exposing the existence of the private, hidden repo.
      2a4457ea
    • Eugenia Grieff's avatar
      Fix labels finder to filter issuables · b58dd075
      Eugenia Grieff authored
      Use project scopes to filter project labels that are visible for user
      b58dd075