Skip to content

Commit

Permalink
Merge pull request #360 from jjnicola/new-release-6
Browse files Browse the repository at this point in the history
Preparing for release openvas-scanner-6.0.1
  • Loading branch information
jjnicola authored Jul 17, 2019
2 parents 2ae62ab + 50d2207 commit 76ff5fa
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 7 deletions.
33 changes: 31 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,37 @@ SUMMARY OF RELEASE CHANGES FOR OPENVAS-SCANNER
For detailed code changes, please visit
https://github.com/greenbone/openvas-scanner/commits/master
or get the entire source code repository and view log history:
$ git clone https://github.com/greenbone/openvas-scanner.git
$ cd openvas-scanner && git checkout openvas-scanner-6.0 && git log
$ git clone https://github.com/greenbone/openvas.git
$ cd openvas && git checkout openvas-scanner-6.0 && git log


openvas-scanner 6.0.1 (2019-07-17)

This is the first patch release of the openvas-scanner module 6.0 for the
Greenbone Vulnerability Management (GVM) framework.

Main changes compared to openvas-scanner 6.0.0:
* An issue which caused the scanner to crash when a plugin is missing
during a scan has been addressed.
* An issue which caused a plugin to hang in nasl_pread() has been addressed.
* Lower-case format is used for values added from add_host_name().
* Do not launch the scan if the nvticache is corrupted or an error is detected
during the plugin schedule process.
* Issues in building process have been addressed.
* An issue which caused the manager to consider a scan as finished when it was
actually stopped has been addressed.
* An issue which caused possible null IP values in OTP results has been
addressed.
* An issue which caused forgotten children of children processes has been
addressed.
* The unfinished Advanced log feature has been removed.
* An issue which caused a plugin to finished immediately when a wrong
custom timeout was sent from the manager has been addressed.
* An issue which caused a scan to hang for ever if there was no redis kb
available has been addressed.
* An issue which caused a plugin to use the default port when a custom port
is given has been addressed.


openvas-scanner 6.0.0 (2019-04-05)

Expand Down
4 changes: 1 addition & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cmake_minimum_required (VERSION 3.0)
message ("-- Configuring the Scanner...")

project (openvas-scanner
VERSION 6.0.0
VERSION 6.0.1
LANGUAGES C)

if (POLICY CMP0005)
Expand Down Expand Up @@ -66,8 +66,6 @@ set (PROJECT_BETA_RELEASE 0)

if (GIT_REVISION)
set (PROJECT_VERSION_GIT "${GIT_REVISION}")
else (GIT_REVISION)
set (PROJECT_VERSION_GIT "~git")
endif (GIT_REVISION)

# If PROJECT_BETA_RELEASE is set, the version string will be set to:
Expand Down
2 changes: 1 addition & 1 deletion misc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fPIC")
# we require CMake >= 3.0
set (MISC_VERSION_MAJOR 10)
set (MISC_VERSION_MINOR 0)
set (MISC_VERSION_PATCH 0)
set (MISC_VERSION_PATCH 1)

if (PROJECT_BETA_RELEASE)
set (MISC_VERSION_SUFFIX "+beta${PROJECT_BETA_RELEASE}")
Expand Down
2 changes: 1 addition & 1 deletion nasl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# we require CMake >= 3.0
set (NASL_VERSION_MAJOR 10)
set (NASL_VERSION_MINOR 0)
set (NASL_VERSION_PATCH 0)
set (NASL_VERSION_PATCH 1)

if (PROJECT_BETA_RELEASE)
set (NASL_VERSION_SUFFIX "+beta${PROJECT_BETA_RELEASE}")
Expand Down

0 comments on commit 76ff5fa

Please sign in to comment.