-
Notifications
You must be signed in to change notification settings - Fork 122
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 add-spawn-page
- Loading branch information
Showing
89 changed files
with
2,543 additions
and
813 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
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,2 @@ | ||
- `[x/provider]` Add check for zero rewards to the rewards distribution logic. | ||
([\#2363](https://github.com/cosmos/interchain-security/pull/2363)) |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/features/provider/2101-introduce-priority-validators.md
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,2 @@ | ||
- Allow consumer chains to specify a list of priority validators that are included in the validator set before other validators are considered | ||
([\#2101](https://github.com/cosmos/interchain-security/pull/2101)) |
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,3 @@ | ||
- `[x/provider]` Add validation for initial height and set | ||
default values for consumer initialization params. | ||
([\#2357](https://github.com/cosmos/interchain-security/pull/2357)) |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/state-breaking/2101-introduce-priority-validators.md
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,2 @@ | ||
- Allow consumer chains to specify a list of priority validators that are included in the validator set before other validators are considered | ||
([\#2101](https://github.com/cosmos/interchain-security/pull/2101)) |
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,3 @@ | ||
- `[x/provider]` Add validation for initial height and set | ||
default values for consumer initialization params. | ||
([\#2357](https://github.com/cosmos/interchain-security/pull/2357)) |
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,2 @@ | ||
- `[x/provider]` Add check for zero rewards to the rewards distribution logic. | ||
([\#2363](https://github.com/cosmos/interchain-security/pull/2363)) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,2 @@ | ||
*October 4, 2024* | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Generate testing docs | ||
|
||
on: | ||
workflow_call: | ||
pull_request: | ||
merge_group: | ||
push: | ||
branches: | ||
- main | ||
- release/v* | ||
- feat/* | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write # 'write' access to pull requests in order to update test documentation automatically | ||
|
||
jobs: | ||
testing-docs: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22" | ||
check-latest: true | ||
cache: true | ||
cache-dependency-path: go.sum | ||
- uses: technote-space/get-diff-action@v6.1.2 | ||
id: git_diff | ||
with: | ||
PATTERNS: | | ||
tests/integration/**/*.go | ||
**/Makefile | ||
Makefile | ||
- name: Generate testing docs | ||
if: env.GIT_DIFF | ||
run: make build-testing-docs | ||
|
||
- name: Check for changes and update automatically | ||
if: env.GIT_DIFF | ||
id: check_changes_and_update | ||
run: | | ||
git show HEAD:scripts/test_doc/test_documentation.md > committed_file.md | ||
cp scripts/test_doc/test_documentation.md generated_file.md | ||
if ! diff -q generated_file.md committed_file.md; then | ||
echo "Documentation for integration tests is out of date. Updating and pushing changes..." | ||
cp generated_file.md scripts/test_doc/test_documentation.md | ||
if [ -n "$GITHUB_HEAD_REF" ]; then | ||
branch=$GITHUB_HEAD_REF | ||
else | ||
branch=${GITHUB_REF#refs/heads/} | ||
fi | ||
git fetch origin $branch | ||
git checkout $branch | ||
cp generated_file.md scripts/test_doc/test_documentation.md | ||
git config user.name "github-actions" | ||
git config user.email "github-actions@github.com" | ||
git add scripts/test_doc/test_documentation.md | ||
git commit -m "Update testing documentation" | ||
git push origin "$branch" | ||
fi |
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
Oops, something went wrong.