Skip to content
Snippets Groups Projects
  1. Mar 13, 2019
  2. Feb 28, 2019
    • Mario de la Ossa's avatar
      Always use CTE for IssuableFinder counts · 39afba06
      Mario de la Ossa authored
      Since the CTE is faster than a subquery and the only reason we're using
      a subquery is that the CTE can't handle sorting by certain attributes,
      let's use the CTE always (when the feature flag is enabled) when
      counting, since we can ignore ordering if we just want a count of
      results.
      Unverified
      39afba06
  3. Dec 18, 2018
    • blackst0ne's avatar
      Update specs to rails5 format · b44a2c80
      blackst0ne authored
      Updates specs to use new rails5 format.
      
      The old format:
      `get :show, { some: params }, { some: headers }`
      
      The new format:
      `get :show, params: { some: params }, headers: { some: headers }`
      b44a2c80
  4. Nov 30, 2018
    • Sean McGivern's avatar
      Add a flag to use a subquery for group issues search · 7fd5dbf9
      Sean McGivern authored
      We already had a flag to use a CTE, but this broke searching in some
      cases where we need to sort by a joined table. Disabling the CTE flag
      makes searches much slower.
      
      The new flag, to use a subquery, makes them slightly slower than the
      CTE, while maintaining correctness. If both it and the CTE flag are
      enabled, the subquery takes precedence.
      7fd5dbf9
  5. Nov 29, 2018
  6. Nov 23, 2018
  7. Nov 01, 2018
  8. Oct 05, 2018
  9. Sep 07, 2018
  10. Sep 03, 2018
  11. Jul 11, 2018
  12. Feb 06, 2018
  13. Jan 31, 2018
    • Stan Hu's avatar
      Fix not all events being shown in group dashboard · 30e6cfa0
      Stan Hu authored
      The group activity feed was limited to the first 20 projects found
      in the group, which caused activity from some projects to be omitted.
      A limit of 20 is applied to the query for events, so the
      extra pagination does little in the way of performance.
      
      Closes #42560
      30e6cfa0
  14. Oct 20, 2017
  15. Oct 12, 2017
  16. Oct 11, 2017
  17. Oct 10, 2017
  18. Oct 04, 2017
  19. Sep 07, 2017
  20. Aug 02, 2017
  21. Jun 15, 2017
  22. May 19, 2017
    • Michael Kozono's avatar
      Refactor to more robust implementation · 49697bc8
      Michael Kozono authored
      In order to avoid string manipulation or modify route params (to make them unambiguous for `url_for`), we are accepting a behavior change:
      
      When being redirected to the canonical path for a group, if you requested a group show path starting with `/groups/…` then you’ll now be redirected to the group at root `/…`.
      49697bc8
  23. May 18, 2017
Loading