Our software consists of two parts - the engine and the API. Release notes for new features, improvements, and bug fixes will show under the Engine Release Notes. Release notes for updates to the API input and output structure will show under the API Release Notes.
These release notes are for Sovren's SaaS offering. If you're looking for self-hosted release notes go here.
These release notes are for Sovren's SaaS offering. If you're looking for self-hosted release notes go here.
Version 9.3.7
November 8, 2019
Bug Fixes
Resume Parser
Fixed an obscure JSON output inconsistency. The following fields would sometimes output as a string, instead of an object:
- DOB
- Gender
- Nationality
- Marital Status
- Required Salary
- Current Salary
- json
"UserArea": {
"sov:ResumeUserArea": {
"sov:PersonalInformation": {
"sov:Nationality": "USA",
"sov:Gender": "Female",
"sov:MaritalStatus": "Married",
"sov:CurrentSalary": "250000.00",
"sov:RequiredSalary": "290000.00"
}
}
}
- json
"UserArea": {
"sov:ResumeUserArea": {
"sov:PersonalInformation": {
"sov:Nationality": {
"@inferred": "false",
"#text": "USA"
},
"sov:Gender": {
"@inferred": "false",
"#text": "Female"
},
"sov:MaritalStatus": {
"@inferred": "false",
"#text": "Married"
},
"sov:CurrentSalary": {
"@currency": "",
"#text": "250000.00"
},
"sov:RequiredSalary": {
"@currency": "",
"#text": "290000.00"
}
}
}
}