Skip to content

Commit b8dd50b

Browse files
Merge pull request linode#266 from linode/release-1.1.39
Release 1.1.39
2 parents 745dd45 + 91a9092 commit b8dd50b

File tree

6 files changed

+118
-3
lines changed

6 files changed

+118
-3
lines changed

src/content/changelog/06-17-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ version: 4.1.0
1919
### Fixed
2020

2121
- Fixed failing validation for Internationalized Domain Names (IDN).
22-
- When using the the View Linode endpoint ([GET /linode/instances/{linodeId}](https://developers.linode.com/api/v4/linode-instances-linode-id)) Linodes that have not been assigned an IPv6 address will have their JSON correctly display *null*.
22+
- When using the View Linode endpoint ([GET /linode/instances/{linodeId}](https://developers.linode.com/api/v4/linode-instances-linode-id)) Linodes that have not been assigned an IPv6 address will have their JSON correctly display *null*.

src/content/changelog/08-12-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ version: 4.3.0
1111

1212
- Added a new View Managed SSH Key ([GET /managed/credentials/sshkey](https://developers.linode.com/api/v4/managed-credentials-sshkey)) endpoint. This endpoint returns the unique SSH public key assigned to your Linode account's [Managed service](https://www.linode.com/managed). If you [add this public key](https://linode.com/docs/platform/linode-managed/#adding-the-public-key) to a Linode on your account, Linode special forces will be able to log in to the Linode with this key when attempting to resolve issues.
1313

14-
- Added additional filtering for Events. Events returned by the the List Events ([GET /account/events](https://developers.linode.com/api/v4/account-events)) endpoint can be filtered by an Event entity's _id_ and _type_.
14+
- Added additional filtering for Events. Events returned by the List Events ([GET /account/events](https://developers.linode.com/api/v4/account-events)) endpoint can be filtered by an Event entity's _id_ and _type_.
1515

1616
There are a few edge cases when filtering Events by entity ID:
1717

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: '4.75.0: 2020-09-14'
3+
date: 2020-09-14T04:00:00.000Z
4+
version: 4.75.0
5+
changelog:
6+
- API
7+
---
8+
9+
### Added
10+
11+
[Linode Cloud Firewall](https://www.linode.com/products/firewall/) is now available in the Sydney data center as part our [Linode Green Light Beta Program](https://www.linode.com/green-light/). Cloud Firewall is a free service used to create, configure, and add stateful network-based firewalls to Linode services using the Linode Cloud Manager and the Linode APIv4. A Cloud Firewall is independent of the service it is attached to, so you can apply a single Firewall to multiple Linode services. Currently, a Cloud Firewall can only be applied to [Linode instances](/api/v4/linode-instances/#post).
12+
13+
* Cloud Firewall beta endpoints have been added to the Networking collection. **Note**: These endpoints are prepended with **`/v4beta`** instead of `/v4`.
14+
15+
* List Firewalls ([GET /networking/firewalls](/api/v4/networking-firewalls))
16+
* Create Firewall ([POST /networking/firewalls](/api/v4/networking-firewalls/#post))
17+
* View Firewall ([GET /networking/firewalls/{firewallId}](/api/v4/networking-firewalls-firewall-id))
18+
* Update Firewall ([PUT /networking/firewalls/{firewallId}](/api/v4/networking-firewalls-firewall-id/#put))
19+
* Delete Firewall ([DELETE /networking/firewalls/{firewallId}
20+
](/api/v4/networking-firewalls-firewall-id/#delete))
21+
* List Firewall Devices ([GET /networking/firewalls/{firewallId}/devices](/api/v4/networking-firewalls-firewall-id-devices))
22+
* Create Firewall Device ([POST /networking/firewalls/{firewallId}/devices](/api/v4/networking-firewalls-firewall-id-devices/#post))
23+
* View Firewall Device ([GET /networking/firewalls/{firewallId}/devices/{deviceId}](/api/v4/networking-firewalls-firewall-id-devices-device-id))
24+
* Delete Firewall Device ([DELETE /networking/firewalls/{firewallId}/devices/{deviceId}](/api/v4/networking-firewalls-firewall-id-devices-device-id/#delete))
25+
* List Firewall Rules ([GET /networking/firewalls/{firewallId}/rules](/api/v4/networking-firewalls-firewall-id-rules))
26+
* Update Firewall Rules ([PUT /networking/firewalls/{firewallId}/rules](/api/v4/networking-firewalls-firewall-id-rules/#put))
27+
28+
29+
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
title: Cloud Manager v1.19.0
3+
date: 2020-09-09T05:00:00.000Z
4+
version: 1.19.0
5+
changelog:
6+
- Cloud Manager
7+
---
8+
9+
### Added:
10+
11+
CMR:
12+
13+
- Managed Dashboard card to CMR dashboard
14+
- System Status section in Notification drawer
15+
16+
- Environment switcher for dev tools
17+
- Controls for mock service worker in dev tools
18+
19+
### Changed:
20+
21+
CMR:
22+
23+
- Change URL on Linode modal close
24+
- Make OAuth apps table sortable
25+
- Linode status icons should blink for in-progress actions
26+
- Adding CMR header to the config/disk clone landing
27+
- Table style updates for:
28+
- Account > Users
29+
- Managed
30+
- Billing
31+
- SelectPlanPanel
32+
- Make API tokens table sortable
33+
- Make Rescue dialog full height
34+
- Routing for Linode Modals
35+
- Graph labels hidden for mobile
36+
37+
Cloud Firewalls:
38+
39+
- All IPv6 for Firewalls should be read as ::/0
40+
- Disable port range in Firewalls drawer when selecting ICMP protocol
41+
- Update Firewall doc URL
42+
- Don't set outbound rules for firewall presets
43+
- Firewall labels are not required; remove required annotation from textfield
44+
45+
- Fix tab change handler
46+
- Improve error handling for API token drawer
47+
- Always honor Linodes "group by tag” setting
48+
- Stabilize table sort
49+
- Update MySQL info to clarify that we install MariaDB
50+
- Change Minecraft OCA to Minecraft: Java Edition
51+
- Display general errors at top of VolumeAttachmentDrawer
52+
53+
### Fixed:
54+
55+
CMR:
56+
57+
- Hide hidden links from mobile nav
58+
- Close action menu after action is selected
59+
- Move domains banner above table
60+
61+
- Prevent error message overlap on Firewalls detail
62+
- getLinode errors blocking landing page display
63+
- Console error (isResponsive prop not recognized)
64+
- Casing of NodeBalancer breadcrumb was incorrect
65+
- NodeBalancer Config form submission
66+
- Firewall detail breadcrumb
67+
- The search bar sometimes returned no results for restricted users
68+
- Managed Issue Drawer was crashing for users with empty timezones
69+
- Longview: MySQL tab not rendering if NGINX is not installed
70+
- Firewalls: handling of empty IPv6 responses
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Linode APIv4 JS Client v0.33.0
3+
date: 2020-09-09T05:00:00.000Z
4+
version: 0.33.0
5+
changelog:
6+
- APIv4 JS Client
7+
---
8+
9+
### Changed:
10+
11+
- Update TS interface for DomainRecord to include created/updated fields
12+
- Update FirewallRuleSchema to make inbound/outbound rules non-required
13+
14+
### Fixed:
15+
16+
- Fix type of getRegion JS Client method

src/content/tools/terraform-provider-linode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ external_url: https://terraform.io/docs/providers/linode/
77
weight: 1
88
---
99

10-
Linode's offical Terraform Provider. Terraform is an Infrastructure-as-code tool that includes management features for various types of Linode resources.
10+
Linode's official Terraform Provider. Terraform is an Infrastructure-as-code tool that includes management features for various types of Linode resources.

0 commit comments

Comments
 (0)