Skip to content

Commit 524020f

Browse files
author
Thomas Franco
authored
Release/3.2 (#35)
* Update changelog for 3.2.0 * update actions/upload-artifact * fix sbt command in ci * Update sbt wrapper * Remove upstart config file * Fix gpg command * debug gpg * debug gpg * fix tty * fix gpg tty * fix bom * set docker versions * fix secret * cleanup
1 parent db68e64 commit 524020f

File tree

5 files changed

+669
-36
lines changed

5 files changed

+669
-36
lines changed

.github/workflows/build.packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "version=$V"
3232
echo "version=$V" >> $GITHUB_OUTPUT
3333
- name: Build packages
34-
run: sbt Debian/packageBin Rpm/packageBin Universal/packageBin makeBom
34+
run: ./sbt Debian/packageBin Rpm/packageBin Universal/packageBin makeBom
3535
- name: Move packages
3636
run: |
3737
mv target/rpm/RPMS/noarch/cortex*.rpm target/
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Store artifacts
5353
if: github.ref_type != 'tag'
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: packages
5757
path: |

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

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+
314
## [3.1.8](https://github.com/TheHive-Project/Cortex/milestone/35) (2023-09-21)
415

516
**Pull requests:**

project/PackageSettings.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ object PackageSettings {
125125
com.typesafe.sbt.packager.linux.LinuxPackageMapping(mappings, pm.fileData).withConfig()
126126
} :+ packageMapping(
127127
file("package/cortex.service") -> "/etc/systemd/system/cortex.service",
128-
file("package/cortex.conf") -> "/etc/init/cortex.conf",
129128
file("package/cortex") -> "/etc/init.d/cortex",
130129
file("conf/application.sample") -> "/etc/cortex/application.conf",
131130
file("package/logback.xml") -> "/etc/cortex/logback.xml"

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ evictionErrorLevel := util.Level.Warn
66
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.5")
77
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
88
//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")

0 commit comments

Comments
 (0)