Skip to content

Commit

Permalink
Merge branch 'ver-48.0.0' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
kekey1 committed Jan 21, 2025
2 parents 88038a5 + 48956e5 commit 06081c7
Show file tree
Hide file tree
Showing 85 changed files with 2,082 additions and 849 deletions.
20 changes: 20 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Release Notes

## Version 48.0.0
_21 January 2025_

### Breaking Change
* Remove deprecated activity metadata objectId field

### Features
* Add endpoints to support Criteria Attributes Power BI report
* Clear out security context when each Quartz job finishes
* Give ACB user permission to see activity for functest, stds, svap
* Give ONC user access to CRUD ops on functest, testtools, stds
* Deprecate fields in developer, product, and listing activity metadata

### Bug Fixes
* Stop adding baseline standards valid on cert date
* Improve upload and merge code when file is very very bad
* User certification date from upload to create active cert event

---

## Version 47.7.0
_6 January 2025_

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,15 +233,16 @@
"name": "ROLE_ACB",
"item": [
{
"name": "GET /activity/metadata/svaps - ACB user gets 401 status and no response",
"name": "GET /activity/metadata/svaps - ACB user gets 200 status and valid response",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"ACB user gets 401 status and valid response from /activity/metadata/svaps end point\", function () {\r",
"pm.test(\"ACB user gets 200 status and valid response from /activity/metadata/svaps end point\", function () {\r",
" var actualResponseBody = pm.response.json();\r",
" pm.response.to.have.status(401);\r",
" pm.response.to.have.status(200);\r",
" pm.expect(actualResponseBody).not.eql(null);\r",
"});"
],
"type": "text/javascript",
Expand Down Expand Up @@ -285,20 +286,21 @@
"svaps"
]
},
"description": "GET /activity/metadata/svaps - ACB user gets 401 status and no response"
"description": "GET /activity/metadata/svaps - ACB user gets 200 status and valid response"
},
"response": []
},
{
"name": "GET /activity/metadata/standards - ACB user gets 401 status and no response",
"name": "GET /activity/metadata/standards - ACB user gets 200 status and valid response",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"ACB user gets 401 status and valid response from /activity/metadata/standards end point\", function () {\r",
"pm.test(\"ACB user gets 200 status and valid response from /activity/metadata/standards end point\", function () {\r",
" var actualResponseBody = pm.response.json();\r",
" pm.response.to.have.status(401);\r",
" pm.response.to.have.status(200);\r",
" pm.expect(actualResponseBody).not.eql(null);\r",
"});"
],
"type": "text/javascript",
Expand Down Expand Up @@ -342,20 +344,21 @@
"standards"
]
},
"description": "GET /activity/metadata/standards - ACB user gets 401 status and no response"
"description": "GET /activity/metadata/standards - ACB user gets 200 status and valid response"
},
"response": []
},
{
"name": "GET /activity/metadata/functionalities-tested - ACB user gets 401 status and no response",
"name": "GET /activity/metadata/functionalities-tested - ACB user gets 200 status and valid response",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"ACB user gets 401 status and valid response from /activity/metadata/functionalities-tested end point\", function () {\r",
"pm.test(\"ACB user gets 200 status and valid response from /activity/metadata/functionalities-tested end point\", function () {\r",
" var actualResponseBody = pm.response.json();\r",
" pm.response.to.have.status(401);\r",
" pm.response.to.have.status(200);\r",
" pm.expect(actualResponseBody).not.eql(null);\r",
"});"
],
"type": "text/javascript",
Expand Down Expand Up @@ -399,7 +402,7 @@
"functionalities-tested"
]
},
"description": "GET /activity/metadata/functionalities-tested - ACB user gets 401 status and no response"
"description": "GET /activity/metadata/functionalities-tested - ACB user gets 200 status and valid response"
},
"response": []
}
Expand Down
Loading

0 comments on commit 06081c7

Please sign in to comment.