File tree Expand file tree Collapse file tree 5 files changed +669
-36
lines changed Expand file tree Collapse file tree 5 files changed +669
-36
lines changed Original file line number Diff line number Diff line change 31
31
echo "version=$V"
32
32
echo "version=$V" >> $GITHUB_OUTPUT
33
33
- name : Build packages
34
- run : sbt Debian/packageBin Rpm/packageBin Universal/packageBin makeBom
34
+ run : ./ sbt Debian/packageBin Rpm/packageBin Universal/packageBin makeBom
35
35
- name : Move packages
36
36
run : |
37
37
mv target/rpm/RPMS/noarch/cortex*.rpm target/
51
51
52
52
- name : Store artifacts
53
53
if : github.ref_type != 'tag'
54
- uses : actions/upload-artifact@v3
54
+ uses : actions/upload-artifact@v4
55
55
with :
56
56
name : packages
57
57
path : |
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 3.2.0 (2025-06-02)
4
+
5
+ - [ DL-1231] Add support of Kubernetes
6
+ - [ DL-1380] Add API endpoint to set user API key
7
+ - [ DL-1442] Remove openjdk dependency from deb/rpm packages
8
+ - [ DL-1602] Add support of authentication on Docker registry
9
+ - [ DL-1767] Update Docker image when the catalog is refreshed
10
+ - [ DL-715 DL-716 DL-718] Update libraries
11
+ - [ DL-717] Replace spotify docker client for java mainstream one
12
+ - [ CTX-27] count jobs artifacts before finding to avoid ES scrolls
13
+
3
14
## [ 3.1.8] ( https://github.com/TheHive-Project/Cortex/milestone/35 ) (2023-09-21)
4
15
5
16
** Pull requests:**
Original file line number Diff line number Diff line change @@ -125,7 +125,6 @@ object PackageSettings {
125
125
com.typesafe.sbt.packager.linux.LinuxPackageMapping (mappings, pm.fileData).withConfig()
126
126
} :+ packageMapping(
127
127
file(" package/cortex.service" ) -> " /etc/systemd/system/cortex.service" ,
128
- file(" package/cortex.conf" ) -> " /etc/init/cortex.conf" ,
129
128
file(" package/cortex" ) -> " /etc/init.d/cortex" ,
130
129
file(" conf/application.sample" ) -> " /etc/cortex/application.conf" ,
131
130
file(" package/logback.xml" ) -> " /etc/cortex/logback.xml"
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ evictionErrorLevel := util.Level.Warn
6
6
addSbtPlugin(" com.typesafe.play" % " sbt-plugin" % " 2.9.5" )
7
7
addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.4.6" )
8
8
// addSbtPlugin("org.thehive-project" % "sbt-github-changelog" % "0.4.0")
9
- // addSbtPlugin("io.github.siculo" %% "sbt-bom" % "0.3.0")
9
+ addSbtPlugin(" io.github.siculo" %% " sbt-bom" % " 0.3.0" )
You can’t perform that action at this time.
0 commit comments