Skip to content

Commit

Permalink
New minor release 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Christiaan van Tienhoven authored and Christiaan van Tienhoven committed Jan 9, 2019
1 parent 5d1b41c commit d09ae84
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/cvtienhoven/graylog-plugin-aggregates.svg?branch=master)](https://travis-ci.org/cvtienhoven/graylog-plugin-aggregates)

**Required Graylog version:** 2.4.0 and later (from 2.2.2 and upwards) - **NOT BACKWARDS COMPATIBLE WITH OLDER GRAYLOG VERSIONS**.
**Required Graylog version:** 2.5.0 and later - **NOT BACKWARDS COMPATIBLE WITH OLDER GRAYLOG VERSIONS**.


**_Note_**: When upgrading from 1.x.x to version 2.0.0 of the plugin, it's required to modify existing rules (regarding streams and alerting) and existing report schedules (regarding receivers). See the screenshots below.
Expand Down Expand Up @@ -113,11 +113,11 @@ When creating or editing a rule, the schedule(s) for generating report(s) can be

# Changelog

2.3.1
2.4.0
-----

- Bugfix: Build against 2.5.x version (#46). **This breaks compatibility with 2.4.x versions of Graylog.**
- Feature: Added the REST endpoints to the Audit Event Processor (#43).
- Bugfix: Build pipeline against 2.5.x version (#46).
- Bugfix: Escape query terms when compiling the message backlog (#44).
- Bugfix: Use correct descriptor for Alert Condition (#42).

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>org.graylog.plugins.aggregates</groupId>
<artifactId>graylog-plugin-aggregates</artifactId>
<version>2.3.1</version>
<version>2.4.0</version>
<packaging>jar</packaging>

<name>${project.artifactId}</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public URI getURL() {

@Override
public Version getVersion() {
return new Version(2, 3, 1);
return new Version(2, 4, 0);
}

@Override
Expand All @@ -44,7 +44,7 @@ public String getDescription() {

@Override
public Version getRequiredVersion() {
return new Version(2, 3, 0);
return new Version(2, 5, 0);
}

@Override
Expand Down

0 comments on commit d09ae84

Please sign in to comment.