Skip to content

v1.0.5

Compare
Choose a tag to compare
@rmkonnur rmkonnur released this 22 Jan 22:25
· 5 commits to main since this release
defb9e3

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.