Skip to content

Commit

Permalink
Merge branch 'master' into normalizeTimestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
ousmaneo authored Feb 6, 2025
2 parents 6ecb10b + 3ff77ba commit f27dcd8
Show file tree
Hide file tree
Showing 93 changed files with 5,534 additions and 7,060 deletions.
16 changes: 11 additions & 5 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ Upgrading to Graylog 6.2.x
## Breaking Changes

### Plugins

Adjustment of `enterpriseWidgets` web interface plugin. The `editComponent` attribute now no longer has a `onSubmit` prop.
Before this change the prop had to be called to close the widget edit mode. Now it is enough to call `applyAllWidgetChanges` from the `WidgetEditApplyAllChangesContext`.
Alternatively the `SaveOrCancelButtons` component can be used in the edit component for custom widgets. It renders a cancel and submit button and calls `applyAllWidgetChanges` on submit.
* This release includes Java API changes which might require plugin authors to adjust their code. Please check
[Java API Changes](#java-api-changes) for details.
* Adjustment of `enterpriseWidgets` web interface plugin. The `editComponent` attribute now no longer has a `onSubmit` prop.
Before this change the prop had to be called to close the widget edit mode. Now it is enough to call `applyAllWidgetChanges` from the `WidgetEditApplyAllChangesContext`.
Alternatively the `SaveOrCancelButtons` component can be used in the edit component for custom widgets. It renders a cancel and submit button and calls `applyAllWidgetChanges` on submit.

## Configuration File Changes

Expand All @@ -21,7 +22,12 @@ Alternatively the `SaveOrCancelButtons` component can be used in the edit compon

## Java API Changes

The following Java Code API changes have been made.
Upgraded [MongoJack](https://github.com/mongojack/mongojack) to version 5.x. This impacts the Java API for accessing
documents in MongoDB. Some previously deprecated MongoJack classes (like `org.mongojack.DBQuery`) have been removed.
Plugin authors will have to replace usages of removed classes to corresponding classes from the MongoDB driver
packages, most prominently `com.mongodb.client.model.Filters`.

Additionally, the following Java Code API changes are included in this release:

| File/method | Description |
|------------------------------------------------|-------------|
Expand Down
5 changes: 5 additions & 0 deletions changelog/unreleased/issue-21322.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type="a"
message="Added new Configuration to define default for allowing access tokens for external users."

issues=["21322"]
pulls=["21438"]
5 changes: 5 additions & 0 deletions changelog/unreleased/pr-21376.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "fixed"
message = "Improve readability of filter preview error message in event definition wizard (dark mode)."

issues = ["Graylog2/graylog-plugin-enterprise#9336"]
pulls = ["21376"]
5 changes: 5 additions & 0 deletions changelog/unreleased/pr-21456.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "added"
message = "Added escape character handling to the key_value pipeline function."

pulls = ["21456"]
issues = ["graylog-plugin-enterprise#9552"]
5 changes: 5 additions & 0 deletions changelog/unreleased/pr-21467.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "f"
message = "UI Framework for deprecating pipeline functions"

pulls = ["21467"]
issues = ["19287"]
4 changes: 4 additions & 0 deletions changelog/unreleased/pr-21493.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
type = "c"
message = "Upgraded MongoJack dependency to `5.0.2`. This might require changes to third-party plugins. Please check Graylog upgrade notes."

pulls = ["21493"]
5 changes: 5 additions & 0 deletions changelog/unreleased/pr-21538.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "fixed"
message = "Upgrade AWS Kinesis client libary to version 6.1.0 to fix potential shard processing issues."

issues = ["21451"]
pulls = ["21538"]
8 changes: 8 additions & 0 deletions graylog-project-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,14 @@
<groupId>org.apache.directory.api</groupId>
<artifactId>api-ldap-schema-data</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
Loading

0 comments on commit f27dcd8

Please sign in to comment.