1. 01 6月, 2017 1 次提交
  2. 31 5月, 2017 1 次提交
  3. 30 5月, 2017 4 次提交
    • J
      Enable Gitaly by default in GitLab 9.3 · 28590e88
      Jacob Vosmaer 提交于
      28590e88
    • R
      Don't allow to pass a user to ProjectWiki#http_url_to_repo · bf4cc9e1
      Rémy Coutable 提交于
      This partially reverts be25bbc4.
      Signed-off-by: NRémy Coutable <remy@rymai.me>
      bf4cc9e1
    • S
      Fix /unsubscribe slash command creating extra todos · 172932ee
      Sean McGivern 提交于
      The /unsubscribe slash command means that we check if the current user is
      subscribed to the issuable without having an explicit subscription. That means
      that we use the UserParser to find references to them in the notes.
      
      The UserParser (and all parsers inheriting from BaseParser) use RequestStore to
      cache ActiveRecord objects, so that we don't need to load the User object each
      time, if we're parsing references a bunch of times in the same request.
      
      However, it was always returning _all_ of the previously cached items, not just
      the ones matching the IDs passed. This would mean that we did two runs through
      with UserParser if you were mentioned in a comment, and then mentioned someone
      else in your comment while using /unsubscribe:
      
      1. Because /unsubscribe was used, we see if you were mentioned in any comments.
      2. Because you mentioned someone, we find them - but we would also get back your
         user, even if you didn't mention yourself. This would have the effect of
         creating a mention or directly addressed todo for yourself incorrectly.
      
      The fix is simple: only return values from the cache matching the IDs passed.
      172932ee
    • B
      'New issue'/'New merge request' dropdowns should show only projects with... · a7349560
      blackst0ne 提交于
      'New issue'/'New merge request' dropdowns should show only projects with issues/merge requests feature enabled
      a7349560
  4. 27 5月, 2017 1 次提交
  5. 26 5月, 2017 7 次提交
  6. 25 5月, 2017 8 次提交
  7. 24 5月, 2017 18 次提交