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
Squashed commit of the following:
commit df39d2d8d6b59705a26aa068bf985449893e9f9f
Author: Jason Yin <[email protected]>
Date: Thu May 31 17:08:31 2018 +0000
Releasing version 1 6 0
Copy file name to clipboardExpand all lines: CHANGELOG.md
+47-1
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,55 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
7
-
## 1.5.0 - 2018-05-17
7
+
## 1.6.0 - 2018-05-31
8
8
### Added
9
+
- Support for the "soft shutdown" instance action in the Compute service
10
+
- Support for Auth Token management in the Identity service
9
11
- Support for backup or clone of multiple volumes at once using volume groups in the Block Storage service
12
+
- Support for launching a database system from a backup in the Database service
13
+
14
+
### Breaking changes
15
+
-``LaunchDbSystemDetails`` is renamed to ``LaunchDbSystemBase`` and the type changed from struct to interface in ``LaunchDbSystemRequest``. Here is sample code that shows how to update your code to incorporate this change.
16
+
17
+
- Before
18
+
19
+
```golang
20
+
// create a LaunchDbSystemRequest
21
+
// There were two ways to initialize the LaunchDbSystemRequest struct.
22
+
// This breaking change only impact option #2
23
+
request:= database.LaunchDbSystemRequest{}
24
+
25
+
// #1. explicity create LaunchDbSystemDetails struct (No impact)
0 commit comments