Skip to content

Commit 4010f41

Browse files
authored
Merge pull request #85 from oracle/changelog-update
Changelog update with known issue and breaking change.
2 parents 00dead2 + 82a052c commit 4010f41

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,35 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
1919
- Support for generating and downloading wallets in the Database service
2020
- Support for creating a standalone backup from an on-premises database in the Database service
2121
- Support for db version and additional connection strings in the Autonomous Transaction Processing and Autonomous Data Warehouse resources of the Database service
22-
- Support for copying volume backups across regions in the Block Storage service
22+
- Support for copying volume backups across regions in the Block Storage service (please see Known issue)
2323
- Support for deleting compartments in the Identity service
2424
- Support for reboot migration for virtual machines in the Compute service
2525
- Support for Instance Pools and Instance Configurations in the Compute service
2626
- `lengthPerUploadPart` provides a simpler way to control the size of parts when using Upload Manager
2727

28+
### Known issue
29+
- Block Storage service for copying volume backups across regions is not yet enabled
30+
31+
### Breaking change
32+
- 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`
33+
- Before
34+
```java
35+
private Integer dbDataSizeInMBs;
36+
```
37+
- After
38+
```java
39+
private Double databaseSizeInGBs;
40+
```
41+
- 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`
42+
- Before
43+
```java
44+
private String databaseEdition;
45+
```
46+
- After
47+
```java
48+
private DatabaseEdition databaseEdition;
49+
```
50+
2851
### Deprecated
2952
- `UploadConfiguration.maxPartsForMultipartUpload` and `UploadConfiguration.minimumLengthPerUploadPart` in Upload Manager are now deprecated; use `UploadConfiguration.lengthPerUploadPart` instead
3053

0 commit comments

Comments
 (0)