diff --git a/docs/.artifacts/cms/4.x/config-general.md b/docs/.artifacts/cms/4.x/config-general.md
index 7e0ad866d..5a6df3b03 100644
--- a/docs/.artifacts/cms/4.x/config-general.md
+++ b/docs/.artifacts/cms/4.x/config-general.md
@@ -640,6 +640,40 @@ CRAFT_DISABLED_PLUGINS=redactor,webhooks
+### `disabledUtilities`
+
+
+
+Allowed types
+: [string](https://php.net/language.types.string)[]
+
+Default value
+: `[]`
+
+Defined by
+: [GeneralConfig::$disabledUtilities](craft4:craft\config\GeneralConfig::$disabledUtilities)
+
+Since
+: 4.6.0
+
+
+
+Array of utility IDs that should be disabled.
+
+::: code
+```php Static Config
+ ->disabledUtilities([
+ 'updates',
+ 'find-replace',
+ ])
+```
+```shell Environment Override
+CRAFT_DISABLED_UTILITIES=updates,find-replace
+```
+:::
+
+
+
### `disallowRobots`
@@ -4932,5 +4966,36 @@ CRAFT_EXTRA_NAME_SUFFIXES=CCNA,OBE
+### `showFirstAndLastNameFields`
+
+
+
+Allowed types
+: [boolean](https://php.net/language.types.boolean)
+
+Default value
+: `false`
+
+Defined by
+: [GeneralConfig::$showFirstAndLastNameFields](craft4:craft\config\GeneralConfig::$showFirstAndLastNameFields)
+
+Since
+: 4.6.0
+
+
+
+Whether “First Name” and “Last Name” fields should be shown in place of “Full Name” fields.
+
+::: code
+```php Static Config
+->showFirstAndLastNameFields()
+```
+```shell Environment Override
+CRAFT_SHOW_FIRST_AND_LAST_NAME_FIELDS=true
+```
+:::
+
+
+