Skip to content

Commit

Permalink
chg: [release] Bumped release number, updated CHANGELOG, documentatio…
Browse files Browse the repository at this point in the history
…n, and dependencies.
  • Loading branch information
cedricbonhomme committed Oct 2, 2024
1 parent 294bcc6 commit ff908e5
Show file tree
Hide file tree
Showing 5 changed files with 139 additions and 94 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Vulnerability Lookup Changelog
==============================

## 1.7.0 (not yet released)
## 1.7.0 (2024-10-02)

### News

Expand Down Expand Up @@ -31,6 +31,15 @@ Vulnerability Lookup Changelog
([9739292](https://github.com/cve-search/vulnerability-lookup/commit/9739292ed8e11e5c875151a95f5dafdf8eb1c1b9))


### Fixes

- Make the GET List (with filters) for Bundles in the API case insensitive.
([32c9bb4](https://github.com/cve-search/vulnerability-lookup/commit/32c9bb4c0028201ab86021521a77c0746fdb769a))
- The search form must post the search to /search and not search.
([4ce5227](https://github.com/cve-search/vulnerability-lookup/commit/4ce5227563d10ba05bdd9903e02d848e583e26b4))



## 1.6.0 (2024-09-16)

### News
Expand Down
31 changes: 30 additions & 1 deletion docs/_static/files/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,31 @@
]
}
},
"/api/epss/{vulnerability_id}": {
"parameters": [
{
"name": "vulnerability_id",
"in": "path",
"required": true,
"type": "string"
}
],
"get": {
"responses": {
"200": {
"description": "Success."
},
"404": {
"description": "Problem when retrieving EPSS."
}
},
"description": "Experimental - Get the EPSS score of a vulnerability.",
"operationId": "get_epss_item",
"tags": [
"epss"
]
}
},
"/api/last": {
"get": {
"responses": {
Expand Down Expand Up @@ -883,7 +908,7 @@
},
"info": {
"title": "Vulnerability Lookup API",
"version": "1.4.0",
"version": "1.5.0",
"description": "<a href='https://www.circl.lu' rel='noreferrer' target='_blank'><img src='https://www.circl.lu/assets/images/circl-logo.png' /></a><br />API to query <a href='https://github.com/cve-search/vulnerability-lookup' rel='noreferrer' target='_blank'>Vulnerability Lookup</a>.<br /><br />Back to the <a href='/'>main page</a>.",
"license": {
"name": "GNU Affero General Public License version 3",
Expand Down Expand Up @@ -928,6 +953,10 @@
{
"name": "bundle",
"description": "bundle related operations"
},
{
"name": "epss",
"description": "EPSS related operations"
}
],
"definitions": {
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
author = "CIRCL <[email protected]>"

# The full version, including alpha/beta/rc tags
release = "0.1.0"
release = "1.7.0"


# -- General configuration ---------------------------------------------------
Expand Down
Loading

0 comments on commit ff908e5

Please sign in to comment.