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
+46Lines changed: 46 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,52 @@ 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
+
## 11.0.0 - 2019-10-01
8
+
### Added
9
+
- Support for required tags in the Identity service
10
+
- Support for work requests on tagging operations in the Identity service
11
+
- Support for enumerated tag values in the Identity service
12
+
- Support for moving dynamic routing gateway resources across compartments in the Networking service
13
+
- Support for migrating zones from Dyn managed DNS to OCI in the DNS service
14
+
- Support for fast provisioning for virtual machine databases in the Database service
15
+
16
+
### Breaking changes
17
+
- The field``CreateZoneDetails`` is no longer an anonymous field and the type changed from struct to interface in struct ``CreateZoneRequest``. Here is sample code that shows how to update your code to incorporate this change.
18
+
19
+
20
+
- Before
21
+
22
+
```golang
23
+
// There were two ways to initialize the CreateZoneRequest struct.
24
+
// This breaking change only impact option #2
25
+
request:= dns.CreateZoneRequest{}
26
+
27
+
// #1. Instantiate CreateZoneDetails directly: no impact
28
+
details:= dns.CreateZoneDetails{}
29
+
details.Name = common.String('some name')
30
+
// ... other properties
31
+
// Set it to the request class
32
+
request.CreateZoneDetails = details
33
+
34
+
// #2. Instantiate CreateZoneDetails through anonymous fields: will break
35
+
request.Name = common.String('some name')
36
+
// ... other properties
37
+
```
38
+
39
+
- After
40
+
41
+
```golang
42
+
// #2 no longer supported. Create CreateZoneDetails directly
43
+
details := dns.CreateZoneDetails{}
44
+
details.Name = common.String('some name')
45
+
// ... other properties
46
+
47
+
request := dns.CreateZoneRequest{
48
+
CreateZoneDetails: details
49
+
}
50
+
// ...
51
+
```
52
+
7
53
## 10.1.0 - 2019-09-24
8
54
### Added
9
55
- Supportfor selecting the Terraform version to use in the ResourceManager service
// ListDedicatedVmHostInstanceShapes Lists the shapes that can be used to launch a virtual machine (VM) instance on a dedicated VM host within the specified compartment.
1912
-
// You can filter the list by compatibility with a specific dedicated VM host shape.
1915
+
// ListDedicatedVmHostInstanceShapes Lists the shapes that can be used to launch a virtual machine instance on a dedicated virtual machine host within the specified compartment.
1916
+
// You can filter the list by compatibility with a specific dedicated virtual machine host shape.
0 commit comments