chore: bump version && update changes

This commit is contained in:
firest 2024-01-09 18:01:30 +08:00
parent d1234e3f75
commit 4e046eaa3d
3 changed files with 4 additions and 3 deletions

View File

@ -2,7 +2,7 @@
{application, emqx_dashboard, [ {application, emqx_dashboard, [
{description, "EMQX Web Dashboard"}, {description, "EMQX Web Dashboard"},
% strict semver, bump manually! % strict semver, bump manually!
{vsn, "5.0.31"}, {vsn, "5.0.32"},
{modules, []}, {modules, []},
{registered, [emqx_dashboard_sup]}, {registered, [emqx_dashboard_sup]},
{applications, [ {applications, [

View File

@ -140,13 +140,13 @@ t_public_ref(_Config) ->
ExpectRefs = [ ExpectRefs = [
#{ #{
<<"public.limit">> => #{ <<"public.limit">> => #{
description => <<"Results per page(max 1000)">>, description => <<"Results per page(max 10000)">>,
in => query, in => query,
name => limit, name => limit,
example => 50, example => 50,
schema => #{ schema => #{
default => 100, default => 100,
maximum => 1000, maximum => 10000,
minimum => 1, minimum => 1,
type => integer type => integer
} }

View File

@ -0,0 +1 @@
In the REST API, the maximum limit of page queries is adjusted to 10,000.