Skip to content

Commit 4f08067

Browse files
authored
Merge pull request linode#124 from linode/release-1.1.8
Release 1.1.8
2 parents aedd33a + 1e30ada commit 4f08067

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

src/components/5_templates/changelogs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const query = graphql`
5353
html
5454
frontmatter {
5555
title
56-
date(fromNow: true)
56+
date(formatString: "MMMM Do, YYYY")
5757
version
5858
}
5959
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: '4.11.0:2019-12-16'
3+
date: 2019-12-16T21:00:00.000Z
4+
version: 4.11.0
5+
changelog:
6+
- API
7+
---
8+
### Added
9+
10+
* The `View Account` ([GET /account](https://developers.linode.com/api/docs/v4/account)) and the `Update Account` ([PUT /account](https://developers.linode.com/api/docs/v4/account)) endpoints have been updated to include a new field `euuid`. This field is an external unique indentifier for this customer.
11+
* The following endpoints have the new field `last_successful` adedd to the `backups` envelope within the `Linode` object. This field is the date and time of the last successful backup if there was one. If there was no backup, 'None' is shown.
12+
* `List Linodes` ([GET /linode/instances](https://developers.linode.com/api/docs/v4/linode/instances))
13+
* `Create Linode` ([PUT /linode/instances](https://developers.linode.com/api/docs/v4/linode/instances))
14+
* `View Linode` ([GET /linode/instances/{linodeId}](https://developers.linode.com/api/docs/v4/linode/instances/{linodeId}))
15+
* `Update Linode` ([PUT /linode/instances/{linodeId}](https://developers.linode.com/api/docs/v4/linode/instances/{linodeId}))
16+
* `Rebuild Linode` ([POST /linode/instances/{linodeId}/rebuild](https://developers.linode.com/api/docs/v4/linode/instances/{linodeId}/rebuild))
17+
* Added end of life to image endpoints. This displays the image's distribution's planned end of life. This `eol` response parameter has been added to the following endpoints:
18+
* List Images ([GET /images](https://developers.linode.com/api/v4/images)])
19+
* Create Image ([POST /images](https://developers.linode.com/api/v4/images#post))
20+
* View Image [(GET /images/:imageId)](https://developers.linode.com/api/v4/images-image-id)
21+
* Update Image [(PUT /images/:imageId)](https://developers.linode.com/api/v4/images-image-id#put)

src/pages/changelog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const query = graphql`
5252
html
5353
frontmatter {
5454
title
55-
date(fromNow: true)
55+
date(formatString: "MMMM Do, YYYY")
5656
changelog
5757
version
5858
}

0 commit comments

Comments
 (0)