Bump co.elastic.clients:elasticsearch-java from 8.14.3 to 9.1.3#417
Closed
dependabot[bot] wants to merge 1 commit intodevelopfrom
Closed
Conversation
Bumps [co.elastic.clients:elasticsearch-java](https://github.com/elastic/elasticsearch-java) from 8.14.3 to 9.1.3. - [Release notes](https://github.com/elastic/elasticsearch-java/releases) - [Changelog](https://github.com/elastic/elasticsearch-java/blob/main/CHANGELOG.md) - [Commits](elastic/elasticsearch-java@v8.14.3...v9.1.3) --- updated-dependencies: - dependency-name: co.elastic.clients:elasticsearch-java dependency-version: 9.1.3 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Test Results8 tests - 88 8 ✅ - 87 3s ⏱️ - 1m 20s Results for commit 36d47e2. ± Comparison against base commit dc0126d. This pull request removes 88 tests. |
Contributor
Author
|
Superseded by #418. |
westei
pushed a commit
that referenced
this pull request
Sep 10, 2025
…tps://github.com/MORE-Platform/more-studymanager-frontend/issues/417)) ### AuditLog The AuditLog includes: * id - a unique id created by the DB * created - the timestamp when the log was written to the database * userId - the id of the authenticated user * studyId - the id of the affected user * Action - for now the full signature of the audited method * State: `success`, `redirect`, `error` or `unknown`: Determined based on the method results. If applicable based on the http-status, `error` in case of an exception. `unknown` if it can not be determined * timestamp - when the audited method completed * resource - currently unused * details: This includes additional information that are stored as JSON serialized string in the audit log * `param_<param-name>` additional parameters of the audited call. NOTE the maximum length of the JSON serialization of a parameter is limited via a config * `user_roles` - all roles assigned to the authenticated user for the given request * `header_content-type` the `content-type` http header * `header_location` the `location` http header ### Storage The auditLog is stored in the MORE database in the table `audit_logs` ### Configuration ```yaml audit: # the study.status to audit (fallback if not set: all) study-states: - active - paused - closed details-byte-limit: 1000 ``` The `study-states` define the states of studies where audit logging is active. If not set audit logs are active in all states. The `details-byte-limit` defines the maximum size of JSON String for parameter so that the serialization is included in the details of the audit log. This applies mainly to JSON parameters parsed in requests, but might also be triggered by long String values. ### Implementation Auditing is implemented using Spring AoP (aspect oriented programming). The Aspect is bound to functionality (`JoinPoint`) using the `@Audited` Annotation. Only Methods with this annotation are considered for audit logging. The implementation assumes usage in `@RestController`, but is strictly not limited to it Example Usage: ```java @OverRide @RequiresStudyRole(StudyRole.STUDY_ADMIN) @Audited public ResponseEntity<StudyDTO> setStatus(Long studyId, StatusChangeDTO statusChangeDTO) { ``` The affected `studyId` is extracted * based on a `Long` parameter with the name `studyId` * based on the return value being a `ResponseEntity<StudyDTO>` a `StudyDTO` or a `Study` if the `studyId` can not be determined an Exception is thrown.
westei
pushed a commit
that referenced
this pull request
Sep 10, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps co.elastic.clients:elasticsearch-java from 8.14.3 to 9.1.3.
Release notes
Sourced from co.elastic.clients:elasticsearch-java's releases.
... (truncated)
Commits
778ab95better unit test version resolvee410b0f[codegen] update to latest spec and generator2acac9bHttp2 bug workaround (#1060) (#1062)c944415Update logging.md (#1059)8aef10fbump version59661d8[codegen] update to latest specadf8ca8consumer limit check fix (#1055) (#1057)8ce7fb6bump version25339a7[codegen] update to latest spec9d98076Safe response consumer for rest5client (#1049) (#1051)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)