Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
12 changes: 3 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Features

* [Resource Sharing] Adds resource access management dashboard ([#2304](https://github.com/opensearch-project/security-dashboards-plugin/pull/2304))

### Enhancements
- Add experimental direct query permissions ([#2315](https://github.com/opensearch-project/security-dashboards-plugin/pull/2315))

### Bug Fixes

### Bug Fixes
- Filter blank backend role before creating internal user ([#2330](https://github.com/opensearch-project/security-dashboards-plugin/pull/2330))

### Refactoring


### Maintenance
- Bump `actions/checkout` from 4 to 5 ([#2295](https://github.com/opensearch-project/security-dashboards-plugin/pull/2295))
- Bump `derek-ho/start-opensearch` from 7 to 8 ([#2309](https://github.com/opensearch-project/security-dashboards-plugin/pull/2309))
- Bump `actions/github-script` from 7 to 8 ([#2307](https://github.com/opensearch-project/security-dashboards-plugin/pull/2307))
- Resolve CVE-2025-9288 CVE-2025-9287 CVE-2025-7783 CVE-2025-6547 ([#2317](https://github.com/opensearch-project/security-dashboards-plugin/pull/2317))
- Bump @derek-ho/start-opensearch to 9 ([#2319]https://github.com/opensearch-project/security-dashboards-plugin/pull/2319)


### Documentation



[Unreleased 3.x]: https://github.com/opensearch-project/security-dashboards-plugin/compare/3.2...main
[Unreleased 3.x]: https://github.com/opensearch-project/security-dashboards-plugin/compare/3.3...main
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export function InternalUserEdit(props: InternalUserEditDeps) {
const validAttributes = attributes.filter((v: UserAttributeStateClass) => v.key !== '');

const updateObject: InternalUserUpdate = {
backend_roles: backendRoles,
backend_roles: backendRoles.filter((role) => role.trim() !== ''),
attributes: unbuildAttributeState(validAttributes),
};

Expand Down
Loading