From 1bb86eca1f6ada378862069e30faeb35025316f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Fri, 7 Nov 2025 16:22:17 +0100 Subject: [PATCH] feat: Document user agent change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- admin_manual/release_notes/upgrade_to_33.rst | 6 ++++++ .../app_upgrade_guide/upgrade_to_33.rst | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/admin_manual/release_notes/upgrade_to_33.rst b/admin_manual/release_notes/upgrade_to_33.rst index f30e0dc56..f5eeca928 100644 --- a/admin_manual/release_notes/upgrade_to_33.rst +++ b/admin_manual/release_notes/upgrade_to_33.rst @@ -21,3 +21,9 @@ Snowflake IDs This version of Nextcloud ships with `Snowflake IDs `_. Those IDs include the creation time of object, a sequence ID and a server ID. The server ID should now be configured in your config.php file or using environment variables. See :doc:`../configuration_server/config_sample_php_parameters` for more information. + + +Default user agent for outgoing requests changed +------------------------------------------------ + +Starting with this release, the default user agent for requests done by the instance was changed from ``Nextcloud Server Crawler`` to ``Nextcloud-Server-Crawler/X.Y.Z``, where ``X.Y.Z`` is the current server version. diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_33.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_33.rst index d721dfb97..4814f69fc 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_33.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_33.rst @@ -75,6 +75,11 @@ In this release support for PHP 8.1 was removed. Follow the steps below to make 3. If you have :ref:`continuous integration ` set up, remove PHP 8.1 from the matrices of tests and linters. +Default user agent for outgoing requests changed +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Starting with this release, the default user agent for requests done by the instance was changed from ``Nextcloud Server Crawler`` to ``Nextcloud-Server-Crawler/X.Y.Z``, where ``X.Y.Z`` is the current server version. + Added Events ^^^^^^^^^^^^