Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.85 KB

File metadata and controls

39 lines (31 loc) · 1.85 KB

v0.8.0 (2024-01-09)

  • Zone has a new filed Labels, which is an array of labels (key-value pairs) associated to a zone
  • ListZones can be filtered by label keys or values
  • CloneZonePayload has a flag AdjustRecords to adjust the record set content of the cloned zone (replaces the dns name of the original zone with the new dns name of the cloned zone)
  • Dependency updates

v0.7.1 (2023-12-22)

  • Dependency updates

v0.7.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:
    • GetRecordSets renamed to ListRecordSets
    • GetZones renamed to ListZones
    • UpdateRecord renamed to PartialUpdateRecord
    • UpdateRecordSet renamed to PartialUpdateRecordSet
    • UpdateZone renamed to PartialUpdateZone
  • Changed structs:
    • CloneZoneRequest renamed to CloneZonePayload
    • MoveCodeValidationRequest renamed to ValidateMoveCodePayload
    • MoveZoneRequest renamed to MoveZonePayload
    • RecordSetsResponse renamed to ListRecordSetsResponse
    • UpdateRecordPayload renamed to PartialUpdateRecordPayload
    • UpdateRecordSetPayload renamed to PartialUpdateRecordSetPayload
    • UpdateZonePayload renamed to PartialUpdateZonePayload
    • ZonesResponse renamed to ListZonesResponse
  • Changed waiters:
    • UpdateZoneWaitHandler renamed to PartialUpdateZoneWaitHandler
    • UpdateRecordSetWaitHandler renamed to PartialUpdateRecordSetWaitHandler

v0.6.0 (2023-11-10)

  • Manage your STACKIT DNS resources: Zones, RecordSet
  • Waiters for async operations: CreateZoneWaitHandler, UpdateZoneWaitHandler, DeleteZoneWaitHandler, CreateRecordSetWaitHandler, UpdateRecordSetWaitHandler, DeleteRecordSetWaitHandler
  • Usage example