Skip to content

Commit e387a21

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents 34dd901 + dd65ffb commit e387a21

File tree

3 files changed

+19
-32
lines changed

3 files changed

+19
-32
lines changed

changelog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
### (2025-11-03) What’s new in **ROR 1.67.1**
4+
* **🚀New** (ES) 9.2.0, 9.1.6, 8.19.6 support
5+
* **🧐 Enhancement** (ES) Allow using the `actions` rule with the `kibana` rule in the same block when `kibana.access: unrestricted`
6+
* **🐞 Fix** (KBN) Fixed JWT handling for wrong license edition
7+
* **🐞 Fix** (KBN) Suppressed “Forbidden” toast in Discover/Dashboard on Kibana 8.x–9.x
8+
* **🐞 Fix** (KBN) [Resolved report download failure on Kibana 9.1.x](ttps://forum.readonlyrest.com/t/unable-to-download-reports-from-kibana/2859/2)
9+
* **🐞 Fix** (KBN) Fixed timeout when saving Security settings
10+
* **🐞 Fix** (KBN) Restored visibility of reports when multiple data streams exist for a reporting index
11+
* **🐞 Fix** (KBN) Fixed invisible reports for non-tenancy users on Kibana 9.1.x
12+
313
### (2025-10-14) What’s new in **ROR 1.67.0**
414
* **🚨 Security Fix** (KBN) [CVE-2025-58754](https://nvd.nist.gov/vuln/detail/CVE-2025-58754)
515
* **🚨 Security Fix** (ES) [CVE-2025-58057](https://nvd.nist.gov/vuln/detail/CVE-2025-58057), [CVE-2025-58056](https://nvd.nist.gov/vuln/detail/CVE-2025-58056)
@@ -14,7 +24,7 @@
1424
* **🐞 Fix** (KBN) Index Management appeared in app search results even when the app was declared as hidden
1525
* **🐞 Fix** (KBN) Resolved an issue with CSRF token override when multiple browser tabs were open
1626
* **🐞 Fix** (KBN) Fixed OIDC compatibility for Kibana 7.10.2 and earlier
17-
* **🐞 Fix** (ES) Restored backward compatibility for custom audit log serializer implementations extending the `DefaultAuditLogSerializer` class. Custom serializers compiled against ROR 1.65 or 1.66 that use `DefaultAuditLogSerializer` must be recompiled to work correctly.
27+
* **🐞 Fix** (ES) Restored backward compatibility for custom audit log serializer implementations extending the `DefaultAuditLogSerializer` class. Custom serializers compiled against ROR 1.65 or 1.66 that use `DefaultAuditLogSerializer` must be recompiled to work correctly
1828
* **🐞 Fix** (ES) Fixed a defect that broke the "Snapshot and Restore" functionality in Kibana
1929

2030
### (2025-09-03) What's new in **ROR 1.66.1**

elasticsearch.md

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1293,33 +1293,6 @@ if (alertMessage) {
12931293
}
12941294
```
12951295

1296-
#### `kibana_access`
1297-
1298-
`kibana_access: ro`
1299-
1300-
**⚠️Deprecated**: it's equivalent of [`kibana.access`](elasticsearch.md#access). Should no longer be used.
1301-
1302-
#### `kibana_index`
1303-
([Enterprise](https://readonlyrest.com/enterprise))
1304-
1305-
`kibana_index: .kibana-user1`
1306-
1307-
**⚠️Deprecated**: it's equivalent of [`kibana.index`](elasticsearch.md#index). Should no longer be used.
1308-
1309-
#### `kibana_template_index`
1310-
([Enterprise](https://readonlyrest.com/enterprise))
1311-
1312-
`kibana_template_index: .kibana_template`
1313-
1314-
**⚠️Deprecated**: it's equivalent of [`kibana.template_index`](elasticsearch.md#template_index). Should no longer be used.
1315-
1316-
#### `kibana_hide_apps`
1317-
([PRO](https://readonlyrest.com/pro))
1318-
1319-
`kibana_hide_apps: [ "Security", "Enterprise Search"]`
1320-
1321-
**⚠️Deprecated**: it's equivalent of [`kibana.hide_apps`](elasticsearch.md#hide_apps). Should no longer be used.
1322-
13231296
### Elasticsearch level rules
13241297

13251298
#### `indices`

kibana.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -722,31 +722,35 @@ hide_apps: [ "<submenu-title|app-title|management-submenu-title|management-app-t
722722
* To hide a single management application, you can use:
723723

724724
```yaml
725-
kibana_hide_apps: [ "Management|Stack Management|Kibana|Tags" ]
725+
kibana:
726+
hide_apps: [ "Management|Stack Management|Kibana|Tags" ]
726727
```
727728

728729
In this case, only the Stack Management Tags application will be hidden
729730

730731
* To hide all management Kibana section applications, you can use:
731732

732733
```yaml
733-
kibana_hide_apps: [ "/^Management\\|Stack Management\\|(?!(Kibana)|$).*$/" ]:
734+
kibana:
735+
hide_apps: [ "/^Management\\|Stack Management\\|(?!(Kibana)|$).*$/" ]
734736
```
735737

736738
In this case, all Stack Management Kibana sections will be hidden
737739

738740
* To hide all management Kibana section applications except selected, you can use
739741

740742
```yaml
741-
kibana_hide_apps: ["/^Management\\|Stack Management\\|Kibana\\|(?!(Data Views|Tags)$).*$/"]
743+
kibana:
744+
hide_apps: ["/^Management\\|Stack Management\\|Kibana\\|(?!(Data Views|Tags)$).*$/"]
742745
```
743746

744747
In this case, all Stack Management Kibana section apps except Data Views and Tags will be hidden
745748

746749
* To hide all management applications except selected, you can use
747750

748751
```yaml
749-
kibana_hide_apps: ["/^Management\\|Stack Management\\|(?!(Kibana)|$).*$/", "/^Management\\|Stack Management\\|Kibana\\|(?!(Data Views|Tags)$).*$/"]
752+
kibana:
753+
hide_apps: ["/^Management\\|Stack Management\\|(?!(Kibana)|$).*$/", "/^Management\\|Stack Management\\|Kibana\\|(?!(Data Views|Tags)$).*$/"]
750754
```
751755

752756
In this case, all Stack Management apps except Data Views and Tags will be hidden

0 commit comments

Comments
 (0)