diff --git a/CHANGELOG.md b/CHANGELOG.md index a68025a2..f765548e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v7.3.2](https://github.com/rapid7/nexpose-client/tree/v7.3.2) (2023-12-27) + +[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v7.3.1...v7.3.2) + +**Merged pull requests:** +- Missing Global Privileges (ViewVulnInvestigations, ManageVulnInvestigations) (https://github.com/rapid7/nexpose-client/pull/337) + +**Fixed bugs:** + ## [v7.3.0](https://github.com/rapid7/nexpose-client/tree/v7.3.0) (2021-04-02) [Full Changelog](https://github.com/rapid7/nexpose-client/compare/v7.2.1...v7.3.0) diff --git a/lib/nexpose/role.rb b/lib/nexpose/role.rb index 4f2fb2c7..b89f84de 100644 --- a/lib/nexpose/role.rb +++ b/lib/nexpose/role.rb @@ -16,6 +16,8 @@ module Global SUBMIT_VULN_EXCEPTIONS = 'SubmitVulnExceptions' APPROVE_VULN_EXCEPTIONS = 'ApproveVulnExceptions' DELETE_VULN_EXCEPTIONS = 'DeleteVulnExceptions' + VIEW_VULN_INVESTIGATIONS = 'ViewVulnInvestigations' + MANAGE_VULN_INVESTIGATIONS = 'ManageVulnInvestigations' CREATE_TICKETS = 'CreateTickets' CLOSE_TICKETS = 'CloseTickets' TICKET_ASSIGNEE = 'TicketAssignee' diff --git a/lib/nexpose/version.rb b/lib/nexpose/version.rb index 7e5ac867..98d77555 100644 --- a/lib/nexpose/version.rb +++ b/lib/nexpose/version.rb @@ -1,4 +1,4 @@ module Nexpose # The latest version of the Nexpose gem - VERSION = '7.3.1'.freeze + VERSION = '7.3.2'.freeze end