Skip to content

Commit dd7114b

Browse files
authored
Merge pull request #2825 from Dorthu/release-changelogs
Adds changelog for release and link to mailing list
2 parents 653cbba + 6ef3544 commit dd7114b

File tree

2 files changed

+67
-2
lines changed

2 files changed

+67
-2
lines changed

docs/src/getting_started/changelogs/Changelogs.js

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,70 @@ export default function Authentication() {
1515
</p>
1616
</section>
1717
<section>
18+
<h2>2017-12-11</h2>
19+
<hr /><br />
20+
<b>Breaking:</b><br />
21+
<ul>
22+
<li>Unify Distributions and Images
23+
<ul>
24+
<li>Removes Distribution.architecture</li>
25+
<li>Renames Distribution.updated to last_used (Datetime)</li>
26+
<li>Renames Distribution.disk_minimum to min_deploy_size (Integer)</li>
27+
<li>Adds Distribution.filesystem (String)</li>
28+
<li>Adds Distribution.created (Datetime)</li>
29+
<li>Adds Distribution.description (String)</li>
30+
<li>Adds Distribution.status (String)</li>
31+
<li>Adds Distribution.type (String)</li>
32+
<li>Adds Distribution.is_public (Boolean)</li>
33+
<li>Adds Distribution.creator (String)</li>
34+
<li>Adds Image.deprecated (Boolean)</li>
35+
</ul>
36+
</li>
37+
<li>Renamed "distribution" to "image"
38+
<ul>
39+
<li>POST /linode/instances takes "image" instead of "distribution"</li>
40+
<li>POST /linode/instances/:id/disks takes "image" instead of "distribution"</li>
41+
<li>POST /linode/instances/:id/rebuild takes "image" instead of "distribution"</li>
42+
<li>Linode object returns "image" instead of "distribution"</li>
43+
<li>StackScript object returns "images" instead of "distributions"</li>
44+
</ul>
45+
</li>
46+
<li>Change Image IDs to Slugs
47+
<ul>
48+
<li>slugs match the format private/:image_id</li>
49+
</ul>
50+
</li>
51+
<li>Moved volumes to top level
52+
<ul>
53+
<li>Changed all references from /linode/volumes to /volumes</li>
54+
</ul>
55+
</li>
56+
</ul>
57+
<b>Features:</b><br />
58+
<ul>
59+
<li>Added POST account/payments/paypal
60+
<ul>
61+
<li>Stages a PayPal payment and returns the payment_id</li>
62+
</ul>
63+
</li>
64+
<li>Added POST account/payments/paypal/execute
65+
<ul>
66+
<li>Execute a PayPal payment that has been authorized in PayPal</li>
67+
<li>This is required for Linode to capture funds and credit your account</li>
68+
</ul>
69+
</li>
70+
<li>Added POST /domains/$id/clone
71+
<ul>
72+
<li>New endpoint can be reached at POST domains/:domain_id/clone</li>
73+
<li>Requires a new domain be provided in the post body</li>
74+
</ul>
75+
</li>
76+
</ul>
77+
<b>Bugfixes:</b><br />
78+
<ul>
79+
<li>Ensure POST domain/records accepts and honors ttl_sec</li>
80+
<li>Fixed Linode create from a Stackscript using UDFs</li>
81+
</ul>
1882
<h2>2017-11-20</h2>
1983
<hr /><br />
2084
<b>Breaking Changes:</b><br />

docs/src/getting_started/intros/Introduction.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ export default function Introduction() {
3434
<div className="alert alert-warning" role="alert">
3535
We will regularly be making releases, some of which will contain breaking
3636
changes. <Link to={`/${API_VERSION}/changelogs`}>
37-
Please look at the changelogs
38-
</Link> to keep up to date with recent changes.
37+
Please review the changelogs
38+
</Link> and <Link to="https://welcome.linode.com/api">
39+
subscribe to the mailing list</Link> for updates on changes and releases.
3940
</div>
4041
<p>
4142
Occasionally we will add features and improvements to our API -

0 commit comments

Comments
 (0)