Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
6ae7090
Merge branch 'main' of github.com:opensearch-project/security into HEAD
derek-ho Nov 14, 2024
3177c34
Scaffolding for POST/DELETE/GET api tokens calls (#4921)
derek-ho Dec 16, 2024
dacdae5
Adds JTI and expiration field support for API Tokens (#4967)
derek-ho Dec 20, 2024
e255e14
Merge branch 'main' of github.com:opensearch-project/security into HEAD
derek-ho Dec 20, 2024
190bfec
Merge branch 'main' of github.com:opensearch-project/security into HEAD
derek-ho Jan 17, 2025
79f0c46
Api token authc/z implementation with Cache (#4992)
derek-ho Feb 4, 2025
a8b4ac1
Subset of permissions check on creation (#5012)
derek-ho Feb 21, 2025
3776667
Merge branch 'main' of github.com:opensearch-project/security into HEAD
derek-ho Mar 11, 2025
8750e8b
Change API token index actions to use action listeners and limit to 1…
derek-ho Mar 24, 2025
7b8b069
Merge branch 'main' into feature/api-tokens-cwperx
cwperks May 22, 2025
12c0f9c
Fix naming
cwperks May 22, 2025
896e9e2
Use one PrivilegesEvaluatorContext
cwperks May 22, 2025
97db90d
Handle authz
cwperks May 22, 2025
362e67f
fix unit tests
cwperks May 22, 2025
fa98ae2
Fix tests
cwperks May 23, 2025
f3cd485
Merge branch 'main' into feature/api-tokens-cwperx
cwperks May 27, 2025
68107ff
Add integrationTests for API Token
cwperks May 27, 2025
f5b965a
Add more integration tests
cwperks May 27, 2025
ba93aa3
Add token prefix
cwperks May 28, 2025
e35d3ef
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Jun 23, 2025
c028420
Rebase with main
cwperks Jun 23, 2025
109c1ef
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Jun 25, 2025
3a71078
Fix compilation issues
cwperks Jun 25, 2025
dad7551
Add to CHANGELOG
cwperks Jun 25, 2025
30f4f6f
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Jul 21, 2025
3f11a61
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Aug 25, 2025
eb512e3
Address PR feedback
cwperks Aug 25, 2025
93a0e4f
Attempt to resolve conflicts
cwperks Nov 25, 2025
bdd7d7f
Fix unit test
cwperks Nov 26, 2025
6c45459
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Mar 17, 2026
51c086f
Address PR feedback
cwperks Mar 17, 2026
cd47c36
Address comments
cwperks Mar 17, 2026
2780872
Use XContent parsing
cwperks Mar 17, 2026
720f72f
Address comments
cwperks Mar 17, 2026
c86b305
Fix test
cwperks Mar 17, 2026
64bee5f
Make API Tokens Opaque Strings
cwperks Mar 17, 2026
a0876e4
Update delete
cwperks Mar 17, 2026
78b5cbb
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Mar 24, 2026
0d867ed
Implement soft-delete for token revocation
cwperks Mar 25, 2026
eacd135
spotlessApply
cwperks Mar 25, 2026
eb1b7cd
Modify dashboards-info endpoint to include whether API tokens are ena…
cwperks Mar 26, 2026
037a6f8
Merge branch 'dashboards-token-enabled' into feature/api-tokens-cwperx
cwperks Mar 27, 2026
25b8bee
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Mar 27, 2026
a017555
Add max_token_expiration_seconds to token settings and also my expira…
cwperks Mar 27, 2026
62bbece
Add created_by
cwperks Mar 27, 2026
052e2f3
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Apr 7, 2026
4bbd6f0
Merge branch 'main' into feature/api-tokens-cwperx
cwperks Apr 7, 2026
c84edd2
Merge branch 'feature/api-tokens-cwperx' of https://github.com/cwperk…
cwperks Apr 7, 2026
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
58 changes: 58 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,63 @@
As of the 3.6 release [the CHANGELOG is no longer used](https://github.com/opensearch-project/OpenSearch/issues/21071) to generate release notes.
[Use this PR search](https://github.com/opensearch-project/security/pulls?q=sort%3Amerged-desc+is%3Apr+-label%3Askip-changelog+is%3Amerged+base%3Amain+) to browse unreleased changes.

## [Unreleased 3.x]
### Added

### Changed

### Features

### Enhancements
- Make security plugin aware of FIPS build param (-Pcrypto.standard=FIPS-140-3) ([#5952](https://github.com/opensearch-project/security/pull/5952))
- Hardens input validation for resource sharing APIs ([#5831](https://github.com/opensearch-project/security/pull/5831)
- Optimize getFieldFilter to only return a predicate when index has FLS restrictions for user ([#5777](https://github.com/opensearch-project/security/pull/5777))
- Introduce API Tokens with `cluster_permissions` and `index_permissions` directly associated with the token ([#5443](https://github.com/opensearch-project/security/pull/5443))
- Performance optimizations for building internal authorization data structures upon config updates ([#5988](https://github.com/opensearch-project/security/pull/5988))
- Make encryption_key optional for obo token authenticator ([#6017](https://github.com/opensearch-project/security/pull/6017)
- [Resource Sharing] Using custom action prefixes for sample resource plugin ([#6020](https://github.com/opensearch-project/security/pull/6020)
- Enable basic authentication for gRPC transport ([#6005](https://github.com/opensearch-project/security/pull/6005))
- Allow specifying parentType and parentIdField in ResourceProvider ([#5735](https://github.com/opensearch-project/security/pull/5735))
- [Resource Sharing] Allow specifying default access level in resource access levels yml file ([#6018](https://github.com/opensearch-project/security/pull/6018))

### Bug Fixes
- Fix audit log writing errors for rollover-enabled alias indices ([#5878](https://github.com/opensearch-project/security/pull/5878)
- Fix the issue of unprocessed X-Request-Id ([#5954](https://github.com/opensearch-project/security/pull/5954))
- Fix audit log `NONE` sentinel not respected for `disabled_rest_categories`, `disabled_transport_categories`, and `ignore_users` in dynamic configuration ([#6021](https://github.com/opensearch-project/security/pull/6021))
- Improve DLS error message to identify undefined user attributes when query substitution fails ([#5975](https://github.com/opensearch-project/security/pull/5975))
- Fix span propagation issue for tracing([#6006](https://github.com/opensearch-project/security/pull/6006))

### Refactoring

### Maintenance
- Bump `commons-codec:commons-codec` from 1.20.0 to 1.21.0 ([#5937](https://github.com/opensearch-project/security/pull/5937))
- Bump `at.yawk.lz4:lz4-java` from 1.10.2 to 1.10.4 ([#5938](https://github.com/opensearch-project/security/pull/5938), [#5994](https://github.com/opensearch-project/security/pull/5994), [#6028](https://github.com/opensearch-project/security/pull/6028))
- Bump `open_saml_shib_version` from 9.1.6 to 9.2.1 ([#5936](https://github.com/opensearch-project/security/pull/5936), [#5982](https://github.com/opensearch-project/security/pull/5982))
- Bump `com.google.googlejavaformat:google-java-format` from 1.33.0 to 1.35.0 ([#5947](https://github.com/opensearch-project/security/pull/5947), [#6011](https://github.com/opensearch-project/security/pull/6011))
- Bump `aws-actions/configure-aws-credentials` from 5 to 6 ([#5946](https://github.com/opensearch-project/security/pull/5946))
- Bump `ch.qos.logback:logback-classic` from 1.5.26 to 1.5.32 ([#5948](https://github.com/opensearch-project/security/pull/5948), [#5995](https://github.com/opensearch-project/security/pull/5995))
- Bump `com.github.seancfoley:ipaddress` from 5.5.1 to 5.6.2 ([#5949](https://github.com/opensearch-project/security/pull/5949), [#6010](https://github.com/opensearch-project/security/pull/6010))
- Bump `spring_version` from 7.0.3 to 7.0.6 ([#5957](https://github.com/opensearch-project/security/pull/5957), [#5967](https://github.com/opensearch-project/security/pull/5967), [#6008](https://github.com/opensearch-project/security/pull/6008))
- Bump `org.junit.jupiter:junit-jupiter-api` from 5.14.2 to 5.14.3 ([#5956](https://github.com/opensearch-project/security/pull/5956))
- Bump `org.checkerframework:checker-qual` from 3.53.0 to 3.54.0 ([#5955](https://github.com/opensearch-project/security/pull/5955), [#6009](https://github.com/opensearch-project/security/pull/6009))
- Bump `open_saml_version` from 5.1.6 to 5.2.1 ([#5965](https://github.com/opensearch-project/security/pull/5965))
- Bump `kafka_version` from 4.1.1 to 4.2.0 ([#5968](https://github.com/opensearch-project/security/pull/5968))
- Bump `actions/upload-artifact` from 6 to 7 ([#5980](https://github.com/opensearch-project/security/pull/5980))
- Bump `actions/download-artifact` from 7 to 8 ([#5979](https://github.com/opensearch-project/security/pull/5979))
- Bump `jakarta.xml.bind:jakarta.xml.bind-api` from 4.0.4 to 4.0.5 ([#5978](https://github.com/opensearch-project/security/pull/5978))
- Bump `org.springframework.kafka:spring-kafka-test` from 4.0.2 to 4.0.4 ([#5981](https://github.com/opensearch-project/security/pull/5981), [#6026](https://github.com/opensearch-project/security/pull/6026))
- Bump `com.carrotsearch.randomizedtesting:randomizedtesting-runner` from 2.8.3 to 2.8.4 ([#5993](https://github.com/opensearch-project/security/pull/5993))
- Bump `gradle-wrapper` from 9.2.0 to 9.4.0 ([#5996](https://github.com/opensearch-project/security/pull/5996))
- Bump `release-drafter/release-drafter` from 6 to 7 ([#6007](https://github.com/opensearch-project/security/pull/6007))
- Bump `net.bytebuddy:byte-buddy` from 1.18.4 to 1.18.7 ([#6012](https://github.com/opensearch-project/security/pull/6012))
- Bump `com.nimbusds:nimbus-jose-jwt` from 10.7 to 10.8 ([#6030](https://github.com/opensearch-project/security/pull/6030))
- Bump `org.eclipse.platform:org.eclipse.core.runtime` from 3.34.100 to 3.34.200 ([#6027](https://github.com/opensearch-project/security/pull/6027))
- Bump `com.autonomousapps.build-health` from 3.5.1 to 3.6.1 ([#6029](https://github.com/opensearch-project/security/pull/6029))

### Removed

### Documentation

[Unreleased 3.x]: https://github.com/opensearch-project/security/compare/3.5...main
Release notes are now auto-generated from PR metadata at release time using an LLM-based pipeline in [opensearch-build](https://github.com/opensearch-project/opensearch-build).
See the [release notes script](https://github.com/opensearch-project/opensearch-build/blob/main/src/release_notes_workflow/release_notes.py) and [LLM prompt](https://github.com/opensearch-project/opensearch-build/blob/main/src/release_notes_workflow/release_notes_prompt.txt) for details.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public void testDashboardsInfoValidationMessage() throws Exception {
assertThat(response, isOk());
assertThat(response.getTextFromJsonBody("/password_validation_error_message"), equalTo(DEFAULT_PASSWORD_MESSAGE));
assertThat(response.getTextFromJsonBody("/password_validation_regex"), equalTo(DEFAULT_PASSWORD_REGEX));
assertThat(response.getTextFromJsonBody("/api_tokens_enabled"), equalTo("false"));
}
}
}
Expand Down
Loading
Loading