Skip to content

Commit 326ff1f

Browse files
authored
Merge pull request #122 from cloudgraphdev/alpha
Beta release
2 parents 4a934e2 + a180df7 commit 326ff1f

File tree

6 files changed

+30
-4
lines changed

6 files changed

+30
-4
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## [0.86.1-alpha.1](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.86.0...0.86.1-alpha.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.0](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.85.1...0.86.0) (2023-03-08)
10+
11+
12+
### Bug Fixes
13+
14+
* **CG-1328:** add account level s3 public access block for the rule check ([0ab5f21](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/0ab5f21c2d6dfd8d4697e731bd659c8b26101114))
15+
* **services:** expose scope on wafv2 ([82f044a](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/82f044a715795171414c87753ab5d81ffc15cbc5))
16+
* **services:** update format file for new schema ([2a3333f](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/2a3333fb4d3384564f24206384d3b0e8ae1f131b))
17+
* **services:** update route53 to have setIdentifier and name in the schema ([904ba79](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/904ba7969be00078ee33bc7890bf35dc6fb7ce1c))
18+
19+
20+
### Features
21+
22+
* **CG-1339:** add aws ebs snapshot ([376551a](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/376551ad7bdd0de51833351c24c13c99a974df93))
23+
* **CG-1339:** add kms connection to ebs snapshot ([beac5fd](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/beac5fd6bf78e29dac14cbbd4ae58f70dfe19cb0))
24+
* **CG-1339:** update README ([38a9d5e](https://github.com/cloudgraphdev/cloudgraph-provider-aws/commit/38a9d5e43c75734c73505bcc074fe2c61517617a))
25+
126
# [0.86.0-beta.1](https://github.com/cloudgraphdev/cloudgraph-provider-aws/compare/0.85.1...0.86.0-beta.1) (2023-03-08)
227

328

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-beta.1",
3+
"version": "0.86.1-alpha.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)