Skip to content

Commit f23cc11

Browse files
authored
Merge pull request #2646 from Dorthu/adds-2017-10-23-changelog
Adds changelog for 2017-10-23 release
2 parents bd21eb2 + 1fad40e commit f23cc11

File tree

1 file changed

+108
-0
lines changed

1 file changed

+108
-0
lines changed

docs/src/getting_started/changelogs/Changelogs.js

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,114 @@ export default function Authentication() {
1414
API V4 since 2017-09-18. Please check here regularly for updates.
1515
</p>
1616
</section>
17+
<section>
18+
<h2>2017-10-23</h2>
19+
<hr /><br />
20+
<b>Breaking Changes:</b><br />
21+
<ul>
22+
<li>Changed POST /account/payments
23+
<ul>
24+
<li>Now accepts "usd" as a string representing a dollar amount, including cents</li>
25+
<li>Valid values include "0.10", "10.00", "100.20", and "$1.00"</li>
26+
<li>Invalid values include 10, 10.01, "10", "10.001", and "10.0"</li>
27+
</ul>
28+
</li>
29+
</ul>
30+
<b>Changes:</b><br />
31+
<ul>
32+
<li>Added GET /account/notifications
33+
<ul>
34+
<li>Read-only collection of Notification objects</li>
35+
<li>Returns important information about your account that may require action</li>
36+
</ul>
37+
</li>
38+
<li>Added GET /images
39+
<ul>
40+
<li>Lists images on your account</li>
41+
</ul>
42+
</li>
43+
<li>Added GET /images/:id
44+
<ul>
45+
<li>View a single image on your account</li>
46+
</ul>
47+
</li>
48+
<li>Added PUT /images/:id
49+
<ul>
50+
<li>Update an image on your account</li>
51+
</ul>
52+
</li>
53+
<li>Added DELETE /images/:id
54+
<ul>
55+
<li>Deleted an image you own</li>
56+
</ul>
57+
</li>
58+
<li>Added POST /linode/instances/:id/disks/:id/imagize
59+
<ul>
60+
<li>Created a new image from a disk you own</li>
61+
</ul>
62+
</li>
63+
<li>Added GET /longview/clients
64+
<ul>
65+
<li>Returns a list of Longview clients on your account</li>
66+
</ul>
67+
</li>
68+
<li>Added GET /longview/clients/:id
69+
<ul>
70+
<li>Returns information on a single Longview client</li>
71+
</ul>
72+
</li>
73+
<li>Added DELETE /longview/clients/:id
74+
<ul>
75+
<li>Removes a longview client from your account</li>
76+
</ul>
77+
</li>
78+
<li>Added GET /longview/subscriptions
79+
<ul>
80+
<li>Returns all available longview subscription tiers</li>
81+
</ul>
82+
</li>
83+
<li>Added GET /longview/subscriptions/:id
84+
<ul>
85+
<li>Returns information one longview subscription tier</li>
86+
</ul>
87+
</li>
88+
<li>Changed GET /account/settings
89+
<ul>
90+
<li>Added "longview_subscription" - the tier at which you are subscribed
91+
to longview</li>
92+
</ul>
93+
</li>
94+
<li>Changed PUT /account/settings
95+
<ul>
96+
<li>Sending in "null" or a longview subscription id changes your longview
97+
subscription tier.</li>
98+
</ul>
99+
</li>
100+
<li>Change POST /linode/instances
101+
<ul>
102+
<li>Now accepts image - the ID of an image to deploy the linode with</li>
103+
<li>Only one source attribute may be provided</li>
104+
</ul>
105+
</li>
106+
<li>Changed POST /linode/instances/:id/rebuild
107+
<ul>
108+
<li>Now accepts image - the ID of an image to rebuild the linode with</li>
109+
<li>Only one source attribute may be provided</li>
110+
</ul>
111+
</li>
112+
<li>Added events for enabling/disabling TFA</li>
113+
<li>Added Longview and Image grants to GET /users/:id/grants and GET /profile/grants
114+
<ul>
115+
<li>Response now includes "longview" attribute whose value is an array of
116+
grants your user has that relate to longview clients</li>
117+
<li>Response now includes an "images" attribute whose value is an array of
118+
grants your user has that relate to images</li>
119+
<li>Only applies to restricted users</li>
120+
</ul>
121+
</li>
122+
<li>Event objects may now have Longview clients or Images as their entities</li>
123+
</ul>
124+
</section>
17125
<section>
18126
<h2>2017-10-04</h2>
19127
<hr /><br />

0 commit comments

Comments
 (0)