Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use preview versions of oscal tools #1072

Merged
merged 23 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d7b0623
fix constraints (#1070)
wandmagic Jan 7, 2025
b4d3df5
use preview versions of oscal tools
wandmagic Jan 7, 2025
dd20034
hotfix missing expect tag
wandmagic Jan 8, 2025
60b3c50
Add the inter-boundary-component-has-information-type constraint (#1066)
DimitriZhurkin Jan 8, 2025
18a02c9
Hotfix styles (#1076)
wandmagic Jan 8, 2025
26f4f19
use latest server build
wandmagic Jan 8, 2025
1f55a73
Correct constraint message. (#1085)
Gabeblis Jan 9, 2025
608080d
add additional sample content (#1081)
wandmagic Jan 9, 2025
8c1a343
Add new metapath target to 'security-level' constraint (#1079)
Gabeblis Jan 9, 2025
5e3f386
make build (#1080)
wandmagic Jan 10, 2025
60ba7f7
add inventory item constraints (#1063)
wandmagic Jan 10, 2025
f556138
Add `inventory-item-has-software-version` constraint (#1039)
Gabeblis Jan 7, 2025
b9ca17a
Add 'inventory-item-has-software-name' constraint and tests (#1038)
Gabeblis Jan 7, 2025
ee65d47
use preview versions of oscal tools
wandmagic Jan 7, 2025
d7af65c
hotfix missing expect tag
wandmagic Jan 8, 2025
f10ace6
use latest server build
wandmagic Jan 8, 2025
7c6b0f2
Merge branch 'canary' of https://github.com/wandmagic/fedramp-automat…
wandmagic Jan 10, 2025
ed5d082
fix order and missing expect closing tag
wandmagic Jan 13, 2025
8898199
Update fedramp-external-constraints.xml
wandmagic Jan 13, 2025
8993b2a
use versions matrix for snapshot testing
wandmagic Jan 13, 2025
c01afed
better action names
wandmagic Jan 13, 2025
f66de5d
Update module.mk
wandmagic Jan 13, 2025
71897c4
Update .tool-versions
wandmagic Jan 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
branches:
- master
- develop
- canary
- 'feature/**' # This will match any branch starting with "feature"

pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
oscal-cli 2.4.0
oscal-cli 2.5.0-SNAPSHOT
oscal-server v1.0.0-SNAPSHOT-6363f60-20241202160440
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"inquirer": "^10.1.8",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.0",
"oscal": "2.0.7",
"oscal": "2.0.8-rc5",
"ts-node": "^10.9.2",
"xml-formatter": "^3.6.3",
"xml2js": "^0.6.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,7 @@
<formal-name>Inventory Item Has Software Name</formal-name>
<prop namespace="https://docs.oasis-open.org/sarif/sarif/v2.1.0" name="help-url" value="https://automate.fedramp.gov/documentation/ssp/5-attachments/#system-inventory-approach"/>
<message>In a FedRAMP SSP, each inventory item MUST include the software name in the inventory item itself or within the linked component.</message>
</expect>
<expect id="inventory-item-has-software-version" target=".[prop[@name='asset-type' and @value=('operating-system', 'container', 'image')] or ../component[uuid=$component-uuid and type='software']]" test="count(prop[@name=('software-version', 'os-version')]) = 1 or count(../component[@uuid=$component-uuid]/prop[@name=('software-version', 'os-version')]) = 1" level="ERROR">
<formal-name>Inventory Item Has Software Version</formal-name>
<prop namespace="https://docs.oasis-open.org/sarif/sarif/v2.1.0" name="help-url" value="https://automate.fedramp.gov/documentation/ssp/5-attachments/#system-inventory-approach"/>
Expand Down
Loading