Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ asciidoc:
# Fallback versions
# We try to fetch the latest versions from GitHub at build time
# --
full-version: 26.1.9
latest-redpanda-tag: 'v26.1.9'
full-version: 26.1.10
latest-redpanda-tag: 'v26.1.10'
latest-console-tag: 'v3.3.1'
latest-release-commit: 'ebee215fdb2b8004735c6f800e532564cdcc05e1'
latest-operator-version: 'v2.3.8-24.3.6'
Expand Down
48 changes: 25 additions & 23 deletions docs-data/property-overrides.json
Original file line number Diff line number Diff line change
Expand Up @@ -607,8 +607,7 @@
},
"compaction.strategy": {
"description": "Specifies the strategy used to determine which records to remove during log compaction. The compaction strategy controls how Redpanda identifies and removes duplicate records while preserving the latest value for each key.",
"related_topics": [
],
"related_topics": [],
"config_scope": "topic"
},
"compaction_ctrl_update_interval_ms": {
Expand Down Expand Up @@ -792,7 +791,14 @@
"config_scope": "topic"
},
"delete_topic_enable": {
"version": "v26.1.1"
"type": "boolean",
"default": true,
"description": "Controls whether topics can be deleted through the Kafka DeleteTopics API. When set to `false`, all topic deletion requests are rejected for all users, including superusers. Use this as a cluster-wide safety setting to prevent accidental topic deletion in production environments.\n\nFor per-topic deletion protection, see xref:reference:properties/cluster-properties.adoc#kafka_nodelete_topics[`kafka_nodelete_topics`].",
"related_topics": [
"xref:reference:properties/cluster-properties.adoc#kafka_nodelete_topics[`kafka_nodelete_topics`]",
"xref:get-started:licensing/index.adoc[enterprise license]"
],
"config_scope": "cluster"
},
"developer_mode": {
"description": "CAUTION: Enabling `developer_mode` isn't recommended for production use.\n\nEnable developer mode, which skips most of the checks performed at startup.",
Expand Down Expand Up @@ -898,14 +904,12 @@
},
"flush.bytes": {
"description": "The maximum bytes not fsynced per partition. If this configured threshold is reached, the log is automatically fsynced, even though it wasn't explicitly requested.",
"related_topics": [
],
"related_topics": [],
"config_scope": "topic"
},
"flush.ms": {
"description": "The maximum delay (in ms) between two subsequent fsyncs. After this delay, the log is automatically fsynced.",
"related_topics": [
],
"related_topics": [],
"config_scope": "topic"
},
"http_authentication": {
Expand Down Expand Up @@ -959,8 +963,7 @@
},
"iceberg_enabled": {
"description": "Enables the translation of topic data into Iceberg tables. Setting `iceberg_enabled` to `true` activates the feature at the cluster level, but each topic must also set the `redpanda.iceberg.enabled` topic-level property to `true` to use it. If `iceberg_enabled` is set to `false`, then the feature is disabled for all topics in the cluster, overriding any topic-level settings.",
"related_topics": [
],
"related_topics": [],
"config_scope": "cluster"
},
"iceberg_invalid_record_action": {
Expand Down Expand Up @@ -1062,6 +1065,9 @@
"description": "Warehouse to use for the Iceberg REST catalog. Redpanda queries the catalog to retrieve warehouse-specific configurations and automatically configures settings like the appropriate prefix. The prefix is appended to the catalog path (for example, `/v1/\\{prefix}/namespaces`).",
"config_scope": "cluster"
},
"iceberg_schema_case_insensitive": {
"version": "v26.1.10"
},
"iceberg_target_backlog_size": {
"description": "Average size per partition of the datalake translation backlog that the backlog controller tries to maintain. When the backlog size is larger than the set point, the backlog controller will increase the translation scheduling group priority.",
"config_scope": "cluster"
Expand Down Expand Up @@ -1548,9 +1554,15 @@
"oidc_group_claim_path": {
"version": "v26.1.1"
},
"oidc_http_proxy_password": {
"version": "v26.1.10"
},
"oidc_http_proxy_url": {
"version": "v26.1.7"
},
"oidc_http_proxy_username": {
"version": "v26.1.10"
},
"oidc_principal_mapping": {
"description": "Rule for mapping JWT payload claim to a Redpanda user principal.",
"related_topics": [
Expand Down Expand Up @@ -1676,6 +1688,10 @@
"category": "redpanda",
"description": "A label that identifies a failure zone. Apply the same label to all brokers in the same failure zone. When xref:reference:properties/cluster-properties.adoc#enable_rack_awareness[enable_rack_awareness] is set to `true` at the cluster level, the system uses the rack labels to spread partition replicas across different failure zones."
},
"raft_election_timeout_ms": {
"exclude_from_docs": true,
"config_scope": "cluster"
},
"raft_max_buffered_follower_append_entries_bytes_per_shard": {
"description": "The total size of append entry requests that may be cached per shard, using the Raft-buffered protocol. When an entry is cached, the leader can continue serving requests because the ordering of the cached requests cannot change. When the total size of cached requests reaches the set limit, back pressure is applied to throttle producers.",
"config_scope": "cluster"
Expand Down Expand Up @@ -2276,20 +2292,6 @@
],
"config_scope": "cluster",
"description": "The default write caching mode to apply to user topics. Write caching acknowledges a message as soon as it is received and acknowledged on a majority of brokers, without waiting for it to be written to disk. With `acks=all`, this provides lower latency while still ensuring that a majority of brokers acknowledge the write. \n\nFsyncs follow <<raft_replica_max_pending_flush_bytes,`raft_replica_max_pending_flush_bytes`>> and <<raft_replica_max_flush_delay_ms,`raft_replica_max_flush_delay_ms`>>, whichever is reached first.\n\nThe `write_caching_default` cluster property can be overridden with the xref:reference:properties/topic-properties.adoc#write-caching[`write.caching`] topic property."
},
"delete_topic_enable": {
"type": "boolean",
"default": true,
"description": "Controls whether topics can be deleted through the Kafka DeleteTopics API. When set to `false`, all topic deletion requests are rejected for all users, including superusers. Use this as a cluster-wide safety setting to prevent accidental topic deletion in production environments.\n\nFor per-topic deletion protection, see xref:reference:properties/cluster-properties.adoc#kafka_nodelete_topics[`kafka_nodelete_topics`].",
"related_topics": [
"xref:reference:properties/cluster-properties.adoc#kafka_nodelete_topics[`kafka_nodelete_topics`]",
"xref:get-started:licensing/index.adoc[enterprise license]"
],
"config_scope": "cluster"
},
"raft_election_timeout_ms": {
"exclude_from_docs": true,
"config_scope": "cluster"
}
}
}
43 changes: 0 additions & 43 deletions docs-data/redpanda-property-changes-v26.1.8-to-v26.1.9.json

This file was deleted.

55 changes: 55 additions & 0 deletions docs-data/redpanda-property-changes-v26.1.9-to-v26.1.10.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"comparison": {
"oldVersion": "v26.1.9",
"newVersion": "v26.1.10",
"timestamp": "2026-06-12T15:54:14.585Z"
},
"summary": {
"newProperties": 3,
"changedDefaults": 0,
"changedDescriptions": 0,
"changedTypes": 0,
"deprecatedProperties": 0,
"removedDeprecatedProperties": 0,
"removedProperties": 0,
"emptyDescriptions": 2
},
"details": {
"newProperties": [
{
"name": "iceberg_schema_case_insensitive",
"type": "string",
"default": "auto",
"description": "Schema field name comparison mode when matching Redpanda's schema against the one returned by the Iceberg catalog. Some catalogs (e.g. AWS Glue) return field names with inconsistent casing, requiring case-insensitive comparison. \"auto\" enables case-insensitive comparison when the catalog is AWS Glue, and exact comparison otherwise."
},
{
"name": "oidc_http_proxy_password",
"type": "string",
"default": null,
"description": "Password for HTTP Basic authentication to the OIDC forward proxy (oidc_http_proxy_url). Leave unset for an unauthenticated proxy. Both username and password must be set for credentials to be sent."
},
{
"name": "oidc_http_proxy_username",
"type": "string",
"default": null,
"description": "Username for HTTP Basic authentication to the OIDC forward proxy (oidc_http_proxy_url). Leave unset for an unauthenticated proxy. Both username and password must be set for credentials to be sent."
}
],
"changedDefaults": [],
"changedDescriptions": [],
"changedTypes": [],
"deprecatedProperties": [],
"removedDeprecatedProperties": [],
"removedProperties": [],
"emptyDescriptions": [
{
"name": "redpanda.remote.allowgaps",
"type": "boolean"
},
{
"name": "redpanda.virtual.cluster.id",
"type": "string"
}
]
}
}
Loading
Loading