diff --git a/CHANGELOG.md b/CHANGELOG.md
index ebc4e46455..b8857f7681 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,24 @@
# Change Log
+## [4.1.19](https://github.com/TheHive-Project/TheHive/milestone/89) (2022-04-07)
+
+**Implemented enhancements:**
+
+- Migrate hive3 to 4, migrate SSL error. Requesting SSL bypass option [\#2356](https://github.com/TheHive-Project/TheHive/issues/2356)
+- [Enhancement] Improve logging [\#2371](https://github.com/TheHive-Project/TheHive/issues/2371)
+
+**Fixed bugs:**
+
+- [Bug] Regression starting with 4.1.17 in the migration tool with certificate validation [\#2342](https://github.com/TheHive-Project/TheHive/issues/2342)
+- [Bug] Deadlock when the index backend changed [\#2351](https://github.com/TheHive-Project/TheHive/issues/2351)
+- [Bug][Security] TheHive4 libraries vulnerabilities [\#2362](https://github.com/TheHive-Project/TheHive/issues/2362)
+- [Bug] The Link given in /etc/thehive/application.conf says error. [\#2364](https://github.com/TheHive-Project/TheHive/issues/2364)
+- [Bug] An unshared case is still visible [\#2366](https://github.com/TheHive-Project/TheHive/issues/2366)
+- [Bug] Prevent custom field creation if it already exists [\#2367](https://github.com/TheHive-Project/TheHive/issues/2367)
+- [Bug] An user may exist without being member of any organisation [\#2368](https://github.com/TheHive-Project/TheHive/issues/2368)
+- [Bug] Tags can't be updated [\#2369](https://github.com/TheHive-Project/TheHive/issues/2369)
+- [Bug] Dashboarding on weeks provide incorrect results on specific dates [\#2370](https://github.com/TheHive-Project/TheHive/issues/2370)
+
## [4.1.18](https://github.com/TheHive-Project/TheHive/milestone/88) (2022-02-07)
**Implemented enhancements:**
diff --git a/ScalliGraph b/ScalliGraph
index ad52dd66ba..6a590119ff 160000
--- a/ScalliGraph
+++ b/ScalliGraph
@@ -1 +1 @@
-Subproject commit ad52dd66bad873f7cff2dd0e763c95099c7822fd
+Subproject commit 6a590119ff69a3684e5f9dcc49a3f6e6e848c37f
diff --git a/build.sbt b/build.sbt
index 5bfefd2092..ec7354e37d 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,7 @@ import Dependencies._
import com.typesafe.sbt.packager.Keys.bashScriptDefines
import org.thp.ghcl.Milestone
-val thehiveVersion = "4.1.18-1"
+val thehiveVersion = "4.1.19-1"
val scala212 = "2.12.13"
val scala213 = "2.13.1"
val supportedScalaVersions = List(scala212, scala213)
@@ -62,11 +62,15 @@ libraryDependencies in ThisBuild ++= {
}
}
dependencyOverrides in ThisBuild ++= Seq(
-// "org.locationtech.spatial4j" % "spatial4j" % "0.6",
-// "org.elasticsearch.client" % "elasticsearch-rest-client" % "6.7.2
akkaActor,
logbackClassic
)
+val securityUpdates = Seq(
+ "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.12.6",
+ "com.fasterxml.jackson.core" % "jackson-databind" % "2.12.6.1",
+ "org.yaml" % "snakeyaml" % "1.30"
+)
+dependencyOverrides in ThisBuild ++= securityUpdates
PlayKeys.includeDocumentationInBinary := false
milestoneFilter := ((milestone: Milestone) => milestone.title.startsWith("4"))
diff --git a/conf/application.sample.conf b/conf/application.sample.conf
index 1045ee97b3..a4e866f750 100644
--- a/conf/application.sample.conf
+++ b/conf/application.sample.conf
@@ -1,5 +1,5 @@
###
-## Documentation is available at https://github.com/TheHive-Project/TheHiveDocs/TheHive4
+## Documentation is available at https://docs.thehive-project.org/thehive/
###
## Include Play secret key
diff --git a/conf/logback.xml b/conf/logback.xml
index 81ebc5d266..be6f11e3e2 100644
--- a/conf/logback.xml
+++ b/conf/logback.xml
@@ -15,13 +15,13 @@