...
- name (same as cn)
- description (same as cn)
- uid
- sn (new, the person's last name)
- givenName (new, the person's first name)
- cn (new but redundant with name and description)
If your code does not read the attributeValues JSON/XML tag for a subject being returned, you can stop reading here. You probably don't have to worry about this change breaking your code.
If you do read attributeValues for a subject, you should always check the subjectAttributeNames in the XML/JSON returned by Grouper to determine the order in which the above attributes are returned. This is usually relevant for API calls such as Get Members or Get Subjects or any API call that returns a subject.
...