Skip to content
Snippets Groups Projects
Verified Commit bf8b8295 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

DEP: Update log4j

parent 08596571
No related branches found
No related tags found
1 merge request!48DEP: Update log4j
Pipeline #17332 failed
...@@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file. ...@@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [v0.6.1] - 2021-12-13
(Timm Fitschen)
This is an important security update.
### Added ### Added
...@@ -19,7 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -19,7 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security ### Security
* [caosdb-deploy#225](https://gitlab.indiscale.com/caosdb/src/caosdb-deploy/-/issues/225) - Denied Edit permission leads to retrieve permission. * Update of logging backend log4j after a critical security vulnerability
[CVE-2021-44228](https://nvd.nist.gov/vuln/detail/CVE-2021-44228) to v2.15.0.
* [caosdb-deploy#225](https://gitlab.indiscale.com/caosdb/src/caosdb-deploy/-/issues/225)
- Denied Edit permission leads to retrieve permission.
## [v0.6.0] - 2021-11-17 ## [v0.6.0] - 2021-11-17
(Timm Fitschen) (Timm Fitschen)
......
...@@ -35,8 +35,10 @@ ...@@ -35,8 +35,10 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.testSourceDirectory>src/test/java</project.build.testSourceDirectory> <project.build.testSourceDirectory>src/test/java</project.build.testSourceDirectory>
<protobuf.version>3.14.0</protobuf.version> <protobuf.version>3.14.0</protobuf.version>
<grpc.version>1.35.0</grpc.version> <grpc.version>1.42.1</grpc.version>
<netty-tcnative.version>2.0.34.Final</netty-tcnative.version> <netty-tcnative.version>2.0.34.Final</netty-tcnative.version>
<restlet.version>2.4.3</restlet.version>
<log4j.version>2.15.0</log4j.version>
</properties> </properties>
<repositories> <repositories>
<repository> <repository>
...@@ -96,12 +98,12 @@ ...@@ -96,12 +98,12 @@
<dependency> <dependency>
<groupId>org.restlet.jse</groupId> <groupId>org.restlet.jse</groupId>
<artifactId>org.restlet</artifactId> <artifactId>org.restlet</artifactId>
<version>2.3.12</version> <version>${restlet.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.restlet.jse</groupId> <groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.ext.fileupload</artifactId> <artifactId>org.restlet.ext.fileupload</artifactId>
<version>2.3.12</version> <version>${restlet.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>mysql</groupId> <groupId>mysql</groupId>
...@@ -131,7 +133,7 @@ ...@@ -131,7 +133,7 @@
<dependency> <dependency>
<groupId>org.restlet.jse</groupId> <groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.ext.jetty</artifactId> <artifactId>org.restlet.ext.jetty</artifactId>
<version>2.3.12</version> <version>${restlet.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.commons</groupId> <groupId>org.apache.commons</groupId>
...@@ -166,22 +168,22 @@ ...@@ -166,22 +168,22 @@
<dependency> <dependency>
<groupId>org.apache.logging.log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId> <artifactId>log4j-slf4j-impl</artifactId>
<version>2.11.1</version> <version>${log4j.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
<version>1.7.21</version> <version>1.7.32</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.logging.log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId> <artifactId>log4j-api</artifactId>
<version>2.11.1</version> <version>${log4j.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.logging.log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId> <artifactId>log4j-core</artifactId>
<version>2.11.1</version> <version>${log4j.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.grpc</groupId> <groupId>io.grpc</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment