Skip to content

Latest commit

 

History

History
174 lines (121 loc) · 6.61 KB

File metadata and controls

174 lines (121 loc) · 6.61 KB

v0.18.2

  • Dependencies: Bump STACKIT SDK core module to v0.26.0

v0.18.1

  • Dependencies: Bump STACKIT SDK core module from v0.24.1 to v0.25.0

v0.18.0

  • Minimal go version is now Go 1.25

v0.17.0

  • v2api:
    • Add TokenEndpoint field to CreateServiceAccountKeyResponseCredentials struct
    • Remove TokenEndpoint field from ServiceAccount struct
  • Deprecated SDK layer in root of the module:
    • Add TokenEndpoint field to CreateServiceAccountKeyResponseCredentials struct
    • Remove TokenEndpoint field from ServiceAccount struct

v0.16.1

  • Dependencies: Bump STACKIT SDK core module from v0.24.0 to v0.24.1

v0.16.0

  • Feature: Add TokenEndpoint field to ServiceAccount model

v0.15.1

  • Dependencies: Bump STACKIT SDK core module from v0.23.0 to v0.24.0

v0.15.0

  • Bugfix: Disable strict decoding of API responses
  • Feature: Add AdditionalProperties fields to model structs

v0.14.1

  • Dependencies: Bump STACKIT SDK core module from v0.22.0 to v0.23.0

v0.14.0

  • v2api:
    • Breaking Change: Rename model struct CreateFederatedIdentityProviderResponse to FederatedIdentityProvider
    • Breaking Change: Rename model struct CreateFederatedIdentityProviderResponseAssertionsInner to FederatedIdentityProviderAssertionsInner
  • Deprecated SDK layer in root of the module:
    • Breaking Change: Rename model struct CreateFederatedIdentityProviderResponse to FederatedIdentityProvider
    • Breaking Change: Rename model struct CreateFederatedIdentityProviderResponseAssertionsInner to FederatedIdentityProviderAssertionsInner

v0.13.0

  • Feature: Introduction of multi API version support for the serviceaccount SDK module. For more details please see the announcement on GitHub: #5062
  • v2api: New package which should be used for communication with the STACKIT serviceaccount API in the future
  • Deprecation: The contents in the root of this SDK module are marked as deprecated and will be removed after 2026-09-30. Switch to the new v2api package instead.
  • Dependencies: Bump STACKIT SDK core module from v0.21.1 to v0.22.0

v0.12.0

  • Feature: add support for Federated Identity Providers
    • new operations: CreateFederatedIdentityProvider, DeleteServiceFederatedIdentityProvider, ListFederatedIdentityProviders, PartialUpdateServiceAccountFederatedIdentityProvider
    • new models: CreateFederatedIdentityProviderPayload, CreateFederatedIdentityProviderPayloadAssertionsInner, CreateFederatedIdentityProviderResponse, CreateFederatedIdentityProviderResponseAssertionsInner, FederatedListFederatedIdentityProvidersResponse, PartialUpdateServiceAccountFederatedIdentityProviderPayload

v0.11.6

  • Bump STACKIT SDK core module from v0.21.0 to v0.21.1

v0.11.5

  • Dependencies: Bump github.com/golang-jwt/jwt/v5 from v5.3.0 to v5.3.1

v0.11.4

  • Bugfix: Correctly handle file closing for file uploads
  • Bump STACKIT SDK core module from v0.20.1 to v0.21.0

v0.11.3

  • Bump STACKIT SDK core module from v0.20.0 to v0.20.1

v0.11.2

  • Bump STACKIT SDK core module from v0.19.0 to v0.20.0

v0.11.1

  • Improvement: Improve error handling for CreateShortLivedAccessToken

v0.11.0

  • Feature: Add new Algorithm field to CreateServiceAccountKeyPayload model with enum values RSA_2048 and RSA_4096

v0.10.0

  • Feature: Add new enum for Key Algorithm RSA_4096

v0.9.1

  • Dependencies: Bump github.com/golang-jwt/jwt/v5 from v5.2.2 to v5.2.3

v0.9.0

  • Add required:"true" tags to model structs

v0.8.1 (2025-06-04)

  • Bugfix: Adjusted UnmarshalJSON function to use enum types and added tests for enums

v0.8.0 (2025-05-15)

  • Breaking change: Introduce interfaces for APIClient and the request structs

v0.7.0 (2025-05-14)

  • Breaking change: Introduce typed enum constants for status attributes

v0.6.3 (2025-05-09)

  • Feature: Update user-agent header

v0.6.2 (2025-04-29)

  • Bugfix: Correctly handle empty payload in body

v0.6.1 (2025-03-19)

  • Internal: Backwards compatible change to generated code

v0.6.0 (2025-02-21)

  • New: Minimal go version is now Go 1.21

v0.5.1 (2024-12-17)

  • Bugfix: Correctly handle nullable attributes in model types

v0.5.0 (2024-10-14)

  • Feature: Add support for nullable models

v0.4.0 (2024-04-11)

  • Set config.ContextHTTPRequest in Execute method
  • Support WithMiddleware configuration option in the client
  • Update core to v0.12.0

v0.3.7 (2024-04-09)

  • Remove unused model data types.

v0.3.6 (2024-02-28)

v0.3.5 (2024-02-02)

  • Improvement: Reword API client's description
  • Update core to v0.7.7. The http.request context is now passed in the client Do call.

v0.3.4 (2024-01-24)

  • Bug fix: NewAPIClient now initializes a new client instead of using http.DefaultClient (#236)

v0.3.3 (2024-01-15)

  • Add license and notice files

v0.3.2 (2024-01-09)

  • Dependency updates

v0.3.1 (2023-12-22)

  • Dependency updates

v0.3.0 (2023-12-20)

API methods, structs and waiters were renamed to have the same look and feel across all services and according to user feedback.

  • Changed methods:
    • GetAccessTokens renamed to ListAccessTokens
    • GetServiceAccountJWKS renamed to GetJWKS
    • GetServiceAccountKeys renamed to ListServiceAccountKeys
    • GetServiceAccounts renamed to ListServiceAccounts
    • GetUsers renamed to ListUsers
    • UpdateServiceAccountKey renamed to PartialUpdateServiceAccountKey
  • Changed structs:
    • AccessTokensResponse renamed to ListAccessTokensResponse
    • GetServiceAccountJWKS renamed to JWKS
    • GetServiceAccountsKeysResponse renamed to ListServiceAccountKeysResponse
    • IntrospectRequestBody renamed to IntrospectJWTPayload
    • IntrospectResponseBody renamed to IntrospectJWTResponse
    • JsonWebKey renamed to JWK
    • ServiceAccountImpersonationRequestBody renamed to ImpersonateServiceAccountPayload
    • ServiceAccountImpersonationResponse renamed to ImpersonateServiceAccountResponse
    • UpdateServiceAccountKeyPayload renamed to PartialUpdateServiceAccountKeyPayload
    • UpdateServiceAccountKeyResponse renamed to PartialUpdateServiceAccountKeyResponse

v0.2.0 (2023-11-10)