v1.0.5
Note: This release has breaking changes to the Go SDK. The changes are highlighted below to make the update as seamless as possible.
- An open bug with passthrough Enums not being returned is resolved in this release. Now if you have a field that isn't normalized to one of the predefined Enum values, it will just return the original string value as direct calls to the API do.
- Function paths change in this release.
Before:
client.Hris().Groups().List(...)
After:
client.Hris.Groups.List(...)
- Some option names have changed in this release:
Before:
.ClientWithBaseURL(...)
.ClientWithAuthApiKey(...)
.ClientWithHeaderAccountToken(...)
After:
.WithBaseURL(...)
.WithApiKey(...)
.WithAccountToken(...)
- Remaining changes are developer quality of life improvements.