瀏覽代碼

chore: bump version && update changes

firest 2 年之前
父節點
當前提交
4e046eaa3d

+ 1 - 1
apps/emqx_dashboard/src/emqx_dashboard.app.src

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

+ 2 - 2
apps/emqx_dashboard/test/emqx_swagger_parameter_SUITE.erl

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

+ 1 - 0
changes/ce/feat-12278.en.md

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