Skip to content

Releases: cloudfoundry/go-uaa

v0.0.5

08 Jun 01:21
3186326
Compare
Choose a tag to compare

Fixes

  • Fix JSON struct tags that were modified incorrectly during refactoring

Breaking Changes

  • Rename the repository from uaa to go-uaa

Detailed changes: v0.0.4...v0.0.5

v0.0.4

08 Jun 01:20
Compare
Choose a tag to compare

Fixes

  • Fix JSON struct tags that were modified incorrectly during refactoring

Detailed changes: v0.0.3...v0.0.4

v0.0.3

07 Jun 21:41
Compare
Choose a tag to compare

Features

  • List functions now return slices of the return type instead of a paginated type, because they fetch all records from the server

Breaking Changes

  • Remove startIdx and count arguments from GroupManager.List, and fetch all pages of data
  • Remove startIdx and count arguments from UserManager.List, and fetch all pages of data

Detailed changes: v0.0.2...v0.0.3

v0.0.2

07 Jun 20:42
da4bd3a
Compare
Choose a tag to compare

This release focuses on removing stuttering (e.g. uaa.UaaClient) and fixing all lint, vet, and other warnings 👕.

Breaking Changes:

  • Everywhere:
    • Http > HTTP
    • Id > ID
    • Uri > URI
  • Client:
    • uaa.UaaClient > uaa.Client
    • Client.PreCreateValidation > Client.Validate
    • uaa.UaaContext > uaa.AuthContext
  • Group:
    • uaa.ScimGroupMember > uaa.GroupMember
    • Remove uaa.ScimGroupMembership as it is identical to GroupMember save for JSON tags
    • uaa.ScimGroup > uaa.Group
  • Health: uaa.UaaHealthStatus > uaa.HealthStatus
  • HTTP Request Factory: Unexport all functions
  • Info:
    • uaa.UaaInfo > uaa.Info
    • Info > GetInfo
  • Me: uaa.Userinfo > uaa.UserInfo
  • OAuth Token Request:
    • uaa.REFRESH_TOKEN > uaa.REFRESHTOKEN
    • uaa.CLIENT_CREDENTIALS > uaa.CLIENTCREDENTIALS
  • User:
    • uaa.ScimMetaInfo > uaa.Meta
    • uaa.ScimUserName > uaa.UserName
    • uaa.ScimUserEmail > uaa.Email
    • uaa.ScimUserGroup > uaa.UserGroup`
    • uaa.ScimUser > uaa.User
    • uaa.ScimSortOrder > uaa.SortOrder
  • Move the fixtures package to internal/fixtures
  • Move the utils package to internal/utils

Detailed changes: v0.0.1...v0.0.2

v0.0.1

05 Jun 22:59
5538161
Compare
Choose a tag to compare

This release is an extract of https://github.com/cloudfoundry-incubator/uaa-cli/tree/7b51e20e9814368fa367eb6ba6c3a5fdf953db0c/uaa. Modifications made:

  • Run goimports on all files
  • Modify imports of code.cloudfoundry.org/uaa-cli/uaa to github.com/cloudfoundry-community/uaa
  • Modify imports of code.cloudfoundry.org/uaa-cli/uaa/util to github.com/cloudfoundry-community/uaa/util
  • Modify imports of code.cloudfoundry.org/uaa-cli/uaa/fixtures to github.com/cloudfoundry-community/uaa/fixtures