Skip to content

Commit

Permalink
Merge 9bf80b2 into 73faf59
Browse files Browse the repository at this point in the history
  • Loading branch information
komamitsu committed Aug 31, 2019
2 parents 73faf59 + 9bf80b2 commit 170d704
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 2.4.0 (2019-08-31)

Features:

- Rename `flushIntervalMillis` to `flushAttemptIntervalMillis` in fluency-fluentd
- Add `senderMaxRetryIntervalMillis` and `senderBaseRetryIntervalMillis` to `FluencyBuilderForFluentd

Security:

- Use jackson-dataformat-msgpack:2.9.9.3 through msgpack-java:0.8.18 to take care of some CVE

Misc:

- Replace JUnit4 tests with JUnit5

## 2.3.3 (2019-06-19)

Security:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ subprojects {

group = 'org.komamitsu'
archivesBaseName = 'fluency'
version = '2.4.0-SNAPSHOT'
version = '2.4.0'

def deployUsername = project.hasProperty('ossrhUsername') ? ossrhUsername : ''
def deployPassword = project.hasProperty('ossrhPassword') ? ossrhPassword : ''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void setBufferChunkRetentionTimeMillis(Integer bufferChunkRetentionTimeMi
}

/**
* @deprecated As of release 2.3.3, replaced by {@link #getFlushAttemptIntervalMillis()}
* @deprecated As of release 2.4.0, replaced by {@link #getFlushAttemptIntervalMillis()}
*/
@Deprecated
public Integer getFlushIntervalMillis()
Expand All @@ -88,7 +88,7 @@ public Integer getFlushIntervalMillis()
}

/**
* @deprecated As of release 2.3.3, replaced by {@link #setFlushAttemptIntervalMillis(Integer flushAttemptIntervalMillis)}
* @deprecated As of release 2.4.0, replaced by {@link #setFlushAttemptIntervalMillis(Integer flushAttemptIntervalMillis)}
*/
@Deprecated
public void setFlushIntervalMillis(Integer flushAttemptIntervalMillis)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public Ingester getIngester()
}

/**
* @deprecated As of release 2.3.3, replaced by {@link #getFlushAttemptIntervalMillis()}
* @deprecated As of release 2.4.0, replaced by {@link #getFlushAttemptIntervalMillis()}
*/
@Deprecated
public int getFlushIntervalMillis()
Expand Down Expand Up @@ -246,7 +246,7 @@ public static class Config
private int waitUntilTerminated = 60;

/**
* @deprecated As of release 2.3.3, replaced by {@link #getFlushAttemptIntervalMillis()}
* @deprecated As of release 2.4.0, replaced by {@link #getFlushAttemptIntervalMillis()}
*/
@Deprecated
public int getFlushIntervalMillis()
Expand All @@ -255,7 +255,7 @@ public int getFlushIntervalMillis()
}

/**
* @deprecated As of release 2.3.3, replaced by {@link #setFlushAttemptIntervalMillis(int flushAttemptIntervalMillis)}
* @deprecated As of release 2.4.0, replaced by {@link #setFlushAttemptIntervalMillis(int flushAttemptIntervalMillis)}
*/
@Deprecated
public void setFlushIntervalMillis(int flushAttemptIntervalMillis)
Expand Down

0 comments on commit 170d704

Please sign in to comment.