Skip to content

Commit 757f559

Browse files
committed
Update Log4J version to fix CVE
1 parent a32b1e4 commit 757f559

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

aws-lambda-java-log4j2/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ Example for Maven pom.xml
1212
<dependency>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-lambda-java-log4j2</artifactId>
15-
<version>1.6.4</version>
15+
<version>1.6.5</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>org.apache.logging.log4j</groupId>
1919
<artifactId>log4j-core</artifactId>
20-
<version>2.25.4</version>
20+
<version>2.25.5</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>org.apache.logging.log4j</groupId>
2424
<artifactId>log4j-api</artifactId>
25-
<version>2.25.4</version>
25+
<version>2.25.5</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>org.apache.logging.log4j</groupId>
2929
<artifactId>log4j-layout-template-json</artifactId>
30-
<version>2.25.4</version>
30+
<version>2.25.5</version>
3131
</dependency>
3232
....
3333
</dependencies>
@@ -75,7 +75,7 @@ If you are using the [John Rengelman](https://github.com/johnrengelman/shadow) G
7575
7676
dependencies{
7777
...
78-
implementation group: 'com.amazonaws', name: 'aws-lambda-java-log4j2', version: '1.6.4'
78+
implementation group: 'com.amazonaws', name: 'aws-lambda-java-log4j2', version: '1.6.5'
7979
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: log4jVersion
8080
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: log4jVersion
8181
}

aws-lambda-java-log4j2/RELEASE.CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
### May 19, 2026
2+
`1.6.5`:
3+
- Updated `log4j-core` and `log4j-api` dependencies to `2.25.5`
4+
25
`1.6.4`:
36
- Fix regression in `1.6.3`
47

aws-lambda-java-log4j2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<properties>
3838
<maven.compiler.source>1.8</maven.compiler.source>
3939
<maven.compiler.target>1.8</maven.compiler.target>
40-
<log4j.version>2.25.4</log4j.version>
40+
<log4j.version>2.25.5</log4j.version>
4141
<junit-jupiter.version>5.12.2</junit-jupiter.version>
4242
</properties>
4343

lambda-integration-tests/log4j2-test-function/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<maven.compiler.source>21</maven.compiler.source>
1818
<maven.compiler.target>21</maven.compiler.target>
1919
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20-
<log4j.version>2.25.4</log4j.version>
20+
<log4j.version>2.25.5</log4j.version>
2121
</properties>
2222

2323
<dependencies>

0 commit comments

Comments
 (0)