Skip to content

Update log4j-core and log4j-api to 2.13.2 #122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ___
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-log4j2</artifactId>
<version>1.1.1</version>
<version>1.2.0</version>
</dependency>
```

Expand All @@ -54,7 +54,7 @@ ___
'com.amazonaws:aws-lambda-java-core:1.2.1'
'com.amazonaws:aws-lambda-java-events:2.2.8'
'com.amazonaws:aws-lambda-java-log4j:1.0.1'
'com.amazonaws:aws-lambda-java-log4j2:1.1.1'
'com.amazonaws:aws-lambda-java-log4j2:1.2.0'
```

[Leiningen](http://leiningen.org) and [Boot](http://boot-clj.com)
Expand All @@ -63,7 +63,7 @@ ___
[com.amazonaws/aws-lambda-java-core "1.2.1"]
[com.amazonaws/aws-lambda-java-events "2.2.8"]
[com.amazonaws/aws-lambda-java-log4j "1.0.1"]
[com.amazonaws/aws-lambda-java-log4j2 "1.1.1"]
[com.amazonaws/aws-lambda-java-log4j2 "1.2.0"]
```

[sbt](http://www.scala-sbt.org)
Expand All @@ -72,7 +72,7 @@ ___
"com.amazonaws" % "aws-lambda-java-core" % "1.2.1"
"com.amazonaws" % "aws-lambda-java-events" % "2.2.8"
"com.amazonaws" % "aws-lambda-java-log4j" % "1.0.1"
"com.amazonaws" % "aws-lambda-java-log4j2" % "1.1.1"
"com.amazonaws" % "aws-lambda-java-log4j2" % "1.2.0"
```

# Using aws-lambda-java-core
Expand Down
6 changes: 3 additions & 3 deletions aws-lambda-java-log4j2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ Example for Maven pom.xml
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-log4j2</artifactId>
<version>1.1.1</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.8.2</version>
<version>2.13.2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.8.2</version>
<version>2.13.2</version>
</dependency>
....
</dependencies>
Expand Down
4 changes: 4 additions & 0 deletions aws-lambda-java-log4j2/RELEASE.CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### May 05, 2020
`1.2.0`:
- Updated `log4j-core` and `log4j-api` dependencies to `2.13.2`

### Apr 28, 2020
`1.1.1`:
- Added missing XML namespace declarations to `pom.xml` file ([#97](https://github.com/aws/aws-lambda-java-libs/issues/97))
Expand Down
11 changes: 6 additions & 5 deletions aws-lambda-java-log4j2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-log4j2</artifactId>
<version>1.1.1</version>
<version>1.2.0</version>
<packaging>jar</packaging>

<name>AWS Lambda Java Log4j 2.8 Libraries</name>
<name>AWS Lambda Java Log4j 2.x Libraries</name>
<description>
Support for using log4j 2.8 with AWS Lambda.
Support for using Log4j 2.x with AWS Lambda.
</description>
<url>https://aws.amazon.com/lambda/</url>
<licenses>
Expand All @@ -34,6 +34,7 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<log4j.version>2.13.2</log4j.version>
</properties>

<distributionManagement>
Expand All @@ -52,12 +53,12 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.8.2</version>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.8.2</version>
<version>${log4j.version}</version>
</dependency>
</dependencies>

Expand Down