Skip to content

Commit

Permalink
Merge branch 'hotfix/1.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Jun 14, 2017
2 parents 465cd97 + 720db12 commit 81b1e02
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
24 changes: 12 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
# Change Log

## [1.1.2](https://github.com/CERT-BDF/Cortex/tree/1.1.2)
## [1.1.3](https://github.com/CERT-BDF/Cortex/tree/1.1.3)

[Full Changelog](https://github.com/CERT-BDF/Cortex/compare/rpm/1.1.1-2...1.1.2)
[Full Changelog](https://github.com/CERT-BDF/Cortex/compare/debian/1.1.2...1.1.3)

**Fixed bugs:**

- Problem Start Cortex on Ubuntu 16.04 [\#35](https://github.com/CERT-BDF/Cortex/issues/35)
- Error when parsing analyzer failure report [\#33](https://github.com/CERT-BDF/Cortex/issues/33)


## [1.1.2](https://github.com/CERT-BDF/Cortex/tree/1.1.2) (2017-05-24)
[Full Changelog](https://github.com/CERT-BDF/Cortex/compare/debian/1.1.1...1.1.2)

**Implemented enhancements:**

Expand All @@ -15,22 +24,13 @@
- Cortex and MISP unclear and error-loop [\#29](https://github.com/CERT-BDF/Cortex/issues/29)
- Error 500 in TheHive when a job is submited to Cortex [\#27](https://github.com/CERT-BDF/Cortex/issues/27)

## [rpm/1.1.1-2](https://github.com/CERT-BDF/Cortex/tree/rpm/1.1.1-2) (2017-05-19)
[Full Changelog](https://github.com/CERT-BDF/Cortex/compare/debian/1.1.1-2...rpm/1.1.1-2)

## [debian/1.1.1-2](https://github.com/CERT-BDF/Cortex/tree/debian/1.1.1-2) (2017-05-19)
[Full Changelog](https://github.com/CERT-BDF/Cortex/compare/1.1.1...debian/1.1.1-2)

**Fixed bugs:**

- After Upgrade from Cortex 1.0.2 to 1.1.1 system does not come up [\#26](https://github.com/CERT-BDF/Cortex/issues/26)

## [1.1.1](https://github.com/CERT-BDF/Cortex/tree/1.1.1) (2017-05-17)
[Full Changelog](https://github.com/CERT-BDF/Cortex/compare/1.1.0...1.1.1)

**Fixed bugs:**

- Missing logos and favicons [\#25](https://github.com/CERT-BDF/Cortex/issues/25)
- After Upgrade from Cortex 1.0.2 to 1.1.1 system does not come up [\#26](https://github.com/CERT-BDF/Cortex/issues/26)

**Closed issues:**

Expand Down
2 changes: 1 addition & 1 deletion app/models/JsonFormat.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object JsonFormat {
} yield SuccessReport(artifacts, full, summary))
.getOrElse(FailureReport(s"Invalid analyzer output format : $json"))
else
FailureReport((json \ "error").asOpt[String].getOrElse(json.toString))
FailureReport((json \ "errorMessage").asOpt[String].getOrElse(json.toString))
}
}

Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ packageBin := {
(packageBin in Universal).value
}
// DEB //
version in Debian := version.value + "-2"
debianPackageDependencies += "java8-runtime-headless | java8-runtime"
version in Debian := version.value + "-1"
debianPackageDependencies += "openjdk-8-jre-headless"
maintainerScripts in Debian := maintainerScriptsFromDirectory(
baseDirectory.value / "package" / "debian",
Seq(DebianConstants.Postinst, DebianConstants.Prerm, DebianConstants.Postrm)
Expand Down
2 changes: 1 addition & 1 deletion ui/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cortex",
"version": "1.1.2",
"version": "1.1.3",
"dependencies": {
"angular": "1.5.10",
"angular-sanitize": "1.5.10",
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cortex",
"version": "1.1.2",
"version": "1.1.3",
"license": "AGPL-3.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "1.1.2"
version in ThisBuild := "1.1.3"

0 comments on commit 81b1e02

Please sign in to comment.