Skip to content

Commit 9db392e

Browse files
authored
Merge pull request #30 from m-moris/fix/update-libraries-version
Update dependencies version
2 parents 16b94f4 + 2a7497c commit 9db392e

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

README.ja.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Azure Storage Blob にログを出力する log4j2用のカスタムアペンダ
77

88
## What's New
99

10+
** 2025/02 **
11+
12+
依存ライブラリのバージョンを更新しました
13+
1014
**重要 2024/03**
1115

1216
マネージドIDに対応しました。内部的に `DefaultAzureCredential` を利用しています。

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ This is a custom appender for log4j2 that outputs logs to Azure Storage Blob. Th
77

88
## What's New
99

10+
**2025/02**
11+
12+
Update dependent libraries
13+
1014
**Important 2024/03**
1115

1216
Managed ID is now supported. It uses `DefaultAzureCredential` internally.

pom.xml

+9-9
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<url>https://github.com/m-moris/log4j2-azure-blob-appender</url>
2525
<connection>scm:git:https://github.com/m-moris/log4j2-azure-blob-appender.git</connection>
2626
<developerConnection>scm:git:https://github.com/m-moris/log4j2-azure-blob-appender.git</developerConnection>
27-
<tag>2.3.0</tag>
27+
<tag>2.4.0</tag>
2828
</scm>
2929
<url>https://github.com/m-moris/log4j2-azure-blob-appender</url>
3030
<properties>
31-
<revision>2.3.0</revision>
31+
<revision>2.4.0</revision>
3232
<changelist>-SNAPSHOT</changelist>
3333
<sha1/>
3434
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -53,40 +53,40 @@
5353
<dependency>
5454
<groupId>org.apache.logging.log4j</groupId>
5555
<artifactId>log4j-core</artifactId>
56-
<version>2.23.1</version>
56+
<version>2.24.3</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>com.azure</groupId>
6060
<artifactId>azure-storage-blob</artifactId>
61-
<version>12.25.2</version>
61+
<version>12.29.0</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>com.azure</groupId>
6565
<artifactId>azure-identity</artifactId>
66-
<version>1.11.3</version>
66+
<version>1.15.0</version>
6767
</dependency>
6868
<dependency>
6969
<groupId>org.junit.jupiter</groupId>
7070
<artifactId>junit-jupiter-api</artifactId>
71-
<version>5.10.2</version>
71+
<version>5.11.4</version>
7272
<scope>test</scope>
7373
</dependency>
7474
<dependency>
7575
<groupId>org.apache.commons</groupId>
7676
<artifactId>commons-lang3</artifactId>
77-
<version>3.14.0</version>
77+
<version>3.17.0</version>
7878
<scope>test</scope>
7979
</dependency>
8080
<dependency>
8181
<groupId>org.junit.jupiter</groupId>
8282
<artifactId>junit-jupiter-engine</artifactId>
83-
<version>5.10.2</version>
83+
<version>5.11.4</version>
8484
<scope>test</scope>
8585
</dependency>
8686
<dependency>
8787
<groupId>com.fasterxml.jackson.core</groupId>
8888
<artifactId>jackson-databind</artifactId>
89-
<version>2.13.4.2</version>
89+
<version>2.18.2</version>
9090
<scope>test</scope>
9191
</dependency>
9292
</dependencies>

0 commit comments

Comments
 (0)