Skip to content

Commit 76ff5fa

Browse files
authored
Merge pull request #360 from jjnicola/new-release-6
Preparing for release openvas-scanner-6.0.1
2 parents 2ae62ab + 50d2207 commit 76ff5fa

File tree

4 files changed

+34
-7
lines changed

4 files changed

+34
-7
lines changed

CHANGES

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,37 @@ SUMMARY OF RELEASE CHANGES FOR OPENVAS-SCANNER
44
For detailed code changes, please visit
55
https://github.com/greenbone/openvas-scanner/commits/master
66
or get the entire source code repository and view log history:
7-
$ git clone https://github.com/greenbone/openvas-scanner.git
8-
$ cd openvas-scanner && git checkout openvas-scanner-6.0 && git log
7+
$ git clone https://github.com/greenbone/openvas.git
8+
$ cd openvas && git checkout openvas-scanner-6.0 && git log
9+
10+
11+
openvas-scanner 6.0.1 (2019-07-17)
12+
13+
This is the first patch release of the openvas-scanner module 6.0 for the
14+
Greenbone Vulnerability Management (GVM) framework.
15+
16+
Main changes compared to openvas-scanner 6.0.0:
17+
* An issue which caused the scanner to crash when a plugin is missing
18+
during a scan has been addressed.
19+
* An issue which caused a plugin to hang in nasl_pread() has been addressed.
20+
* Lower-case format is used for values added from add_host_name().
21+
* Do not launch the scan if the nvticache is corrupted or an error is detected
22+
during the plugin schedule process.
23+
* Issues in building process have been addressed.
24+
* An issue which caused the manager to consider a scan as finished when it was
25+
actually stopped has been addressed.
26+
* An issue which caused possible null IP values in OTP results has been
27+
addressed.
28+
* An issue which caused forgotten children of children processes has been
29+
addressed.
30+
* The unfinished Advanced log feature has been removed.
31+
* An issue which caused a plugin to finished immediately when a wrong
32+
custom timeout was sent from the manager has been addressed.
33+
* An issue which caused a scan to hang for ever if there was no redis kb
34+
available has been addressed.
35+
* An issue which caused a plugin to use the default port when a custom port
36+
is given has been addressed.
37+
938

1039
openvas-scanner 6.0.0 (2019-04-05)
1140

CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cmake_minimum_required (VERSION 3.0)
2121
message ("-- Configuring the Scanner...")
2222

2323
project (openvas-scanner
24-
VERSION 6.0.0
24+
VERSION 6.0.1
2525
LANGUAGES C)
2626

2727
if (POLICY CMP0005)
@@ -66,8 +66,6 @@ set (PROJECT_BETA_RELEASE 0)
6666

6767
if (GIT_REVISION)
6868
set (PROJECT_VERSION_GIT "${GIT_REVISION}")
69-
else (GIT_REVISION)
70-
set (PROJECT_VERSION_GIT "~git")
7169
endif (GIT_REVISION)
7270

7371
# If PROJECT_BETA_RELEASE is set, the version string will be set to:

misc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fPIC")
9696
# we require CMake >= 3.0
9797
set (MISC_VERSION_MAJOR 10)
9898
set (MISC_VERSION_MINOR 0)
99-
set (MISC_VERSION_PATCH 0)
99+
set (MISC_VERSION_PATCH 1)
100100

101101
if (PROJECT_BETA_RELEASE)
102102
set (MISC_VERSION_SUFFIX "+beta${PROJECT_BETA_RELEASE}")

nasl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# we require CMake >= 3.0
2424
set (NASL_VERSION_MAJOR 10)
2525
set (NASL_VERSION_MINOR 0)
26-
set (NASL_VERSION_PATCH 0)
26+
set (NASL_VERSION_PATCH 1)
2727

2828
if (PROJECT_BETA_RELEASE)
2929
set (NASL_VERSION_SUFFIX "+beta${PROJECT_BETA_RELEASE}")

0 commit comments

Comments
 (0)