-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplifications and improvements: reduced toml nesting, only reset ID…
…s we generate, remove tomli and requests as dependencies Signed-off-by: Caroline Russell <[email protected]>
- Loading branch information
1 parent
7188180
commit de8e8e0
Showing
5 changed files
with
109 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,9 @@ namespace = "https://appthreat.com" | |
# Optional | ||
contact_details = "[email protected]" | ||
|
||
[notes] | ||
# Category and text are required to add a note, add as many notes.note as you need | ||
# Valid categories are: description, details, faq, general, legal_disclaimer, other, summary | ||
[[notes.note]] | ||
[[note]] | ||
audience = "" | ||
category = "" | ||
text = "" | ||
|
@@ -29,15 +28,14 @@ text = "" | |
label = "" | ||
url = "" | ||
|
||
[references] | ||
# Summary and url are required, include as many references.ref as you like | ||
# Category can be either "external" or "self" | ||
[[references.ref]] | ||
[[reference]] | ||
category = "" | ||
summary = "" | ||
url = "" | ||
|
||
[[references.ref]] | ||
[[reference]] | ||
category = "" | ||
summary = "" | ||
url = "" | ||
|
@@ -53,9 +51,8 @@ initial_release_date = "" # ISO 8601 | |
status = "draft" | ||
version = "" | ||
|
||
[tracking.revision_history] | ||
# Include as many revision_history.revision entries as you like | ||
[[tracking.revision_history.revision]] | ||
# Include as many revision entries as you like | ||
[[tracking.revision]] | ||
date = "" | ||
number = "" | ||
summary = "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.