Skip to content

Commit 227012f

Browse files
authored
Merge pull request linode#6004 from bbiggerr/api-v4.142.1
[Release Candidate] v1.208.0
2 parents 33528be + b7233fe commit 227012f

File tree

6 files changed

+203
-175
lines changed

6 files changed

+203
-175
lines changed

_vendor/github.com/linode/linode-api-docs/v4/openapi.yaml

+161-160
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/modules.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# github.com/bep/turbo/v7 v7.20001.20100
66
# github.com/gohugoio/hugo-mod-jslibs/instantpage v0.5.1
77
# github.com/instantpage/instant.page v5.1.1+incompatible
8-
# github.com/linode/linode-api-docs/v4 v4.141.1-patch1
8+
# github.com/linode/linode-api-docs/v4 v4.142.1

docs/release-notes/api/v4.142.1.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: API v4.142.1
3+
date: 2023-01-10
4+
version: 4.142.1
5+
---
6+
7+
### Changed
8+
9+
* **Linode Clone** ([POST /linode/instances/{linodeId}/clone](/docs/api/linode-instances/#linode-clone))
10+
* Cloned Linodes can now be created with an assigned private IPv4 address when cloning to a new Linode.
11+
12+
* **Kubernetes Clusters List** ([GET /lke/clusters](/docs/api/linode-kubernetes-engine-lke/#kubernetes-clusters-list))
13+
* Response data for this command are now filterable by the `k8s_version` and `region` properties.
14+
15+
* **Maintenance List** ([GET /account/maintenance](/docs/api/account/#maintenance-list))
16+
* This command is no longer in beta, and can now be accessed via the `https://api.linode.com/v4` server path.
17+
* This command now returns completed maintenance items. Previously, only pending maintenance items were returned with this command.
18+
19+
* **Volume Attach** ([POST /volumes/{volumeId}/attach](/docs/api/volumes/#volume-attach))
20+
21+
**Volume Detach** ([POST /volumes/{volumeId}/detach](/docs/api/volumes/#volume-detach))
22+
* Events created by these commands now include the associated Linodes when attaching or detaching Block Storage Volumes.
23+
24+
### Fixed
25+
26+
* **Firewall Rules Update** ([PUT /networking/firewalls/{firewallId}/rules](/docs/api/networking/#firewall-rules-update))
27+
* Fixed a bug that prevented event creation when accessing this command. Now, an event is created when Firewall Rules are updated.
28+
29+
* Attempting to access or utilize a deleted StackScript now returns a 404 or 400 error, respectively. Previously, a 401 error was returned, which was inconsistent with the behavior of our other commands.
30+
31+
* Encoded StackScript data must not exceed 65535 characters in total length when making requests that involve Disk creation. Previously, requests that exceeded this limit resulted in a 500 error code with no additional information. Now, an error message is returned that references this limit.

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ go 1.15
44

55
require (
66
github.com/hotwired/turbo v7.0.1+incompatible // indirect
7-
github.com/linode/linode-api-docs/v4 v4.141.1-patch1 // indirect
7+
github.com/linode/linode-api-docs/v4 v4.142.1 // indirect
88
github.com/linode/linode-docs-theme v0.0.0-20230106153507-947d7d44f2ba // indirect
99
)

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ github.com/linode/linode-api-docs/v4 v4.141.0 h1:TF8m6aCkyT+be1tUYGErOfFuBeWPe8L
3737
github.com/linode/linode-api-docs/v4 v4.141.0/go.mod h1:JRT7kOTjArLJngT4KkAnxWNGszYSP+zlQg2OHQ407RI=
3838
github.com/linode/linode-api-docs/v4 v4.141.1-patch1 h1:8X6Los7eJuaIsjUtRe3GvoK421ajl5+9hDkTDPOYqZU=
3939
github.com/linode/linode-api-docs/v4 v4.141.1-patch1/go.mod h1:JRT7kOTjArLJngT4KkAnxWNGszYSP+zlQg2OHQ407RI=
40+
github.com/linode/linode-api-docs/v4 v4.142.1 h1:1JvsqUoW+EIscIJmR0nqyUhWwQUw8MS+jr9X30ibb4U=
41+
github.com/linode/linode-api-docs/v4 v4.142.1/go.mod h1:JRT7kOTjArLJngT4KkAnxWNGszYSP+zlQg2OHQ407RI=
4042
github.com/linode/linode-docs-theme v0.0.0-20220622135843-166f108e1933 h1:QchGQS6xESuyjdlNJEjvq2ftGX0sCTAhPhD5hAOJVMI=
4143
github.com/linode/linode-docs-theme v0.0.0-20220622135843-166f108e1933/go.mod h1:6kYeZt+rMvJFZ9Wbnm4CDSn8Sg1MuYjr2Kx6W/awiQM=
4244
github.com/linode/linode-docs-theme v0.0.0-20220718150422-ea48dbf69943 h1:BE3OgPTfmSdYeNUxcC1clIpJZhdMmYByCCCap0njwyY=

package-lock.json

+7-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)