You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,35 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
19
19
- Support for generating and downloading wallets in the Database service
20
20
- Support for creating a standalone backup from an on-premises database in the Database service
21
21
- 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)
23
23
- Support for deleting compartments in the Identity service
24
24
- Support for reboot migration for virtual machines in the Compute service
25
25
- Support for Instance Pools and Instance Configurations in the Compute service
26
26
-`lengthPerUploadPart` provides a simpler way to control the size of parts when using Upload Manager
27
27
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
+
privateInteger dbDataSizeInMBs;
36
+
```
37
+
-After
38
+
```java
39
+
privateDouble databaseSizeInGBs;
40
+
```
41
+
-The data type of `databaseEdition` in the `com.oracle.bmc.database.model.Backup` classwas 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
+
28
51
### Deprecated
29
52
- `UploadConfiguration.maxPartsForMultipartUpload` and `UploadConfiguration.minimumLengthPerUploadPart` in Upload Manager are now deprecated; use `UploadConfiguration.lengthPerUploadPart` instead
0 commit comments