From 70f9ffd6478f88bc08d915991c236dc85e0083e3 Mon Sep 17 00:00:00 2001 From: Nur Rony Date: Thu, 20 Oct 2016 21:04:04 +0600 Subject: adds entry in CHANGELOG --- CHANGELOG.md | 23 ++++++++++++++++++++++ app/controllers/groups/group_members_controller.rb | 1 - 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20907eef17b..6f56ab049c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -176,6 +176,29 @@ entry. - Reduce overhead of `LabelFinder` by avoiding `#presence` call. !7094 - Fix unauthorized users dragging on issue boards. !7096 - Only schedule `ProjectCacheWorker` jobs when needed. !7099 + - Fix branch protection API. !6215 + - Fix hidden pipeline graph on commit and MR page. !6895 + - Fix Cycle analytics not showing correct data when filtering by date. !6906 + - Ensure custom provider tab labels don't break layout. !6993 + - Fix issue boards user link when in subdirectory. !7018 + - Refactor and add new environment functionality to CI yaml reference. !7026 + - Fix typo in project settings that prevents users from enabling container registry. !7037 + - Fix events order in `users/:id/events` endpoint. !7039 + - Remove extra line for empty issue description. !7045 + - Don't append issue/MR templates to any existing text. !7050 + - Fix error in generating labels. !7055 + - Stop clearing the database cache on `rake cache:clear`. !7056 + - Only show register tab if signup enabled. !7058 + - Expire and build repository cache after project import. !7064 + - Fix bug where labels would be assigned to issues that were moved. !7065 + - Fix reply-by-email not working due to queue name mismatch. !7068 + - Fix 404 for group pages when GitLab setup uses relative url. !7071 + - Fix `User#to_reference`. !7088 + - Reduce overhead of `LabelFinder` by avoiding `#presence` call. !7094 + - Fix unauthorized users dragging on issue boards. !7096 + - Only schedule `ProjectCacheWorker` jobs when needed. !7099 + - Simpler arguments passed to named_route on toggle_award_url helper method + - Sorting functionality for Group member list (!6956) ## 8.13.0 (2016-10-22) diff --git a/app/controllers/groups/group_members_controller.rb b/app/controllers/groups/group_members_controller.rb index af8abb96d4a..701a5fea737 100644 --- a/app/controllers/groups/group_members_controller.rb +++ b/app/controllers/groups/group_members_controller.rb @@ -17,7 +17,6 @@ class Groups::GroupMembersController < Groups::ApplicationController @members = @members.joins(:user).merge(User.sort(@sort = params[:sort])) end - @members = @members.page(params[:page]).per(50) @requesters = AccessRequestsFinder.new(@group).execute(current_user) -- cgit v1.2.1