Skip to content

Commit 7119cd9

Browse files
authored
Merge pull request #124 from cloudgraphdev/beta
Release 0.86.1
2 parents 1e450de + 5fc786d commit 7119cd9

File tree

6 files changed

+21
-4
lines changed

6 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## [0.86.1-beta.1](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.86.0...0.86.1-beta.1) (2023-03-15)
2+
3+
4+
### Bug Fixes
5+
6+
* **services:** fix iam role data crash ([2219849](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/2219849c1a0c3bb5b6c99901e0e945520b67a4d1))
7+
* **services:** whitespace fixs ([d21b273](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/d21b273a8d1002fe6dbb998bc2ffef1294dc44d3))
8+
9+
## [0.86.1-alpha.1](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.86.0...0.86.1-alpha.1) (2023-03-15)
10+
11+
12+
### Bug Fixes
13+
14+
* **services:** fix iam role data crash ([2219849](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/2219849c1a0c3bb5b6c99901e0e945520b67a4d1))
15+
* **services:** whitespace fixs ([d21b273](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/d21b273a8d1002fe6dbb998bc2ffef1294dc44d3))
16+
117
# [0.86.0](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.85.1...0.86.0) (2023-03-08)
218

319

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudgraph/cg-provider-aws",
3-
"version": "0.86.0",
3+
"version": "0.86.1-beta.1",
44
"description": "cloud-graph provider plugin for AWS used to fetch AWS cloud data.",
55
"publishConfig": {
66
"registry": "https://registry.npmjs.org/",

src/services/ebsSnapshot/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const listEbsSnapshotAttribute = async ({
6161
return resolve([])
6262
}
6363

64-
return resolve(data?.CreateVolumePermissions)
64+
return resolve(data?.CreateVolumePermissions ?? [])
6565
}
6666
)
6767
)

src/services/iamRole/data.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ export const getAccountAuthorizationDetails = async (
157157
}
158158
resolve(result)
159159
}
160+
resolve([])
160161
}
161162
)
162163
})

src/services/vpc/data.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,13 @@ export default async ({
9494
/**
9595
* No Vpcs Found
9696
*/
97-
9897
if (isEmpty(vpcs)) {
9998
return resolveRegion()
10099
}
101100

102101
/**
103102
* Check to see if there are more
104103
*/
105-
106104
if (token) {
107105
listVpcData({ region, token, ec2, resolveRegion })
108106
}

src/types/generated.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1534,6 +1534,7 @@ export type AwsEbsSnapshot = AwsBaseService & {
15341534
description?: Maybe<Scalars['String']>;
15351535
ebs?: Maybe<Array<Maybe<AwsEbs>>>;
15361536
encrypted?: Maybe<Scalars['Boolean']>;
1537+
kms?: Maybe<Array<Maybe<AwsKms>>>;
15371538
kmsKeyId?: Maybe<Scalars['String']>;
15381539
outpostArn?: Maybe<Scalars['String']>;
15391540
ownerAlias?: Maybe<Scalars['String']>;
@@ -3342,6 +3343,7 @@ export type AwsKms = AwsBaseService & {
33423343
description?: Maybe<Scalars['String']>;
33433344
dmsReplicationInstances?: Maybe<Array<Maybe<AwsDmsReplicationInstance>>>;
33443345
dynamodb?: Maybe<Array<Maybe<AwsDynamoDbTable>>>;
3346+
ebsSnapshots?: Maybe<Array<Maybe<AwsEbsSnapshot>>>;
33453347
ecsCluster?: Maybe<Array<Maybe<AwsEcsCluster>>>;
33463348
efs?: Maybe<Array<Maybe<AwsEfs>>>;
33473349
eksCluster?: Maybe<Array<Maybe<AwsEksCluster>>>;

0 commit comments

Comments
 (0)