Skip to content

Commit

Permalink
Merge branch 'main' into 0xaatif/change-method-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lemmih authored Jul 17, 2024
2 parents 64f5611 + 195b283 commit a04a426
Show file tree
Hide file tree
Showing 53 changed files with 1,755 additions and 1,189 deletions.
2 changes: 2 additions & 0 deletions .config/forest.dic
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ deserialize/D
destructuring
DNS
durations
EIP
enum
Enum
EOF
Expand All @@ -47,6 +48,7 @@ exa
FIL
Filecoin/M
Filops
FIP
FVM
GC
GiB
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/forest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@ jobs:
- build-ubuntu
name: Calibnet eth mapping check
runs-on: ubuntu-latest
if: false # Disabled due to spurious failures.
steps:
- run: lscpu
- uses: actions/cache@v4
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/lotus-api-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,17 @@ jobs:
run: |
NETWORK=calibnet
TAG=$(curl --silent https://api.github.com/repos/filecoin-project/lotus/releases | jq -r 'first | .tag_name')
sed -i "s/\(LOTUS_IMAGE=.*\):.*/\1:$TAG-$NETWORK/" ./scripts/tests/api_compare/.env
sed -i "s/\(LOTUS_IMAGE=.*\):.*/\1:$TAG-$NETWORK/" ./scripts/tests/snapshot_parity/.env
CURRENT_TAG=$(grep -oP 'LOTUS_IMAGE=.*:\K.*' ./scripts/tests/api_compare/.env)
# If the the latest tag reported by the API is greater than the one we are currently using, update it.
# This avoids PRs when a new tag is of lower major/minor version than the current one. We still need to follow the
# largest version for calibration network compatibility.
if [ "$(printf '%s\n' "$TAG" "$CURRENT_TAG" | sort -V | tail -n1)" != "$CURRENT_TAG" ]; then
echo "Updating Lotus version to $TAG"
sed -i "s/\(LOTUS_IMAGE=.*\):.*/\1:$TAG-$NETWORK/" ./scripts/tests/api_compare/.env
sed -i "s/\(LOTUS_IMAGE=.*\):.*/\1:$TAG-$NETWORK/" ./scripts/tests/snapshot_parity/.env
else
echo "Lotus version is already up to date"
fi
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: validate compose file
run: docker-compose -f .maintain/monitoring/docker-compose.yml config
run: docker-compose -f monitoring/docker-compose.yml config
- uses: hadolint/[email protected]
with:
dockerfile: "Dockerfile*"
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@
- [#4517](https://github.com/ChainSafe/forest/pull/4517) Add support for the
`Filecoin.StateGetAllocationForPendingDeal` RPC method.

- [#4526](https://github.com/ChainSafe/forest/pull/4526) Added
`forest-cli state compute` method, and a corresponding RPC method
`Forest.StateCompute`.

- [#4511](https://github.com/ChainSafe/forest/pull/4511) Add support for the
`Filecoin.EthMaxPriorityFeePerGas` RPC method.

- [#4474](https://github.com/ChainSafe/forest/pull/4474) Add new subcommand
`forest-cli healthcheck ready`.

### Changed

### Removed
Expand Down
Loading

0 comments on commit a04a426

Please sign in to comment.