File tree 3 files changed +26
-3
lines changed
3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Test with mvn
2
+ on :
3
+ pull_request :
4
+ branches : [ master ]
5
+ jobs :
6
+ test :
7
+ strategy :
8
+ matrix :
9
+ os : [ubuntu-latest, macos-latest, windows-latest]
10
+ java : [ '8', '11', '15' ]
11
+ runs-on : ${{ matrix.os }}
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions/setup-java@v1
15
+ with :
16
+ java-version : ${{ matrix.java }}
17
+ - name : Test with Maven
18
+ run : mvn test
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ This appender uses [LogzioSender](https://github.com/logzio/logzio-java-sender)
13
13
<dependency >
14
14
<groupId >io.logz.log4j2</groupId >
15
15
<artifactId >logzio-log4j2-appender</artifactId >
16
- <version >1.0.12 </version >
16
+ <version >1.0.13 </version >
17
17
</dependency >
18
18
```
19
19
@@ -137,6 +137,11 @@ Will send a log to Logz.io that looks like this:
137
137
```
138
138
139
139
### Release notes
140
+ - 1.0.14
141
+ - Bump versions of ` log4j-api ` and ` log4j-core `
142
+ - 1.0.13
143
+ - Fix for issue #38 , thanks to @idachev
144
+ - Bump versions of ` log4j ` and ` guava `
140
145
- 1.0.11
141
146
- add in memory queue option
142
147
- change bufferDir(deprecated) to queueDir
Original file line number Diff line number Diff line change 150
150
<dependency >
151
151
<groupId >org.apache.logging.log4j</groupId >
152
152
<artifactId >log4j-api</artifactId >
153
- <version >2.14.1 </version >
153
+ <version >2.15.0 </version >
154
154
</dependency >
155
155
<dependency >
156
156
<groupId >org.apache.logging.log4j</groupId >
157
157
<artifactId >log4j-core</artifactId >
158
- <version >2.14.1 </version >
158
+ <version >2.15.0 </version >
159
159
</dependency >
160
160
<dependency >
161
161
<groupId >io.logz.sender</groupId >
You can’t perform that action at this time.
0 commit comments