Skip to content

Latest commit

 

History

History
81 lines (59 loc) · 3.12 KB

File metadata and controls

81 lines (59 loc) · 3.12 KB

v0.10.0 (2024-03-08)

  • Feature: New API method CloneInstance to clone the instance

v0.9.2 (2024-02-28)

v0.9.1 (2024-02-06)

  • Bug fix: Fix CreateInstanceWaitHandler failing when instance isn't shown right after creation request

v0.9.0 (2024-02-05)

  • Feature: New API method UpdateUser to update user
  • Feature: New API method PartialUpdateUser to patch update user
  • Feature: New API method ResetUser to reset a user's password

v0.8.5 (2024-02-02)

  • Improvement: Required fields in CreateInstancePayload and UpdateBackupSchedulePayload are now labelled as such
  • Update core to v0.7.7. The http.request context is now passed in the client Do call.

v0.8.4 (2024-01-24)

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

v0.8.3 (2024-01-15)

  • Add license and notice files

v0.8.2 (2024-01-09)

  • Dependency updates

v0.8.1 (2023-12-22)

  • Dependency updates

v0.8.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:
    • GetBackups renamed to ListBackups
    • GetFlavors renamed to ListFlavors
    • GetInstances renamed to ListInstances
    • GetStorages renamed to ListStorages
    • GetUsers renamed to ListUsers
    • GetVersions renamed to ListVersions
    • UpdateInstance renamed to PartialUpdateInstance
  • Changed structs:
    • BackupResponse renamed to GetBackupResponse
    • BackupsResponse renamed to ListBackupsResponse
    • FlavorsResponse renamed to ListFlavorsResponse
    • GetUsersResponse renamed to ListUsersResponse
    • InstanceAcl renamed to ACL
    • InstanceBackup renamed to Backup
    • InstanceError renamed to Error
    • InstanceFlavor renamed to Flavor
    • InstanceListUser renamed to ListUsersResponseItem
    • InstanceResetUserResponse renamed to ResetUserResponse
    • InstanceSingleInstance renamed to Instance
    • InstanceStorage renamed to Storage
    • InstanceStorageRange renamed to StorageRange
    • InstanceUser renamed to User
    • InstancesResponse renamed to ListInstancesResponse
    • StoragesResponse renamed to ListStoragesResponse
    • UpdateInstancePayload renamed to PartialUpdateInstancePayload
    • UpdateInstanceResponse renamed to PartialUpdateInstanceResponse
    • UserResponse renamed to GetUserResponse
    • UsersResponse renamed to ListUsersResponse
    • VersionsResponse renamed to ListVersionsResponse Changed waiters:
    • UpdateInstanceWaitHandler renamed to PartialUpdateInstanceWaitHandler

v0.7.0 (2023-11-10)

  • Manage your STACKIT PostgreSQL Flex resources: Instance, Versions, Flavors, User, Storages
  • Waiters for async operations: CreateInstanceWaitHandler, UpdateInstanceWaitHandler, DeleteInstanceWaitHandler, DeleteUserWaitHandler
  • Usage example