1. 01 Aug, 2019 37 commits
  2. 31 Jul, 2019 3 commits
    • Evan Read's avatar
      Merge branch 'docs-labels-update' into 'master' · b36323f3
      Evan Read authored
      Update label documentation
      
      Closes #60160
      
      See merge request gitlab-org/gitlab-ce!31093
      b36323f3
    • Marcel Amirault's avatar
      Update label documentation · 8fcd24c8
      Marcel Amirault authored
      Update label documentation with newer screenshots, cut long
      lines, and touch up the text, especially the delete label
      section. Also adds new screenshots for clarity
      8fcd24c8
    • Stan Hu's avatar
      Fix SystemStackError when Peek bar is active with Rugged calls · 7a5c4cd0
      Stan Hu authored
      Peek attempts to serialize results with `to_json`, which calls
      `ActiveSupport::JSON`. If an object is passed to `to_json` that contains
      instance variables, `ActiveSupport` will attempt to recursively traverse
      all variables.
      
      The problem is that we can get into an infinite loop if the instance
      references to an instance that references to something else that points
      back to the same instance.
      
      To avoid this mess, we just call `to_s` on the object. It appears only
      `Gitlab::Git::Repository` and `::Repository` are the culprits here.
      
      Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65404
      7a5c4cd0