diff --git a/docs/add-ons/pro-variables/fieldtype.md b/docs/add-ons/pro-variables/fieldtype.md
index 7536b4dee..54c0e13b0 100644
--- a/docs/add-ons/pro-variables/fieldtype.md
+++ b/docs/add-ons/pro-variables/fieldtype.md
@@ -27,7 +27,9 @@ The value of the field will be the _variable name_, for example: `my_var`. To ou
## Examples
-Say you have 5 different testimonial quotes stored as variables in the variable group Quotes, named `lv_quote_1` to `lv_quote_5`. To each News entry, you want to add one of those quotes. Then add a Pro Variables field to your News field group, eg. `news_quote`. Then select the Quotes group in the field settings. To output the quote, you’d need code like this:
+Say you have 5 different testimonial quotes stored as variables in the variable group Quotes, named `pv_quote_1` to `pv_quote_5`. (Remember, you can create these in one pass using the (suffix option)[/add-ons/pro-variables/manage.md#variable-creation-options].)
+
+To each News entry, you want to add one of those quotes. Then add a Pro Variables field to your News field group, eg. `news_quote`. Then select the Quotes group in the field settings. To output the quote, you’d need code like this:
{exp:channel:entries channel="news"}
{title}
@@ -54,4 +56,4 @@ If you’re allowing for multiple selections, you can use the channel field as a
{news_quotes}
{{var}}
{/news_quotes}
- {/exp:channel:entries}
\ No newline at end of file
+ {/exp:channel:entries}
diff --git a/docs/add-ons/pro-variables/manage.md b/docs/add-ons/pro-variables/manage.md
index 04a93fc3a..92841278b 100644
--- a/docs/add-ons/pro-variables/manage.md
+++ b/docs/add-ons/pro-variables/manage.md
@@ -17,11 +17,11 @@ There are a couple of extra properties you can assign to variables, other than t
### Variable name
-Name of the variable you can use in your templates. Example: `lv_my_special_var`.
+Name of the variable you can use in your templates. Example: `pv_my_special_var`. You can use (`{suffix}`)[#variable-creation-options] in this setting.
### Variable label
-The label a user sees when editing the contents of the variable.
+The label a user sees when editing the contents of the variable. You can use (`{suffix}`)[#variable-creation-options] in this setting.
### Variable notes
@@ -37,7 +37,7 @@ You can hide variables from regular users (non-managers) on a per-variable basis
### Early parsing
-You can enable early parsing on a per-variable basis.
+You can enable early parsing on a per-variable basis, if this is enabled overall in Pro Variable settings.
### Variable type
@@ -45,13 +45,19 @@ Choose any variable type that suits your needs best. [Here’s a list of variabl
## Variable creation options
-When creating a new variable, you have two extra options you can use. First, you can **set the initial value** of the variable, so it has a value upon creation. Second, you can enter any amount of **suffixes**, separated by a space. A new variable will be created for each suffix entered, each with identical settings apart from the suffix.
+When creating a new variable, you have two extra options you can use.
+
+First, you can **set the initial value** of the variable, so it has an existing value upon creation.
+
+Second, you can enter any amount of **suffixes**, separated by a space. A new variable will be created for each suffix entered, each with identical settings apart from the suffix.
When using the suffix option, you can use `{suffix}` in both the variable name as the variable label. This will be replaced by the actual suffix upon creation.
+NOTE: You can use this for language options (en fr de nl), for creating a set of numbered fields (1 2 3 4), for creating a collection of fields for social media links (fb tiktok instagram linkedin), and more.
+
## Variable groups
-You can create any number of groups to organize your variables. These groups will appear in the Group drop down for each variable, so you can assign a group to it. On the module home page, variable managers can sort the groups using drag and drop. Variable managers can also edit and delete the groups from here, by clicking on the edit or delete icon next to the group name. You can alter the variable order in a group by editing the group’s properties.
+You can create any number of groups to organize your variables. These groups will appear in the Group dropdown for each variable, so you can assign a group to it. On the module home page, variable managers can sort the groups using drag and drop. Variable managers can also edit and delete the groups from here, by clicking on the edit or delete icon next to the group name. You can alter the variable order in a group by editing the group’s properties.
### Group label
@@ -81,4 +87,4 @@ If you want to duplicate the group variables, enter a single suffix to be applie
## Suffix options
-You can choose to either _append_ the suffix to each new variable, or to _replace_ an existing suffix for each new variable. Please note that the suffix is considered to be the part of the variable name _after the last underscore_.
\ No newline at end of file
+You can choose to either _append_ the suffix to each new variable, or to _replace_ an existing suffix for each new variable. Please note that the suffix is considered to be the part of the variable name _after the last underscore_.
diff --git a/docs/add-ons/pro-variables/settings.md b/docs/add-ons/pro-variables/settings.md
index d19a864a4..2fac0f70c 100644
--- a/docs/add-ons/pro-variables/settings.md
+++ b/docs/add-ons/pro-variables/settings.md
@@ -13,19 +13,21 @@
### Select Variable Managers
-Select the member groups that are allowed to manage the variables, rather than just editing their contents.
+Select the member groups that are allowed to manage the variables (create, modify settings, delete), rather than just editing their contents. Overall access to Pro Variables is controled in the Member Role settings under "Allowed add-on access," but by default only Super Admins can manage variables -- all other member roles will only have access to edit the variables.
### Clear cache
-If set to Yes, all native cache will be cleared after variables are saved. If set to Ask, a checkbox will appear next to the Save Changes button to optionally clear the cache. It will be unchecked by default with opt-in, checked by default with opt-out.
+If set to No, changing a Pro Variable will never clear the cache. If set to Yes, all native cache will be cleared whenever any variables are saved. If set to "Optionally", you will see two buttons: "Save Variables" and "Save and Clear Cache" to optionally clear the cache.
### Enable early parsing?
-Choose if variables can be parsed early in the parsing order; before or after existing Snippets and config-variables. Yes, before Snippets will parse early parsed Pro Variables before Snippets and variables set in config.php; Yes, after Snippets will parse them after.
+This controls the overall ability for Pro Variables to be parsed early in the parsing order. By default, which is "No," all Pro Variables will be parsed quite late in the parsing order (i.e. when Global Variables are parsed). If set to Yes at all, then you can control the parsing timing of each individual Pro Variable. If set to "Yes, before Snippets," early parsing will happen just before existing Template Partials and config variables are parsed, which means they can include Partials. If set to "Yes, after Snippets," that means EE will parse (chosen) Pro Variables just after Template Partials and variables set in config.php, so you can include Pro Variables in those places.
+
+NOTE: You also need to turn on early parsing for each individual variable you want to exhibit this behavior.
WARN: Use caution when turning on this feature, as users could potentially break your templates!
### Variable types
-Here you can find a list of available Variable Types and Pro Variables compatible Field Types. Select which types you want to enable. Disabled types will not appear in the module.
+Here you can find a list of available Variable Types — Pro Variables-compatible Field Types. Select which types you want to enable. Disabled types will not be made available in the module.
diff --git a/docs/add-ons/pro-variables/tags.md b/docs/add-ons/pro-variables/tags.md
index d1c45c2bb..864b3eea2 100644
--- a/docs/add-ons/pro-variables/tags.md
+++ b/docs/add-ons/pro-variables/tags.md
@@ -17,7 +17,7 @@ In most cases, the simple global variable syntax, eg. `{my_var}` will do. Global
{exp:pro_variables:parse var="my_var"}
-Use the Parse, Single or Pair tag to parse variables during the Module & Plugin stage. You can also use parameters, which will allow for more options than just using the variable syntax. Some variable types, like RTE and Grid, require using the tag syntax to trigger additional processing.
+Use the Parse, Single or Pair tags to parse variables during the Module & Plugin stage of template parsing. Parse can be used as either a single or a pair tag - but that can sometimes confuse the EE parser if it's in use both ways in a template. Like all `exp:` tags, these can be assigned parameters, which will allow for more options than just using the variable syntax. Some variable types, like File, RTE and Grid, require using the tag syntax to trigger additional processing.
TIP: TIP: **{ee:u}** Learn more about the parsing stages at [ExpressionEngine University](https://u.expressionengine.com/course/ee-conf-spring-summit-2021/eeconf-spring-2021-but-first-parse-order-and-php-in-expressionengines-templates).
@@ -27,7 +27,7 @@ NOTE: **Note:** Whenever you need parameters or additional processing, use the *
#### `var`
-Name of the variable you want to parse. Use a colon to separate site name and variable name if you want to parse a variable belonging to a specific site, eg. `my_site:my_var`. If this parameter is omitted, all Pro Variables inside the tag pair are simply replaced with their values.
+Name of the variable you want to parse. If you're using multi-site manager, use a colon to separate site name and variable name if you want to parse a variable belonging to a specific site, e.g. `my_site:my_var`. If the var parameter is omitted (it is optional with a tag pair), all Pro Variables inside the tag pair are replaced with their values.
#### `multiple`
@@ -37,30 +37,31 @@ If set to `yes`, the tag will loop through the different values of the variable.
Use in combination with `multiple="yes"` to limit the number of results displayed.
-
#### _3rd party_
If you’re displaying a 3rd party field type, you can use all parameters you would normally use for the field channel variable pair.
-### Variables
+### Variable Options
+
+NOTE: **Note:** Some of these `{my_var:…}` variable options are available _only_ when using the Parse tag pair or Pair tag pair, _and_ if the variable type allows multiple items to be selected. For more options on the native variable types, [check their properties](/add-ons/pro-variables/type.md).
-#### `{_my_var_:data}`
+#### `{my_var:data}`
The variable value.
-#### `{_my_var_:data_label}`
+#### `{my_var:data_label}`
The variable value’s label, when displaying a Checkbox Group, Radio Group or Select variable type.
-#### `{_my_var_:label}`
+#### `{my_var:label}`
The variable label, as displayed in the Control Panel.
-#### `{_my_var_:count}`
+#### `{my_var:count}`
Current count of the loop.
-#### `{_my_var_:total_results}`
+#### `{my_var:total_results}`
Total of iterations of the loop.
@@ -68,7 +69,15 @@ Total of iterations of the loop.
If you’re displaying a 3rd party field type, you can use all variables you would normally use inside the field channel variable pair.
-NOTE: **Note:** the `{_my_var_:…}` variables are _only_ available when using the Parse tag pair or Pair tag pair, _and_ if the variable type allows multiple items to be selected. For more options on the native variable types, [check their properties](/add-ons/pro-variables/type.md).
+### Variable Modifiers
+
+You can use [variable modifiers](templates/variable-modifiers.md) on Pro Variables when using them in a tag pair.
+
+ {exp:pro_variables:parse}
+ Encrypted text var: {my_text:encrypt}
+ {/exp:pro_variables:parse}
+
+### Code Examples
{exp:pro_variables:parse var="my_site:my_var"}
@@ -97,15 +106,15 @@ In order to avoid conflicts with multiple instances of the Parse tag, both singl
## Pair tag
- {exp:pro_variables:pair var="my_var"}{/exp:pro_variables:pair}
+ {exp:pro_variables:pair var="my_var"}{my_var:data}{/exp:pro_variables:pair}
In order to avoid conflicts with multiple instances of the Parse tag, both single and paired, you can use the alias `{exp:pro_variables:pair}` for tag pair use. It is identical to the Parse tag, but meant for tag pair use only.
-You can also use [variable modifiers](templates/variable-modifiers.md) on pro variables when using them in a tag pair:
+You can also use [variable modifiers](templates/variable-modifiers.md) on Pro Variables when using them in a tag pair:
- {exp:pro_variables:parse}
+ {exp:pro_variables:pair var="my_text"}
Encrypted text var: {my_text:encrypt}
- {/exp:pro_variables:parse}
+ {/exp:pro_variables:pair}
## Label tag
@@ -117,29 +126,33 @@ You can display the label of any variable by using this tag. Use as single tag o
#### `var`
-Name of the variable you want to fetch the label from. Use a colon to separate site name and variable name if you want to parse a variable belonging to a specific site, eg. `my_site:my_var`. _This is a required parameter_.
+Name of the variable you want to fetch the label from. Use a colon to separate site name and variable name if you want to parse a variable belonging to a specific site, e.g. `my_site:my_var`. _This is a required parameter_.
## Options tag
+ {exp:pro_variables:options var="my_site:my_multi_var"}
+
+ {/exp:pro_variables:options}
+
This tag pair allows you to display the options for a given variable. Use this in combination with the **Checkbox Group**, **Radio Group** and **Select** variable types.
### Parameters
#### `var`
-Name of the variable you want to parse. Use a colon to separate site name and variable name if you want to parse a variable belonging to a specific site, eg. `my_site:my_var`. _This is a required parameter_.
+Name of the variable you want to parse e.g. `var="my_var"` . Use a colon to separate site name and variable name if you want to parse a variable belonging to a specific site, eg. `my_site:my_var`. _This is a required parameter_.
-### Variables
+### Variables and Variable Options
-#### `{_my_var_:data}`
+#### `{my_var:data}`
Value of the option.
-#### `{_my_var_:data_label}`
+#### `{my_var:data_label}`
Associated label of the value.
-#### `{_my_var_:label}`
+#### `{my_var:label}`
Label of the variable itself.
@@ -161,7 +174,9 @@ The total amount of options.
#### `{count}`
-The count out of the current option.
+The count of the current option.
+
+### Code Examples
{exp:pro_variables:options var="my_multi_var"}
{if count == 1}
{/if}
diff --git a/docs/add-ons/pro-variables/type.md b/docs/add-ons/pro-variables/type.md
index 438b193b8..74a81be79 100644
--- a/docs/add-ons/pro-variables/type.md
+++ b/docs/add-ons/pro-variables/type.md
@@ -7,7 +7,7 @@
@license https://expressionengine.com/license Licensed under Apache License, Version 2.0
-->
-# Variable types
+# Pro Variable Types
Pro Variables comes with **over a dozen variable types**. Each type has its own specific settings. You can select which types are available by (de)selecting them in the [settings](/add-ons/pro-variables/settings.md).
@@ -42,11 +42,11 @@ Character to separate multiple values. Either a new line (`\n`), a pipe (`|`) or
Displays a date picker. To output anything other than a timestamp, use the `{exp:pro_variables:single}` tag. This takes the same parameters as the native Date field. Additionally, use `modifier="relative"` to output a relative date string.
-### Code examples
+### Code example
- {exp:pro_variables:single var="my_var" format="%Y-%m-%d"}
+ {exp:pro_variables:single var="my_date_var" format="%Y-%m-%d"}
- {exp:pro_variables:single var="my_var" modifier="relative"}
+ {exp:pro_variables:single var="my_date_var" modifier="relative"}
## File
@@ -58,6 +58,16 @@ Uses the native [File field](/fieldtypes/file.md). To output the variable, alway
Allows applying modifiers, which, among other, are used to apply [on-the-fly image manipulations](/fieldtypes/file.md#on-the-fly-image-manipulations) to files
+### Code example
+
+ {exp:pro_variables:pair var="my_file_var"}
+
+
+ Photo by {my_file_var:credit}
+
+ {my_file_var:description}
+ {/exp:pro_variables:pair}
+
## Grid
Uses the native [Grid field](/fieldtypes/grid.md). All native types are available, _except for Relationships and Members_. To output the variable, use the `{exp:pro_variables:pair}` or `{exp:pro_variables:single}` tag where appropriate. You can use any of Grid’s [parameters](/fieldtypes/grid.md#parameters) and [variables](/fieldtypes/grid.md#variables) using these tags. Additionally, one more parameter is available:
@@ -68,17 +78,9 @@ Uses the native [Grid field](/fieldtypes/grid.md). All native types are availabl
Any of the available [modifiers](/fieldtypes/grid.md#modifiers), which will trigger the output the modifier provides.
-### Code examples
-
- {exp:pro_variables:pair var="my_var"}
-
-
- Photo by {my_var:credit}
-
- {my_var:description}
- {/exp:pro_variables:pair}
+### Code example
- {exp:pro_variables:single var="my_var" modifier="total_rows"}
+ {exp:pro_variables:single var="my_grid_var" modifier="total_rows"}
## Radio Group
@@ -257,10 +259,11 @@ The short name of the Image Manipulation you want to output. Alternatively, you
### Code examples
- {exp:pro_variables:single var="lv_files_var" manipulation="squared"}
+ {exp:pro_variables:single var="my_files_var" manipulation="squared"}
+
+ {exp:pro_variables:pair var="my_files_var"}
+
- {exp:pro_variables:pair var="lv_files_var"}
-
{/exp:pro_variables:pair}
## Table
@@ -292,13 +295,15 @@ Limit the number of rows displayed.
### Code examples
- {exp:pro_variables:pair var="lv_table_var"}
+ {exp:pro_variables:pair var="my_table_var"}
+
{if count == 1}
{/if}
{/exp:pro_variables:pair}
- {exp:pro_variables:pair var="lv_table_var" sort="random" limit="1"}
+
+ {exp:pro_variables:pair var="my_table_var" sort="random" limit="1"}
Random link: {cell_2}
{/exp:pro_variables:pair}
@@ -343,6 +348,7 @@ If enabled, it will display the textarea as a monospaced, light-on-dark input fi
If set to _Yes_, the field will be shown in full width.
### Parameters
+
When using the module tags to display a Textarea variable, you can use additional parameters to further customize the output:
#### `formatting`
@@ -355,14 +361,16 @@ To be used in combination with `format`. Possible values: `none`, `safe` or `all
#### `preparse:_my_var_`
-If the variable content contains variables that need to be parsed before it is put in the template, you can use this parameter, similar to [embed variables](/templates/embedding.md#embedding-variables). For example: setting the parameter `preparse:foo="bar"` will replace the variable `{preparse:foo}` with `bar` in the variable content.
+If the variable content itself contains variables that ought to be parsed before the Pro Variable is put in the template, you can use this parameter. It's similar to [embed variables](/templates/embedding.md#embedding-variables). For example: setting the parameter `preparse:foo="bar"` will replace `{preparse:foo}` with `bar` in the variable content.
#### `preparse_prefix`
-See above, change the default variable prefix from `preparse` to something else. For example, the parameters `preparse:foo="bar" preparse_prefix="lv"` will replace the variable `{lv:foo}` with `bar` inside the variable content.
+Used with pre-parsing, this changes the default variable prefix from `preparse` to something else. For example, the parameters `preparse_prefix="pv" preparse:foo="bar"` will replace `{pv:foo}` with `bar` inside the variable content.
### Code examples
{exp:pro_variables:single var="my_var" formatting="xhtml" html="all"}
- {exp:pro_variables:single var="my_var" preparse:entry_id="12"}
\ No newline at end of file
+ {!-- for a variable that has {pv:entry_id} and {pv:cat_id} in its content --}
+ {exp:pro_variables:single var="my_var" preparse:entry_id="12" preparse:cat_id="9" preparse_prefix="pv"}
+
diff --git a/docs/add-ons/pro-variables/upgrade-from-low-variables.md b/docs/add-ons/pro-variables/upgrade-from-low-variables.md
index 62026e563..fbb0e9aa9 100644
--- a/docs/add-ons/pro-variables/upgrade-from-low-variables.md
+++ b/docs/add-ons/pro-variables/upgrade-from-low-variables.md
@@ -14,4 +14,6 @@ In the ExpressionEngine v7.0.0 release, Pro Variables was added added as a nativ
However, best practice in this situation requires 2 additional steps:
- Remove the old add-on folder system/user/addons/low_variables.
-- Replace the old format `{exp:low_variables:` tags with new `{exp:pro_variables:` format. This can be done with the Find and Replace utility found in `Tools - Utilities - Search and Replace`. It is recommended that you save a database backup before making this change. Then simply search for `{exp:low_variables:` and replace with `{exp:pro_variables:`.
\ No newline at end of file
+- Replace the old format `{exp:low_variables:` tags with new `{exp:pro_variables:` format.
+
+This can be done with the (Find and Replace utility)[control-panel/utilities/data-operations.md#data-search-and-replace] found in `Tools - Utilities - Search and Replace`. It is highly recommended that you save a database backup before making this change. Then search in ALL templates for `{exp:low_variables:` and replace with `{exp:pro_variables:` and for `{/exp:low_variables:` and replace with `{/exp:pro_variables:`
diff --git a/docs/channels/entries.md b/docs/channels/entries.md
index 8df31b26b..b0c30bc9a 100755
--- a/docs/channels/entries.md
+++ b/docs/channels/entries.md
@@ -177,7 +177,7 @@ The syntax for the disable parameter is this: `disable="ITEM YOU WANT TO DISABLE
- `relationship_custom_fields`
- `relationship_categories`
-NOTE: **Note:** If you disable categories, category fields will automatically be disabled.
+NOTE: **Note:** If you disable categories, category fields will automatically be disabled. If you disable custom_fields, that includes relationships. If you disable relationships, [relationship_custom_fields and relationship_categories](fieldtypes/relationships.md#optimizing-relationships-performance) will automatically be disabled.
You may specify multiple items to disable by separating them with the pipe character:
@@ -191,7 +191,7 @@ For example, let's say you are using an instance of your channel tag to show you
{title}
{/exp:channel:entries}
-In this example you are only showing the title of your entries and nothing else; yet, the channel tag automatically fetches categories and other data. Using the disable= parameter you can turn off the unneeded features from being queried. In this case, you don't need any of the features that can be disabled.
+In this example you are only showing the title of your entries and nothing else; yet, the channel tag automatically fetches categories and other data. Using the disable= parameter you can turn off the unneeded features from being queried. In this case, you don't need any of the features and they all can be disabled.
{exp:channel:entries orderby="date" sort="desc" limit="10" disable="categories|custom_fields|member_data|pagination"}
{title}
diff --git a/docs/development/addon-development-overview.md b/docs/development/addon-development-overview.md
index 376b6e413..e68705204 100644
--- a/docs/development/addon-development-overview.md
+++ b/docs/development/addon-development-overview.md
@@ -34,6 +34,8 @@ These are just a few ideas of what you can do with custom add-ons. The possibili
## Getting Started
Getting started making an add-on is incredibly easy with the CLI. To begin making an add-on, simply use the [`make:addon` command](/cli/built-in-commands/make-addon.md) from the [CLI](/cli/intro.md).
+NOTE: Add-ons generated in the latest version of ExpressionEngine are not guaranteed to be backwards compatible with other major versions of ExpressionEngine. If you need to support an older major version it is best to create the Add-on from that version of ExpressionEngine.
+
TIP: If you are working with an existing add-on, we recommend you start with [Modernizing add-ons](development/modernizing-existing-add-ons.md)
```
diff --git a/docs/fieldtypes/file.md b/docs/fieldtypes/file.md
index a244d3c37..b1a73563d 100755
--- a/docs/fieldtypes/file.md
+++ b/docs/fieldtypes/file.md
@@ -58,6 +58,16 @@ If you have defined any [image manipulations](control-panel/file-manager/upload-
{news_image:small}
+### Conditional Content Check
+
+If you want to see if there is a file selected, the easiest method is to check for the file URL:
+
+ {if news_image == ""}There is no news image selected.{/if}
+
+or even
+
+ {if news_image}File URL: {news_image}{/if}
+
### Wrap Parameter
You will frequently want to link to the file in your entry. Using the wrap parameter can simplify this process:
diff --git a/docs/fieldtypes/relationships.md b/docs/fieldtypes/relationships.md
index c843e3147..bf6034614 100755
--- a/docs/fieldtypes/relationships.md
+++ b/docs/fieldtypes/relationships.md
@@ -336,7 +336,7 @@ Would output in the format:
## Optimizing Relationships Performance
-If you are heavily using relationship fields, it is recommended that you disable certain features, such as custom fields or categories on related entries, to speed up template loading. That can be done by applying `disable` parameter to the `exp:channel:entries` tag that includes relationship field tag (or siblings / parents tag).
+If you are heavily using relationship fields, it is recommended that you disable certain features such as custom fields or categories on the related entries to speed up template loading. That can be done by applying the [`disable` parameter](/channels/entries.md#disable) to the `exp:channel:entries` tag that includes the relationship field tag (or siblings / parents tag).
The following items can be turned off:
diff --git a/docs/general/member-import-xml-format.md b/docs/general/member-import-xml-format.md
index ae54db10b..87980c547 100755
--- a/docs/general/member-import-xml-format.md
+++ b/docs/general/member-import-xml-format.md
@@ -92,7 +92,7 @@ NOTE: **Note:** If you import encrypted passwords of one type and your Expressio
- ``
- ``
- ``
-- ``
+- ``
- ``
- ``
- ``
diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md
index c330eca12..3114f4831 100755
--- a/docs/installation/changelog.md
+++ b/docs/installation/changelog.md
@@ -8,6 +8,57 @@
-->
# ExpressionEngine v7 Change Log
+## Version 7.5.18
+(Release: December 3rd, 2025)
+
+
+**Bug Fixes** 🐛
+
+- Resolved [#4399](https://github.com/ExpressionEngine/ExpressionEngine/issues/4399) where Structure URI for a cloned entry differed from the cloned URL Title [#4819](https://github.com/ExpressionEngine/ExpressionEngine/pull/4819)
+- Resolved [#3556](https://github.com/ExpressionEngine/ExpressionEngine/issues/3556) where some date fields could not accommodate dates past year 2038 [#4855](https://github.com/ExpressionEngine/ExpressionEngine/pull/4855)
+- Resolved [#4899](https://github.com/ExpressionEngine/ExpressionEngine/issues/4899) where submitting a Channel Form in MSM with a site parameter could overwrite site_pages [#4911](https://github.com/ExpressionEngine/ExpressionEngine/pull/4911)
+- Resolved [#4894](https://github.com/ExpressionEngine/ExpressionEngine/issues/4894) where File Manager “New Folder” created a folder in the wrong location [#4916](https://github.com/ExpressionEngine/ExpressionEngine/pull/4916)
+- Resolved [#4967](https://github.com/ExpressionEngine/ExpressionEngine/issues/4967) where it was possible to create an Upload Directory in the site base directory [#4978](https://github.com/ExpressionEngine/ExpressionEngine/pull/4978)
+- Fixed a bug in the updater where DB connection did not include all available options [#5019](https://github.com/ExpressionEngine/ExpressionEngine/pull/5019)
+- Resolved [#5017](https://github.com/ExpressionEngine/ExpressionEngine/issues/5017) where “Save and Close” on Role edit redirected to a non-existing page [#5028](https://github.com/ExpressionEngine/ExpressionEngine/pull/5028)
+- Resolved [#5010](https://github.com/ExpressionEngine/ExpressionEngine/issues/5010) where image dimensions in CP were displayed as height × width [#5029](https://github.com/ExpressionEngine/ExpressionEngine/pull/5029)
+- Resolved [#5044](https://github.com/ExpressionEngine/ExpressionEngine/issues/5044) by adding missing keys for file_name and title [#5049](https://github.com/ExpressionEngine/ExpressionEngine/pull/5049)
+- Resolved [#4566](https://github.com/ExpressionEngine/ExpressionEngine/issues/4566) where filtering file models by file_name had poor performance [#5051](https://github.com/ExpressionEngine/ExpressionEngine/pull/5051)
+- Resolved [#5052](https://github.com/ExpressionEngine/ExpressionEngine/issues/5052) IP2Nation install issue [#5053](https://github.com/ExpressionEngine/ExpressionEngine/pull/5053)
+- Resolved [#5060](https://github.com/ExpressionEngine/ExpressionEngine/issues/5060) where category tree data did not include all category columns [#5061](https://github.com/ExpressionEngine/ExpressionEngine/pull/5061)
+- Resolved a performance issue in the CP Relationship field with many categories [#5063](https://github.com/ExpressionEngine/ExpressionEngine/pull/5063)
+- Fixed PHP deprecation error [#5074](https://github.com/ExpressionEngine/ExpressionEngine/pull/5074)
+
+**Enhancements** ✨
+
+- Added ability to set headers on AJAX responses, addressing [#4973](https://github.com/ExpressionEngine/ExpressionEngine/issues/4973) [#4983](https://github.com/ExpressionEngine/ExpressionEngine/pull/4983)
+- Parse `{file:XX:description}` tags in textarea and RTE fields, addressing [#5013](https://github.com/ExpressionEngine/ExpressionEngine/issues/5013) [#5032](https://github.com/ExpressionEngine/ExpressionEngine/pull/5032)
+- Made Drag and drop list the default for multi-select in the Select interface [#5034](https://github.com/ExpressionEngine/ExpressionEngine/pull/5034)
+- Added database cache driver to the caching library [#5041](https://github.com/ExpressionEngine/ExpressionEngine/pull/5041)
+- Updated React Select to use a virtualized list of options [#5062](https://github.com/ExpressionEngine/ExpressionEngine/pull/5062)
+- Optimized spam training [#5072](https://github.com/ExpressionEngine/ExpressionEngine/pull/5072)
+
+**Developers** 💻
+
+- Removed JIRA collector integration [#5035](https://github.com/ExpressionEngine/ExpressionEngine/pull/5035)
+- Added file and line number to dump() and dd() [#5042](https://github.com/ExpressionEngine/ExpressionEngine/pull/5042)
+- Added caching tests [#5043](https://github.com/ExpressionEngine/ExpressionEngine/pull/5043)
+- Added PHP CLI script for bumping EE version [#5045](https://github.com/ExpressionEngine/ExpressionEngine/pull/5045)
+- Added Pro Search tests [#5078](https://github.com/ExpressionEngine/ExpressionEngine/pull/5078)
+- Moved table creation to the normal process [#5080](https://github.com/ExpressionEngine/ExpressionEngine/pull/5080)
+
## Version 7.5.17
(Release: October 27th, 2025)
diff --git a/docs/member/edit-profile.md b/docs/member/edit-profile.md
index 81689ee59..55e64e8c4 100644
--- a/docs/member/edit-profile.md
+++ b/docs/member/edit-profile.md
@@ -15,7 +15,7 @@
exp:member:edit_profile
-This template tag allows editing a member's profile using the form that is similar to [Channel Form](channels/channel-form/overview.md). Please note however that not all Channel Form parameters and template tags are available in the Member Profile form, so make sure to consult the documentation below. The form can only be used to update profile of the member that is currently logged in.
+This template tag allows editing a member's profile using the form that is similar to [Channel Form](channels/channel-form/overview.md). Please note however that not all Channel Form parameters and template tags are available in the Member Profile form, so make sure to consult the documentation below. The form can only be used to update profile of the member that is currently logged in. Only custom member fields set to show publically can be edited by non-Super Admin.
{{embed:_tips/form-validation.md}}
diff --git a/docs/optimization/caching.md b/docs/optimization/caching.md
index eebc48e21..b4e0cfa48 100755
--- a/docs/optimization/caching.md
+++ b/docs/optimization/caching.md
@@ -55,7 +55,7 @@ Enable this feature only if you **do not** use future entries, expiring entries,
## Query Disabling
-The disable= parameter is available in the {exp:channel:entries} tag. It allows you to turn off aspects of the tag that you might not be using in order to improve performance. The channel tag is designed to fetch a lot of information by default: Categories, fields, member data, etc. Depending on how you use the tag, some of this data may not be needed. Through the use of the "disable" parameter you can turn off aspects of the tag in order to make it more lightweight.
+The disable= parameter is available in the [{exp:channel:entries} tag](channels/entries.md#disable). It allows you to turn off aspects of the tag that you might not be using in order to improve performance. The channel tag is designed to fetch a lot of information by default: Categories, fields, member data, etc. Depending on how you use the tag, some of this data may not be needed. Through the use of the "disable" parameter you can turn off aspects of the tag in order to make it more lightweight.
The syntax for the disable parameter is this: disable="ITEM YOU WANT TO DISABLE". There are five items that can be turned off: