Skip to content

Commit 3de87a9

Browse files
committed
merge v2.7.0 change log from github back to bitbucket
Squashed commit of the following: commit ecc71c6e71d95f6a8ec1b437e85f611a2bfa07c5 Author: Jason Yin <[email protected]> Date: Mon Oct 29 13:48:07 2018 -0700 add before commit 1484c2d3e870cc4bda46713c97411ddd1e87bd27 Author: Jason Yin <[email protected]> Date: Mon Oct 29 13:46:00 2018 -0700 remove extra space commit cf114851972a3809cb9560aac04dd2cf9684f9b0 Author: Jason Yin <[email protected]> Date: Mon Oct 29 13:45:06 2018 -0700 fix change log error commit d2a3766 Author: Esteban Ginez <[email protected]> Date: Fri Oct 19 17:24:02 2018 -0700 Update CHANGELOG.md commit 8331745 Author: Esteban G <[email protected]> Date: Thu Oct 18 15:49:39 2018 -0700 Removing unncessary text from changelog commit 24f3c66 Author: Esteban G <[email protected]> Date: Thu Oct 18 15:33:53 2018 -0700 Moving changelog changes to right release commit 8276c3d Author: Esteban Ginez <[email protected]> Date: Thu Oct 18 14:36:27 2018 -0700 Changes to changelog to reflect api modifications (#136)
1 parent 893b72e commit 3de87a9

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

CHANGELOG.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
1010
- Support for generating and downloading wallets in the Database service
1111
- Support for creating a standalone backup from an on-premises database in the Database service
1212
- Support for db version and additional connection strings in the Autonomous Transaction Processing and Autonomous Data Warehouse resources of the Database service
13-
- Support for copying volume backups across regions in the Block Storage service
13+
- Support for copying volume backups across regions in the Block Storage service (please see Known issue)
1414
- Support for deleting compartments in the Identity service
1515
- Support for reboot migration for virtual machines in the Compute service
1616
- Support for Instance Pools and Instance Configurations in the Compute service
@@ -19,6 +19,38 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
1919
- The signing algorithm does not lower case the header fields [Github issue 132](https://github.com/oracle/oci-go-sdk/issues/132)
2020
- Raw configuration provider does not check for empty strings [Github issue 134](https://github.com/oracle/oci-go-sdk/issues/134)
2121

22+
### Known issue
23+
- Block Storage service for copying volume backups across regions is not enabled
24+
25+
### Breaking change
26+
- DbDataSizeInMBs field in Backup and BackupSummary struct was renamed to DatabaseSizeInGBs and type changed from *int to *float64
27+
- Before
28+
```golang
29+
// Size of the database in megabytes (MB) at the time the backup was taken.
30+
DbDataSizeInMBs *int `mandatory:"false" json:"dbDataSizeInMBs"`
31+
```
32+
33+
- After
34+
35+
```golang
36+
// The size of the database in gigabytes at the time the backup was taken.
37+
DatabaseSizeInGBs *float64 `mandatory:"false" json:"databaseSizeInGBs"`
38+
```
39+
- Data type for DatabaseEdition in Backup and BackupSummary struct was changed from *string to BackupDatabaseEditionEnum
40+
- Before
41+
42+
```golang
43+
// The Oracle Database edition of the DB system from which the database backup was taken.
44+
DatabaseEdition *string `mandatory:"false" json:"databaseEdition"`
45+
```
46+
47+
- After
48+
49+
```golang
50+
// The Oracle Database edition of the DB system from which the database backup was taken.
51+
DatabaseEdition BackupDatabaseEditionEnum `mandatory:"false" json:"databaseEdition,omitempty"`
52+
```
53+
2254
## 2.6.0 - 2018-10-04
2355
### Added
2456
- Support for trusted partner images through application listings and subscriptions in the Compute service

0 commit comments

Comments
 (0)