Skip to content

Commit a312c77

Browse files
Merge pull request #92 from Dorthu/release-2018-04-19
Updated docs for 2018-04-23 release
2 parents 3602d63 + f37eacb commit a312c77

File tree

4 files changed

+56
-0
lines changed

4 files changed

+56
-0
lines changed

src/data/objects/account.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,14 @@ schema:
5959
type: Float
6060
description: This account's balance (in US Dollars).
6161
value: 0.00
62+
credit_card:
63+
type: object
64+
description: Information about your on-file credit card (used for payments)
65+
last_four:
66+
type: String
67+
value: 1111
68+
description: The last four digits of your on-file credit card.
69+
expiry:
70+
type: String
71+
value: 11/2022
72+
description: The expiration month and year of your on-file credit card.

src/data/objects/nodebalancer.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,18 @@ schema:
4747
type: Datetime
4848
value: "2017-09-30T11:21:01"
4949
description: When this NodeBalancer was last updated.
50+
transfer:
51+
type: object
52+
description: Transfer statistics for this NodeBalancer for the current month.
53+
in:
54+
type: Float
55+
value: 3821.6655349731445
56+
description: Inbound transfer
57+
out:
58+
type: Float
59+
value: 241188.2196378708
60+
description: Output transfer
61+
total:
62+
type: Float
63+
value: 245009.8851728439445
64+
description: Total transfer (in + out)

src/data/objects/volume.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ schema:
3737
type: Integer
3838
description: The ID of the linode this volume is attached to.
3939
value: 456
40+
filesystem_path:
41+
type: String
42+
value: /dev/disk/by-id/scsi-0Linode_Volume_my-volume
43+
description: >
44+
The full filesystem path for the Volume based on the Volume's label. Path
45+
is /dev/disk/by-id/scsi-0Linode_Volume_ + Volume label.
4046
enums:
4147
VolumeStatus:
4248
creating: creating

src/getting_started/changelogs/Changelogs.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,30 @@ export default function Authentication() {
1010
<section>
1111
<p>As releases are made Changelogs will be published here.</p>
1212
</section>
13+
<section>
14+
<h2>2018-04-23</h2>
15+
<hr /><br />
16+
<b>Features:</b>
17+
<ul>
18+
<li>Adds transfer to NodeBalancer GET endpoints
19+
<ul>
20+
<li>added a `transfer` envelope to NodeBalancer JSON response</li>
21+
<li>contains, `in`, `out`, and `total`</li>
22+
</ul>
23+
</li>
24+
<li>Return on-file credit card details
25+
<ul>
26+
<li>adds credit card envelope for `last_four` and `expiry` to GET /account</li>
27+
</ul>
28+
</li>
29+
<li>Added filesystem_path to Volume responses</li>
30+
</ul>
31+
<b>Bugfixes:</b>
32+
<ul>
33+
<li>Fix filtering GET /account/events - filtering on created/id</li>
34+
<li>Fixed 500 on networking endpoints for linodes without ipv6</li>
35+
</ul>
36+
</section>
1337
<section>
1438
<h2>2018-04-02</h2>
1539
<hr /><br />

0 commit comments

Comments
 (0)