Skip to content

v5.0.0

Compare
Choose a tag to compare
@jonstacks jonstacks released this 06 Dec 21:09
· 26 commits to main since this release
da8b5e2

v5.0.0

Breaking Changes

v5.0.0 has breaking changes. Notably, properties that previously had pointers to slices or maps no longer have pointers. For instance,

Hostports: *[]string `json:"hostports,omitempty"`

is now

Hostports: []string `json:"hostports,omitempty"`

Additions

New clients have been generated for ApplicationSessions and ApplicationUsers.