Skip to content

Commit acb836e

Browse files
authored
Merge pull request linode#154 from linode/release-1.1.14
Release 1.1.14
2 parents 128523d + c0156d6 commit acb836e

File tree

3 files changed

+87
-2
lines changed

3 files changed

+87
-2
lines changed

getDependencies.sh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1+
#!/usr/bin/env bash
2+
13
BLUE='\033[0;34m'
24
NC='\033[0m' # No Color
35

6+
SPEC_BRANCH="master"
7+
if [[ "$GIT_LOCAL_BRANCH" =~ ^(master|development)$ ]]; then
8+
SPEC_BRANCH="${GIT_LOCAL_BRANCH}"
9+
fi
10+
411
SPEC_FILE=""
512
if [ -n ${1} ]; then
613
SPEC_FILE=../${1}
@@ -24,7 +31,7 @@ else
2431
echo
2532
printf "${BLUE}Fetching API specs${NC}\n"
2633
cd -
27-
curl https://raw.githubusercontent.com/linode/linode-api-docs/master/openapi.yaml > static/api/docs/v4/openapi.yaml;
34+
curl "https://raw.githubusercontent.com/linode/linode-api-docs/${SPEC_BRANCH}/openapi.yaml" > static/api/docs/v4/openapi.yaml;
2835
fi
2936

3037
echo
@@ -37,4 +44,4 @@ printf "${BLUE}Converting YAML to JSON${NC}\n"
3744
node_modules/yamljs/bin/yaml2json static/api/docs/v4/openapi.yaml > static/api/docs/v4/spec.json
3845
# some data manipulation to fix the result of the conversion above
3946
sed -i.bak 's@\\\\[[:space:]]@\\\\\\n @g' static/api/docs/v4/spec.json
40-
rm static/api/docs/v4/spec.json.bak
47+
rm static/api/docs/v4/spec.json.bak
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: '4.14.0: 2020-02-10'
3+
date: 2020-02-10T05:00:00.000Z
4+
version: 4.14.0
5+
changelog:
6+
- API
7+
---
8+
### Added
9+
10+
- Added LKE node event `lke_node_create` to Event action list. See action information in the Event endpoints:
11+
- `List Events` ([GET /account/events](https://developers.linode.com/api/v4/account-events))
12+
- `View Event` ([GET /account/events/{eventId}](https://developers.linode.com/api/v4/account-events-event-id))
13+
14+
### Changed
15+
16+
- Updated the LKE Node Pool nodes array to return status information containing the node `id`, `instance_id` for the Linode if there is one, and node `status`. See the LKE Node Pool endpoints:
17+
18+
- `List Node Pools` ([GET /lke/clusters/{clusterId}/pools](https://developers.linode.com/api/v4/lke-clusters-cluster-id-pools))
19+
- `Create Node Pool` ([POST /lke/clusters/{clusterId}/pools](https://developers.linode.com/api/v4/lke-clusters-cluster-id-pools/#post))
20+
- `View Node Pool` ([GET /lke/clusters/{clusterId}/pools/{poolId}](https://developers.linode.com/api/v4/lke-clusters-cluster-id-pools-pool-id))
21+
- `Update Node Pool` ([PUT /lke/clusters/{clusterId}/pools/{poolId}](https://developers.linode.com/api/v4/lke-clusters-cluster-id-pools-pool-id/#put))
22+
- `Delete Node Pool` ([DELETE /lke/clusters/{clusterId}/pools/{poolId}](https://developers.linode.com/api/v4/lke-clusters-cluster-id-pools-pool-id/#delete))
23+
24+
### Fixed
25+
26+
- Previously, `View Network Utilization` ([GET /account/transfer/](https://developers.linode.com/api/v4/account-transfer)) did not include Object Storage outgoing network transfer in its network utilization for the current month. If you have the Linode Object Storage service enabled on your account, `View Network Utilization` will now include Object Storage's outgoing network transfer in its total returned amount.
27+
28+
- When a Linode that was deployed from a [StackScript](https://developers.linode.com/api/v4/linode-stackscripts) is deleted, that StackScript's `deployments_active` value should decrease. This property's value was incorrectly reporting the number of active deployments for a StackScript. This has been corrected.
29+
30+
- Previously, after booting a Linode into rescue mode ([POST /linode/instances/{linodeId}/rescue](https://developers.linode.com/api/v4/linode-instances-linode-id-rescue/#post)), when attempting to reboot your Linode ([POST /linode/instances/{linodeId}/reboot](https://developers.linode.com/api/v4/linode-instances-linode-id-reboot/#post)), you would receive an error message, `No bootable config found`. This bug has been fixed and the Linode will reboot into the latest configuration profile that isn't a rescue mode configuration profile.
31+
32+
- Restoring a Linode ([POST /linode/instances/{linodeId}/backups/{backupId}/restore](https://developers.linode.com/api/v4/linode-instances-linode-id-backups-backup-id-restore)) from a backup that was still in its postprocessing phase returned the error message "*backup is not valid*". The error message has been updated to be more descriptive. Now, when you attempt to restore a Linode from a backup that is still post processing, the returned error message is "*Backup is currently postprocessing*".
33+
34+
- Iterated on a bug fix with migrations, clones, and host information. If the migration is a disk **or** a clone, the `from_host` is the disk. Users can see migration job information in the Event endpoints:
35+
- `List Events` ([GET /account/events](https://developers.linode.com/api/v4/account-events))
36+
- `View Event` ([GET /account/events/{eventId}](https://developers.linode.com/api/v4/account-events-event-id))
37+
38+
- Fixed the url in the `Close Support Ticket` ([POST /support/tickets/{ticketId}/close](https://developers.linode.com/api/v4/support-tickets-ticket-id-close/#post)) endpoint's Request Sample shell curl example.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: Cloud Manager 1.0.0
3+
date: 2020-2-10T05:00:00.000Z
4+
version: 1.0.0
5+
changelog:
6+
- Cloud Manager
7+
---
8+
9+
### Added:
10+
11+
* New One-Click Apps:
12+
* MEAN
13+
* MongoDB
14+
* Flask
15+
* Django
16+
* Redis
17+
* Ruby on Rails
18+
* PostgreSQL
19+
20+
### Changed:
21+
22+
- Change default distro to Debian 10
23+
- Fix changelog to match GitHub release
24+
- Update graph units on Linode Details page
25+
- Fetch backups after selecting Linode in Linode Create
26+
- Toast notifications for Image related events
27+
- Unify graph colors across the app
28+
- LKE: Warn users before allowing a single-node cluster
29+
- LKE: Update typings for node pools
30+
- Show Domains Import Zone Drawer button when a user has no Domains
31+
- Improve compile time
32+
- Cleanup axios version management and aligning
33+
- Prevent unneeded requests when loading Lish window
34+
35+
### Fixed:
36+
37+
- Updating a Linode causes in-progress events to stop being displayed
38+
- Safari: Open ticket button issue
39+
- Remove plural for hour on DNS manager
40+
- 'Show More' tooltip accessibility fix

0 commit comments

Comments
 (0)