From 5728db746dcf14cabbe3ba5b24c91ae237221cda Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 28 Oct 2025 10:09:09 +0100 Subject: [PATCH] Update version notes to 25.10 --- src/ejabberd_admin.erl | 2 +- src/ejabberd_options_doc.erl | 6 +++--- src/mod_admin_extra.erl | 4 ++-- src/mod_announce.erl | 12 ++++++------ src/mod_configure.erl | 2 +- src/mod_mam.erl | 2 +- src/mod_muc.erl | 2 +- src/mod_muc_admin.erl | 4 ++-- src/mod_muc_room.erl | 2 +- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/ejabberd_admin.erl b/src/ejabberd_admin.erl index 685428a9f..e572f2e90 100644 --- a/src/ejabberd_admin.erl +++ b/src/ejabberd_admin.erl @@ -189,7 +189,7 @@ get_commands_spec() -> "announcement quoted, for example: \n" "`ejabberdctl restart_kindly 60 " "\\\"The server will stop in one minute.\\\"`", - note = "added in 25.xx", + note = "added in 25.10", module = ?MODULE, function = restart_kindly, args_desc = ["Seconds to wait", "Announcement to send, with quotes"], args_example = [60, <<"Server will restart now.">>], diff --git a/src/ejabberd_options_doc.erl b/src/ejabberd_options_doc.erl index 07aa33dc1..1d15579ce 100644 --- a/src/ejabberd_options_doc.erl +++ b/src/ejabberd_options_doc.erl @@ -994,7 +994,7 @@ doc() -> "The default value is '1 minute'.")}}, {sql_schema_multihost, #{value => "true | false", - note => "renamed in 25.xx", + note => "renamed in 25.10", desc => {?T("Whether to use the " "_`database.md#default-and-new-schemas|multihost SQL schema`_. " @@ -1012,9 +1012,9 @@ doc() -> [binary:part(ejabberd_config:version(), {0,5})]}}}, {new_sql_schema, #{value => "true | false", - note => "obsoleted in 25.xx", + note => "obsoleted in 25.10", desc => - ?T("This option was renamed to _`sql_schema_multihost`_ in ejabberd 25.xx. " + ?T("This option was renamed to _`sql_schema_multihost`_ in ejabberd 25.10. " "Please update your configuration to use the new option name")}}, {update_sql_schema, #{value => "true | false", diff --git a/src/mod_admin_extra.erl b/src/mod_admin_extra.erl index 640db8112..c1aab268e 100644 --- a/src/mod_admin_extra.erl +++ b/src/mod_admin_extra.erl @@ -259,7 +259,7 @@ get_commands_spec() -> #ejabberd_commands{name = list_banned, tags = [accounts], desc = "List banned accounts", longdesc = "The HOST argument can be `all` to query all vhosts.", - note = "added in 25.xx", + note = "added in 25.10", module = ?MODULE, function = list_banned, args = [{host, binary}], args_example = [<<"myserver.com">>], @@ -270,7 +270,7 @@ get_commands_spec() -> #ejabberd_commands{name = count_banned, tags = [accounts], desc = "Count number of banned accounts", longdesc = "The HOST argument can be `all` to query all vhosts.", - note = "added in 25.xx", + note = "added in 25.10", module = ?MODULE, function = count_banned, args = [{host, binary}], args_example = [<<"myserver.com">>], diff --git a/src/mod_announce.erl b/src/mod_announce.erl index 474db1136..a63792ab4 100644 --- a/src/mod_announce.erl +++ b/src/mod_announce.erl @@ -906,7 +906,7 @@ get_commands_spec() -> longdesc = HostAll ++ BodyNew, module = ?MODULE, function = announce_send_all, - note = "added in 25.xx", + note = "added in 25.10", args = [{host, binary}, {subject, binary}, {body, binary}], result = {res, rescode}}, #ejabberd_commands{name = announce_send_online, @@ -915,7 +915,7 @@ get_commands_spec() -> longdesc = HostAll ++ BodyNew, module = ?MODULE, function = announce_send_online, - note = "added in 25.xx", + note = "added in 25.10", args = [{host, binary}, {subject, binary}, {body, binary}], result = {res, rescode}}, #ejabberd_commands{name = announce_motd_get, @@ -924,7 +924,7 @@ get_commands_spec() -> longdesc = BodyNew, module = ?MODULE, function = get_stored_motd, - note = "added in 25.xx", + note = "added in 25.10", args = [{host, binary}], result = {motd, {tuple, [{subject, string}, {body, string}]}}}, #ejabberd_commands{name = announce_motd_set_online, @@ -933,7 +933,7 @@ get_commands_spec() -> longdesc = HostAll ++ BodyNew, module = ?MODULE, function = announce_motd_set_online, - note = "added in 25.xx", + note = "added in 25.10", args = [{host, binary}, {subject, binary}, {body, binary}], result = {res, rescode}}, #ejabberd_commands{name = announce_motd_update, @@ -942,7 +942,7 @@ get_commands_spec() -> longdesc = HostAll ++ BodyNew, module = ?MODULE, function = announce_motd_update, - note = "added in 25.xx", + note = "added in 25.10", args = [{host, binary}, {subject, binary}, {body, binary}], result = {res, rescode}}, #ejabberd_commands{name = announce_motd_delete, @@ -951,7 +951,7 @@ get_commands_spec() -> longdesc = HostAll, module = ?MODULE, function = announce_motd_delete_api, - note = "added in 25.xx", + note = "added in 25.10", args = [{host, binary}], result = {res, rescode}}]. diff --git a/src/mod_configure.erl b/src/mod_configure.erl index 1bbfd684e..104b729fb 100644 --- a/src/mod_configure.erl +++ b/src/mod_configure.erl @@ -1880,7 +1880,7 @@ mod_doc() -> "have an equivalent " "https://docs.ejabberd.im/developer/ejabberd-api/[API Command] " "that you can execute using _`mod_adhoc_api`_ or any other API frontend.")], - note => "improved in 25.xx", + note => "improved in 25.10", opts => [{access, #{value => ?T("AccessName"), diff --git a/src/mod_mam.erl b/src/mod_mam.erl index cbb4c6654..ae5877a02 100644 --- a/src/mod_mam.erl +++ b/src/mod_mam.erl @@ -1895,7 +1895,7 @@ mod_doc() -> }}, {archive_muc_as_mucsub, #{value => "true | false", - note => "added in 25.xx", + note => "added in 25.10", desc => ?T("When this option is enabled incoming groupchat messages " "for users that have mucsub subscription to a room from which " diff --git a/src/mod_muc.erl b/src/mod_muc.erl index 8d6601ddd..1a1d6cb34 100644 --- a/src/mod_muc.erl +++ b/src/mod_muc.erl @@ -1811,7 +1811,7 @@ mod_doc() -> "The default value is an empty string.")}}, {enable_hats, #{value => "true | false", - note => "improved in 25.xx", + note => "improved in 25.10", desc => ?T("Allow extended roles as defined in XEP-0317 Hats. " "Check the _`../../tutorials/muc-hats.md|MUC Hats`_ tutorial. " diff --git a/src/mod_muc_admin.erl b/src/mod_muc_admin.erl index 8133185d4..2016290dd 100644 --- a/src/mod_muc_admin.erl +++ b/src/mod_muc_admin.erl @@ -164,7 +164,7 @@ get_commands_spec() -> #ejabberd_commands{name = muc_get_registered_nick, tags = [muc], desc = "Get nick registered for that account in the MUC service", module = ?MODULE, function = muc_get_registered_nick, - note = "added in 25.xx", + note = "added in 25.10", args_desc = ["user name", "user host", "MUC service"], args_example = [<<"tim">>, <<"example.org">>, <<"conference.example.org">>], args = [{user, binary}, {host, binary}, {service, binary}], @@ -174,7 +174,7 @@ get_commands_spec() -> #ejabberd_commands{name = muc_get_registered_nicks, tags = [muc], desc = "List all nicks registered in the MUC service", module = ?MODULE, function = muc_get_registered_nicks, - note = "added in 25.xx", + note = "added in 25.10", args_desc = ["MUC service"], args_example = [<<"conference.example.org">>], args = [{service, binary}], diff --git a/src/mod_muc_room.erl b/src/mod_muc_room.erl index 3f79994c5..fe92a011c 100644 --- a/src/mod_muc_room.erl +++ b/src/mod_muc_room.erl @@ -27,7 +27,7 @@ -author('alexey@process-one.net'). --protocol({xep, 317, '0.3.1', '21.12', "complete", "0.3.1 since 25.xx"}). +-protocol({xep, 317, '0.3.1', '21.12', "complete", "0.3.1 since 25.10"}). -protocol({xep, 410, '1.1.0', '18.12', "complete", ""}). -behaviour(p1_fsm).