Skip to content

Commit

Permalink
updated sender dependency (#91)
Browse files Browse the repository at this point in the history
fixing diskqueue not clearing
  • Loading branch information
tamir-michaeli authored Jul 11, 2023
1 parent 233f06e commit 7ab53ce
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This appender uses [LogzioSender](https://github.com/logzio/logzio-java-sender)
<dependency>
<groupId>io.logz.logback</groupId>
<artifactId>logzio-logback-appender</artifactId>
<version>1.0.28</version>
<version>2.0.0</version>
</dependency>
<dependency>
Expand Down Expand Up @@ -148,9 +148,16 @@ Will send a log to Logz.io that looks like this:
```

### Release notes
- 2.0.0 - **THIS IS A SNAPSHOT RELEASE - SUPPORTED WITH JDK 11 AND ABOVE**
- Updated LogzioSender version to `2.0.0`:
- Fixes an issue where DiskQueue was not clearing disk space when using JDK 11 and above.
- 1.0.29
- Updated LogzioSender version to `1.1.8`:
- Fix an issue where log is not being truncated properly between size of 32.7k to 500k.

<details>
<summary markdown="span"> Expand to check old versions </summary>

- 1.0.28
- Added exceedMaxSizeAction parameter for handling oversized logs
- Updated LogzioSender version, fixing IndexOutOfBounds error with bigqueue
Expand Down Expand Up @@ -204,7 +211,7 @@ Will send a log to Logz.io that looks like this:
- Add hostname to logs support
- 1.0.0 - 1.0.2
- Initial releases

</details>

### Contribution
- Fork
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.logz.logback</groupId>
<artifactId>logzio-logback-appender</artifactId>
<version>1.0.29</version>
<version>2.0.0</version>

<packaging>jar</packaging>
<name>Logz.io Logback Appender</name>
Expand Down Expand Up @@ -36,7 +36,7 @@
</scm>

<properties>
<logzio-sender-version>1.1.8</logzio-sender-version>
<logzio-sender-version>2.0.0</logzio-sender-version>
</properties>
<distributionManagement>
<snapshotRepository>
Expand All @@ -55,8 +55,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 7ab53ce

Please sign in to comment.