Skip to content

Commit

Permalink
Bump golang.org/x/net from 0.0.0-20220127200216-cd36cc0744dd to 0.7.0 (
Browse files Browse the repository at this point in the history
…aws-controllers-k8s#69)

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20220127200216-cd36cc0744dd to 0.7.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/golang/net/commits/v0.7.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20220127200216-cd36cc0744dd&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/aws-controllers-k8s/memorydb-controller/network/alerts).

</details>
  • Loading branch information
dependabot[bot] authored and Kyrie Chen committed Mar 3, 2023
1 parent 8c9fb09 commit d4b64fd
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 12 deletions.
13 changes: 11 additions & 2 deletions test/e2e/scenarios/ACL/acl_create_update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ steps:
UserNames:
- userone$RANDOM_SUFFIX
- usertwo$RANDOM_SUFFIX
- id: "UPDATE_ACL"
description: "Update userNames"
- id: "UPDATE_ACL_WITH_USERNAMES_AND_TAGS"
description: "Update userNames and tags"
patch:
apiVersion: $CRD_GROUP/$CRD_VERSION
kind: ACL
Expand All @@ -95,6 +95,9 @@ steps:
spec:
userNames:
- userone$RANDOM_SUFFIX
tags:
- key: "test_key_1"
value: "test_value_1"
wait:
status:
conditions:
Expand All @@ -105,9 +108,15 @@ steps:
spec:
userNames:
- userone$RANDOM_SUFFIX
tags:
- key: "test_key_1"
value: "test_value_1"
expect_aws:
UserNames:
- userone$RANDOM_SUFFIX
Tags:
- Key: "test_key_1"
Value: "test_value_1"
- id: "ACL_DELETE"
description: "Delete ACL"
delete:
Expand Down
13 changes: 11 additions & 2 deletions test/e2e/scenarios/Cluster/cluster_create_update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,18 @@ steps:
name: acl$RANDOM_SUFFIX
expect_aws:
Name: acl$RANDOM_SUFFIX
- id: "UPDATE_ACL"
description: "Update ACL"
- id: "UPDATE_ACL_AND_TAGS"
description: "Update ACL and tags"
patch:
apiVersion: $CRD_GROUP/$CRD_VERSION
kind: Cluster
metadata:
name: cluster$RANDOM_SUFFIX
spec:
aclName: acl$RANDOM_SUFFIX
tags:
- key: "test_key_1"
value: "test_value_1"
wait:
status:
conditions:
Expand All @@ -143,8 +146,14 @@ steps:
expect_k8s:
spec:
aclName: acl$RANDOM_SUFFIX
tags:
- key: "test_key_1"
value: "test_value_1"
expect_aws:
ACLName: acl$RANDOM_SUFFIX
Tags:
- Key: "test_key_1"
Value: "test_value_1"
- id: "PG_INITIAL_CREATE"
description: "PG with activerehashing as no"
create:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
id: "PG_UPDATE_WITH_PARAMS"
description: "In this test we create PG and update the parameter"
description: "In this test we create PG and update it"
#marks:
# - slow
# - blocked
Expand Down Expand Up @@ -32,12 +32,15 @@ steps:
Family: memorydb_redis6
Description: PG with no params while creating
- id: "PG_UPDATE"
description: "Update activerehashing to no"
description: "Update activerehashing to no and update tags"
patch:
spec:
parameterNameValues:
- parameterName: activerehashing
parameterValue: "no"
tags:
- key: "test_key_1"
value: "test_value_1"
wait:
status:
conditions:
Expand All @@ -49,10 +52,16 @@ steps:
parameterNameValues:
- parameterName: activerehashing
parameterValue: "no"
tags:
- key: "test_key_1"
value: "test_value_1"
expect_aws:
Parameters:
- Name: activerehashing
Value: "no"
Tags:
- Key: "test_key_1"
Value: "test_value_1"
- id: "PG_RESET"
description: "Update parameterNameValues to empty list"
patch:
Expand Down
12 changes: 9 additions & 3 deletions test/e2e/scenarios/SubnetGroup/subnetgroup_create_update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ steps:
description: Subnet group update
expect_aws:
Description: Subnet group update
- id: "UPDATE_SUBNET"
- id: "UPDATE_SUBNETS"
description: "Update SubnetGroup SubnetIds"
patch:
spec:
Expand All @@ -69,14 +69,17 @@ steps:
expect_aws:
Subnets:
- Identifier: $SUBNET2
- id: "UPDATE_SUBNET_DESCRIPTION"
description: "Update SubnetGroup SubnetIds and Description"
- id: "UPDATE_SUBNETS_DESCRIPTION_AND_TAGS"
description: "Update SubnetGroup SubnetIds, Description, and Tags"
patch:
spec:
description: Subnet group update description and subnets
subnetIDs:
- $SUBNET1
- $SUBNET2
tags:
- key: "test_key_1"
value: "test_value_1"
wait:
status:
conditions:
Expand All @@ -89,6 +92,9 @@ steps:
subnetIDs:
- $SUBNET1
- $SUBNET2
tags:
- key: "test_key_1"
value: "test_value_1"
expect_aws:
Description: Subnet group update description and subnets
Subnets:
Expand Down
16 changes: 13 additions & 3 deletions test/e2e/scenarios/User/user_create_update.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
id: "USER_CREATE_UPDATE"
description: "In this test we create User and Update"
description: "In this test we create User and update it"
#marks:
# - slow
# - blocked
Expand Down Expand Up @@ -54,15 +54,18 @@ steps:
accessString: off resetchannels -@all +get
expect_aws:
AccessString: off resetchannels -@all +get
- id: "USER_UPDATE_PASSWORD"
description: "Update Password"
- id: "USER_UPDATE_PASSWORD_AND_TAGS"
description: "Update Password and Tags"
patch:
spec:
authenticationMode:
type_: password
passwords:
- key: password
name: $SECRET2
tags:
- key: "test_key_1"
value: "test_value_1"
wait:
status:
conditions:
Expand All @@ -76,6 +79,13 @@ steps:
passwords:
- key: password
name: $SECRET2
tags:
- key: "test_key_1"
value: "test_value_1"
expect_aws:
Tags:
- Key: "test_key_1"
Value: "test_value_1"
- id: "USER_UPDATE_ACCESS_STRING_AND_SECRET"
description: "Update Secret and AccessString"
patch:
Expand Down

0 comments on commit d4b64fd

Please sign in to comment.