Skip to content

Commit 5f8521a

Browse files
committed
Change RS 7.6 mentions to RS 7.8.2
1 parent e8ff20a commit 5f8521a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

content/operate/oss_and_stack/stack-with-enterprise/install/upgrade-module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The upgrade process does not validate the module upgrade arguments, and incorrec
8989

9090
- `module_args keep_args` to use the existing module arguments.
9191

92-
## Examples for Redis Software v7.6 and later
92+
## Examples for Redis Software v7.8.2 and later
9393

9494
The following module upgrade examples are supported for Redis Enterprise Software versions 7.8.2 and later:
9595

content/operate/rs/references/cli-utilities/rladmin/upgrade.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ As of Redis Enterprise Software version 7.8.2, `upgrade db` will always upgrade
4242
| Parameters | Type/Value | Description |
4343
|----------------------------|--------------------------|------------------------------------------------------------------------------------------------------------------------|
4444
| db | db:\<id\> <br />name | Database to upgrade |
45-
| and module | [upgrade module](#upgrade-module) command | Clause that allows the upgrade of a database and a specified Redis module in a single step with only one restart (can be specified multiple times). Deprecated as of Redis Enterprise Software v7.6. |
45+
| and module | [upgrade module](#upgrade-module) command | Clause that allows the upgrade of a database and a specified Redis module in a single step with only one restart (can be specified multiple times). Deprecated as of Redis Enterprise Software v7.8.2. |
4646
| discard_data | | Indicates that data will not be saved after the upgrade |
4747
| force | | Forces upgrade and skips warnings and confirmations |
4848
| force_discard | | Forces `discard_data` if replication or persistence is enabled |
4949
| keep_crdt_protocol_version | | Keeps the current CRDT protocol version |
50-
| keep_redis_version | | Upgrades to a new patch release, not to the latest major.minor version. Deprecated as of Redis Enterprise Software v7.6. To upgrade modules without upgrading the Redis database version, set `redis_version` to the current Redis database version instead. |
50+
| keep_redis_version | | Upgrades to a new patch release, not to the latest major.minor version. Deprecated as of Redis Enterprise Software v7.8.2. To upgrade modules without upgrading the Redis database version, set `redis_version` to the current Redis database version instead. |
5151
| latest_with_modules | | Upgrades the Redis Enterprise Software version and all modules in the database. As of Redis Enterprise Software version 7.8.2, `upgrade db` will always upgrade modules. |
5252
| parallel_shards_upgrade | integer <br />'all' | Maximum number of shards to upgrade all at once |
5353
| preserve_roles | | Performs an additional failover to guarantee the shards' roles are preserved |
@@ -74,7 +74,7 @@ Done
7474
7575
## `upgrade module`
7676
77-
Upgrades Redis modules in use by a specific database. Deprecated as of Redis Enterprise Software v7.6. Use [`upgrade db`](#upgrade-db) instead.
77+
Upgrades Redis modules in use by a specific database. Deprecated as of Redis Enterprise Software v7.8.2. Use [`upgrade db`](#upgrade-db) instead.
7878
7979
For more information, see [Upgrade modules]({{< relref "/operate/oss_and_stack/stack-with-enterprise/install/upgrade-module" >}}).
8080

content/operate/rs/references/rest-api/objects/bdb/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ An API object that represents a managed database in the cluster.
2929
| authorized_subjects | {{<code>}}[{<br /> "CN": string,<br /> "O": string,<br /> "OU": [array of strings],<br /> "L": string,<br /> "ST": string,<br /> "C": string<br />}, ...]{{</code>}} A list of valid subjects used for additional certificate validations during TLS client authentication. All subject attributes are case-sensitive.<br />**Required subject fields**:<br />"CN" for Common Name<br />**Optional subject fields:**<br />"O" for Organization<br />"OU" for Organizational Unit (array of strings)<br />"L" for Locality (city)<br />"ST" for State/Province<br />"C" for 2-letter country code |
3030
| auto_upgrade | boolean (default:&nbsp;false); Upgrade the database automatically after a cluster upgrade |
3131
| avoid_nodes | array of strings; Cluster node UIDs to avoid when placing the database's shards and binding its endpoints |
32-
| background_op | Deprecated as of Redis Enterprise Software v7.6. Use [`GET /v1/actions/bdb/<bdb_uid>`]({{<relref "/operate/rs/references/rest-api/requests/actions/bdb">}}) instead.<br />{{<code>}}[{<br /> "status": string,<br /> "name": string,<br /> "error": object,<br /> "progress": number<br />}, ...]{{</code>}} (read-only); **progress**: Percent of completed steps in current operation |
32+
| background_op | Deprecated as of Redis Enterprise Software v7.8.2. Use [`GET /v1/actions/bdb/<bdb_uid>`]({{<relref "/operate/rs/references/rest-api/requests/actions/bdb">}}) instead.<br />{{<code>}}[{<br /> "status": string,<br /> "name": string,<br /> "error": object,<br /> "progress": number<br />}, ...]{{</code>}} (read-only); **progress**: Percent of completed steps in current operation |
3333
| backup | boolean (default:&nbsp;false); Policy for periodic database backup |
3434
| backup_failure_reason | Reason of last failed backup process (read-only)<br />Values:<br />'no-permission'<br />'wrong-file-path'<br />'general-error' |
3535
| backup_history | integer (default:&nbsp;0); Backup history retention policy (number of days, 0 is forever) |
@@ -102,7 +102,7 @@ An API object that represents a managed database in the cluster.
102102
| memory_size | integer (default:&nbsp;0); Database memory limit (0 is unlimited), expressed in bytes. |
103103
| metrics_export_all | boolean; Enable/disable exposing all shard metrics through the metrics exporter |
104104
| mkms | boolean (default:&nbsp;true); Are MKMS (Multi Key Multi Slots) commands supported? |
105-
| module_list | {{<code>}}[{<br /> "module_id": string,<br /> "module_args": [<br /> u'string',<br /> u'null'],<br /> "module_name": string,<br /> "semantic_version": string<br />}, ...]{{</code>}} List of modules associated with the database<br /><br />**module_id**: Module UID (deprecated; use `module_name` instead)<br />**module_args**: Module command-line arguments (pattern does not allow special characters &,\<,>,")<br />**module_name**: Module's name<br />**semantic_version**: Module's semantic version (deprecated; use `module_args` instead)<br /><br />**module_id** and **semantic_version** are optional as of Redis Enterprise Software v7.4.2 and deprecated as of v7.6. |
105+
| module_list | {{<code>}}[{<br /> "module_id": string,<br /> "module_args": [<br /> u'string',<br /> u'null'],<br /> "module_name": string,<br /> "semantic_version": string<br />}, ...]{{</code>}} List of modules associated with the database<br /><br />**module_id**: Module UID (deprecated; use `module_name` instead)<br />**module_args**: Module command-line arguments (pattern does not allow special characters &,\<,>,")<br />**module_name**: Module's name<br />**semantic_version**: Module's semantic version (deprecated; use `module_args` instead)<br /><br />**module_id** and **semantic_version** are optional as of Redis Enterprise Software v7.4.2 and deprecated as of v7.8.2. |
106106
| mtls_allow_outdated_certs | boolean; An optional mTLS relaxation flag for certs verification |
107107
| mtls_allow_weak_hashing | boolean; An optional mTLS relaxation flag for certs verification |
108108
| name | string; Database name. Only letters, numbers, or hyphens are valid characters. The name must start and end with a letter or number. |

content/operate/rs/references/rest-api/requests/bdbs/upgrade.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ Upgrade a database.
5454
| Field | Type | Description |
5555
|-------|------|-------------|
5656
| force_restart | boolean | Restart shards even if no version change (default: false) |
57-
| keep_redis_version | boolean | Keep current Redis version (default: false). Deprecated as of Redis Enterprise Software v7.6. To upgrade modules without upgrading the Redis database version, set `redis_version` to the current Redis database version instead. |
57+
| keep_redis_version | boolean | Keep current Redis version (default: false). Deprecated as of Redis Enterprise Software v7.8.2. To upgrade modules without upgrading the Redis database version, set `redis_version` to the current Redis database version instead. |
5858
| keep_crdt_protocol_version | boolean | Keep current crdt protocol version (default: false) |
5959
| may_discard_data | boolean | Discard data in a non-replicated, non-persistent bdb (default: false) |
6060
| force_discard | boolean | Discard data even if the bdb is replicated and/or persistent (default: false) |
6161
| preserve_roles | boolean | Preserve shards' master/replica roles (requires an extra failover) (default: false) |
6262
| parallel_shards_upgrade | integer | Max number of shards to upgrade in parallel (default: all) |
63-
| modules | list of modules | List of dicts representing the modules that will be upgraded. As of Redis Enterprise Software v7.6, `current_module` and `new_module` are deprecated.<br></br>Each dict includes:<br></br>• `current_module`: uid of a module to upgrade (deprecated)<br></br>• `new_module`: uid of the module we want to upgrade to (deprecated)<br></br>• `new_module_args`: args list for the new module (no defaults for the three module-related parameters).
63+
| modules | list of modules | List of dicts representing the modules that will be upgraded. As of Redis Enterprise Software v7.8.2, `current_module` and `new_module` are deprecated.<br></br>Each dict includes:<br></br>• `current_module`: uid of a module to upgrade (deprecated)<br></br>• `new_module`: uid of the module we want to upgrade to (deprecated)<br></br>• `new_module_args`: args list for the new module (no defaults for the three module-related parameters).
6464
| redis_version | version number | Upgrades the database to the specified Redis version instead of the latest version. To upgrade modules without upgrading the Redis database version, set `redis_version` to the current Redis database version instead. |
65-
| latest_with_modules | boolean | Upgrades the database to the latest Redis version and latest supported versions of modules available in the cluster. (default: true as of v7.6) Deprecated as of Redis Enterprise Software v7.6. |
65+
| latest_with_modules | boolean | Upgrades the database to the latest Redis version and latest supported versions of modules available in the cluster. (default: true as of v7.8.2) Deprecated as of Redis Enterprise Software v7.8.2. |
6666

6767
### Response {#post-response}
6868

content/operate/rs/references/rest-api/requests/modules/upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ weight: $weight
1919

2020
POST /v1/modules/upgrade/bdb/{string: uid}
2121

22-
Upgrades the module version on a specific database. Deprecated as of Redis Enterprise Software v7.6. Use [`POST /v1/bdbs/<uid>/upgrade`]({{<relref "/operate/rs/references/rest-api/requests/bdbs/upgrade#post-bdbs-upgrade">}}) instead.
22+
Upgrades the module version on a specific database. Deprecated as of Redis Enterprise Software v7.8.2. Use [`POST /v1/bdbs/<uid>/upgrade`]({{<relref "/operate/rs/references/rest-api/requests/bdbs/upgrade#post-bdbs-upgrade">}}) instead.
2323

2424
#### Required permissions
2525

0 commit comments

Comments
 (0)