Skip to content

Commit

Permalink
Merge pull request #977 from CVEProject/dev
Browse files Browse the repository at this point in the history
Update INT from DEV
  • Loading branch information
brettp authored Dec 28, 2022
2 parents 7bd39ac + 6ab7600 commit ba0df62
Show file tree
Hide file tree
Showing 19 changed files with 3,777 additions and 4,198 deletions.
16 changes: 8 additions & 8 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ module.exports = {
node: true
},
extends: [
"plugin:mocha/recommended",
"standard"
'plugin:mocha/recommended',
'standard'
],
parserOptions: {
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: "module" // Allows for the use of imports
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
sourceType: 'module' // Allows for the use of imports
},
plugins: [
"mocha"
'mocha'
],
"rules": {
"mocha/no-mocha-arrows": "off"
rules: {
'mocha/no-mocha-arrows': 'off'
}
};
}
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
Expand All @@ -26,7 +26,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
Expand All @@ -43,7 +43,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
Expand All @@ -26,7 +26,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
Expand Down
6 changes: 3 additions & 3 deletions api-docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
"CVE ID"
],
"summary": "Retrieves information about the specified CVE ID (accessible to all users)",
"description": " <h2>Access Control</h2> <p>Endpoint is accessible to all</p> <h2>Expected Behavior</h2> <p><b>Regular, CNA & Admin Users: </b>Retrieves full information about a CVE ID owned by their organization; partial information about a CVE ID owned by other organizations</p> <p><b>Unauthenticated Users: Retrieves partial information about a CVE ID</b> <p><b>Secretariat: </b>Retrieves full information about a CVE ID owned by any organization</p> <p><i><b>Note - </b>The owning organization of RESERVED CVE IDs is redacted for all users other than those in the owning organization or Secretariat</i></p>",
"description": " <h2>Access Control</h2> <p>Endpoint is accessible to all</p> <h2>Expected Behavior</h2> <p><b>Regular, CNA & Admin Users: </b>Retrieves full information about a CVE ID owned by their organization; partial information about a CVE ID owned by other organizations</p> <p><b>Unauthenticated Users: </b>Retrieves partial information about a CVE ID <p><b>Secretariat: </b>Retrieves full information about a CVE ID owned by any organization</p> <p><i><b>Note - </b>The owning organization of RESERVED CVE IDs is redacted for all users other than those in the owning organization or Secretariat</i></p>",
"operationId": "cveIdGetSingle",
"parameters": [
{
Expand Down Expand Up @@ -2383,7 +2383,7 @@
"active": {
"in": "query",
"name": "active",
"description": "The new active state for the user entry",
"description": "The new active state for the user entry. Accepted values are 1, true, or yes to indicate true, and 0, false, or no to indicate false",
"required": false,
"schema": {
"type": "boolean"
Expand Down Expand Up @@ -2515,7 +2515,7 @@
"countOnly": {
"in": "query",
"name": "count_only",
"description": "Get count of records that match query. Accepted values are 1, to indicate true, and 0, to indicate false",
"description": "Get count of records that match query. Accepted values are 1, true, or yes to indicate true, and 0, false, or no to indicate false",
"required": false,
"schema": {
"type": "boolean"
Expand Down
Loading

0 comments on commit ba0df62

Please sign in to comment.