Skip to content

1.2.49

Compare
Choose a tag to compare
@dshelbyo dshelbyo released this 18 Oct 22:55
· 706 commits to master since this release
00dead2

Added

  • Support for cost tracking tags in the Identity service
  • Support for generating and downloading wallets in the Database service
  • Support for creating a standalone backup from an on-premises database in the Database service
  • Support for db version and additional connection strings in the Autonomous Transaction Processing and Autonomous Data Warehouse resources of the Database service
  • Support for copying volume backups across regions in the Block Storage service (please see Known issue)
  • Support for deleting compartments in the Identity service
  • Support for reboot migration for virtual machines in the Compute service
  • Support for Instance Pools and Instance Configurations in the Compute service
  • lengthPerUploadPart provides a simpler way to control the size of parts when using Upload Manager

Breaking change

  • The dbDataSizeInMBs field in the com.oracle.bmc.database.model.Backup class was renamed to databaseSizeInGBs, and its type was changed from Integer to Double
    • Before
    private Integer dbDataSizeInMBs;
    • After
    private Double databaseSizeInGBs;
  • The data type of databaseEdition in the com.oracle.bmc.database.model.Backup class was changed from String to com.oracle.bmc.database.model.Backup.DatabaseEdition
    • Before
    private String databaseEdition;
    • After
    private DatabaseEdition databaseEdition;

Deprecated

  • UploadConfiguration.maxPartsForMultipartUpload and UploadConfiguration.minimumLengthPerUploadPart in Upload Manager are now deprecated; use UploadConfiguration.lengthPerUploadPart instead