Skip to content

Commit 1e4a1cb

Browse files
committed
Adds changelog for 2017-10-23 release
1 parent 3ac8b03 commit 1e4a1cb

File tree

1 file changed

+96
-0
lines changed

1 file changed

+96
-0
lines changed

docs/src/getting_started/changelogs/Changelogs.js

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,102 @@ 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>Added events for enabling/disabling TFA</li>
101+
<li>Added Longview and Image grants to GET /users/:id/grants and GET /profile/grants
102+
<ul>
103+
<li>Response now includes "longview" attribute whose value is an array of
104+
grants your user has that relate to longview clients</li>
105+
<li>Response now includes an "images" attribute whose value is an array of
106+
grants your user has that relate to images</li>
107+
<li>Only applies to restricted users</li>
108+
</ul>
109+
</li>
110+
<li>Event objects may now have Longview clients or Images as their entities</li>
111+
</ul>
112+
</section>
17113
<section>
18114
<h2>2017-10-04</h2>
19115
<hr /><br />

0 commit comments

Comments
 (0)