-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 335-helm-chart-tests-for-gateway-api-routes
- Loading branch information
Showing
60 changed files
with
666 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,9 +65,9 @@ jobs: | |
|
||
- name: Install Semantic Release | ||
run: | | ||
npm install -g semantic-release @semantic-release/git @semantic-release/exec gradle-semantic-release-plugin | ||
npm install -g conventional-changelog-conventionalcommits @commitlint/cli @commitlint/config-conventional | ||
npm install -g marked-mangle marked-gfm-heading-id | ||
npm install -g semantic-release@21.0.7 @semantic-release/git@10.0.1 @semantic-release/exec@6.0.3 gradle-semantic-release-plugin@1.7.6 | ||
npm install -g conventional-changelog-conventionalcommits@6.1.0 @commitlint/cli@17.6.6 @commitlint/config-conventional@17.6.6 | ||
npm install -g marked-mangle@1.0.1 marked-gfm-heading-id@3.0.4 [email protected] | ||
- name: Calculate Next Version | ||
env: | ||
|
@@ -212,9 +212,9 @@ jobs: | |
|
||
- name: Install Semantic Release | ||
run: | | ||
npm install -g semantic-release @semantic-release/git @semantic-release/exec gradle-semantic-release-plugin | ||
npm install -g conventional-changelog-conventionalcommits @commitlint/cli @commitlint/config-conventional | ||
npm install -g marked-mangle marked-gfm-heading-id | ||
npm install -g semantic-release@21.0.7 @semantic-release/git@10.0.1 @semantic-release/exec@6.0.3 gradle-semantic-release-plugin@1.7.6 | ||
npm install -g conventional-changelog-conventionalcommits@6.1.0 @commitlint/cli@17.6.6 @commitlint/config-conventional@17.6.6 | ||
npm install -g marked-mangle@1.0.1 marked-gfm-heading-id@3.0.4 [email protected] | ||
- name: Publish Semantic Release | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...rc/main/java/com/hedera/fullstack/examples/validators/InvalidStateSignatureValidator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright (C) 2023 Hedera Hashgraph, LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hedera.fullstack.examples.validators; | ||
|
||
import com.hedera.fullstack.validator.api.ValidationContext; | ||
import com.hedera.fullstack.validator.api.ValidationResult; | ||
import com.hedera.fullstack.validator.api.Validator; | ||
import java.util.concurrent.Future; | ||
|
||
public class InvalidStateSignatureValidator implements Validator { | ||
/** | ||
* @param context | ||
* @return | ||
*/ | ||
@Override | ||
public Future<ValidationResult> validate(ValidationContext context) { | ||
return null; | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
...mples/src/main/java/com/hedera/fullstack/examples/validators/PlatformStatusValidator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright (C) 2023 Hedera Hashgraph, LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hedera.fullstack.examples.validators; | ||
|
||
import com.hedera.fullstack.validator.api.ValidationContext; | ||
import com.hedera.fullstack.validator.api.ValidationResult; | ||
import com.hedera.fullstack.validator.api.Validator; | ||
import java.util.concurrent.CompletableFuture; | ||
import java.util.concurrent.Future; | ||
|
||
public class PlatformStatusValidator implements Validator { | ||
|
||
private PlatformStatusValidator() {} | ||
|
||
public static Builder builder() { | ||
return new Builder(); | ||
} | ||
|
||
@Override | ||
public Future<ValidationResult> validate(ValidationContext context) { | ||
return CompletableFuture.completedFuture(null); | ||
} | ||
|
||
public static class Builder { | ||
private Builder() {} | ||
|
||
public PlatformStatusValidator build() { | ||
return new PlatformStatusValidator(); | ||
} | ||
|
||
public Builder nodeId(String nodeId) { | ||
return this; | ||
} | ||
|
||
public Builder steps(String... targetStatuses) { | ||
return this; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.