Skip to content

Commit

Permalink
Merge pull request #299 from bnb-chain/develop
Browse files Browse the repository at this point in the history
release: prepare release for v0.2.3-alpha.1
  • Loading branch information
randyahx committed Jun 26, 2023
2 parents 4ead664 + ca02e2a commit 27b85f2
Show file tree
Hide file tree
Showing 43 changed files with 2,050 additions and 715 deletions.
1 change: 0 additions & 1 deletion .github/workflows/buf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ jobs:
- name: Test protobuf changes generates new go files
run: |
export PATH="$PATH:$(go env GOPATH)/bin"
go get github.com/ghodss/yaml
make tools proto-gen-check
40 changes: 39 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## v0.2.3-alpha.1
This release enables several features and bugfixes:

Features
* [#281](https://github.com/bnb-chain/greenfield/pull/281) feat: add versioned parameters to payment module
* [#287](https://github.com/bnb-chain/greenfield/pull/287) feat: use median store price for secondary sp price
* [#292](https://github.com/bnb-chain/greenfield/pull/292) feat: allows for setting a custom http client when NewGreenfieldClient
* [#288](https://github.com/bnb-chain/greenfield/pull/288) feat: limit the interval for updating quota
* [#297](https://github.com/bnb-chain/greenfield/pull/297) feat: refine payment and update default parameter

Bugfixes
* [#279](https://github.com/bnb-chain/greenfield/pull/279) fix: fix the security issues
* [#280](https://github.com/bnb-chain/greenfield/pull/280) fix: update go.mod to be compatible with ignite
* [#286](https://github.com/bnb-chain/greenfield/pull/286) fix: update storage discontinue param's default value
* [#295](https://github.com/bnb-chain/greenfield/pull/295) add missing field to event
* [#285](https://github.com/bnb-chain/greenfield/pull/285) fix: ACTION_UPDATE_OBJECT_INFO not allowed to be used on object's bug

## v0.2.2
This release enables several features and some bugfix:

Features
* [#249](https://github.com/bnb-chain/greenfield/pull/249) feat: support multiple messages in single tx for EIP712
* [#250](https://github.com/bnb-chain/greenfield/pull/250) feat: allow mirror bucket/object/group using name
* [#268](https://github.com/bnb-chain/greenfield/pull/268) feat: record challenge attestation result
* [#276](https://github.com/bnb-chain/greenfield/pull/276) feat: allow user to pass keyManager into Txopt

Bugfix
* [#248](https://github.com/bnb-chain/greenfield/pull/248) fix: add versioned params e2e's test
* [#252](https://github.com/bnb-chain/greenfield/pull/252) fix: remove paramsclient from sdk and swagger
* [#254](https://github.com/bnb-chain/greenfield/pull/254) fix: fix potential int64 multiplication overflow
* [#255](https://github.com/bnb-chain/greenfield/pull/255) fix: verify permission openapi params
* [#263](https://github.com/bnb-chain/greenfield/pull/263) fix: QueryGetSecondarySpStorePriceByTime may wrong data
* [#267](https://github.com/bnb-chain/greenfield/pull/267) chore: update swagger
* [#271](https://github.com/bnb-chain/greenfield/pull/271) fix: check every module's Msg
* [#270](https://github.com/bnb-chain/greenfield/pull/270) fix: sp check when reject seal object
* [#269](https://github.com/bnb-chain/greenfield/pull/269) fix: fix wrong link in readme
* [#274](https://github.com/bnb-chain/greenfield/pull/274) fix: add sp address check when deposit

## v0.2.2-alpha.2

This release enables 2 features:
Expand All @@ -16,7 +54,7 @@ This release enables 2 features:

## v0.2.1-alpha.1

This release enable two features:
This release[CHANGELOG.md](CHANGELOG.md) enable two features:
- support multiple messages in single tx
- allow mirror bucket/object/group using name

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tools:
go install github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway

proto-gen:
cd proto && buf generate && cp -r github.com/bnb-chain/greenfield/x/* ../x && cp -r github.com/bnb-chain/greenfield/types/* ../types &&rm -rf github.com && go mod tidy
cd proto && buf generate && cp -r github.com/bnb-chain/greenfield/x/* ../x && cp -r github.com/bnb-chain/greenfield/types/* ../types && rm -rf github.com && go mod tidy

proto-swagger-gen:
sh ./scripts/protoc-swagger-gen.sh
Expand Down
2 changes: 1 addition & 1 deletion deployment/localup/localup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function generate_genesis() {
sed -i -e "s/\"challenge_keep_alive_period\": \"300\"/\"challenge_keep_alive_period\": \"50\"/g" ${workspace}/.local/validator${i}/config/genesis.json
sed -i -e "s/\"heartbeat_interval\": \"1000\"/\"heartbeat_interval\": \"100\"/g" ${workspace}/.local/validator${i}/config/genesis.json
sed -i -e "s/\"attestation_inturn_interval\": \"120\"/\"attestation_inturn_interval\": \"10\"/g" ${workspace}/.local/validator${i}/config/genesis.json
sed -i -e "s/\"discontinue_confirm_period\": \"604800\"/\"discontinue_confirm_period\": \"15\"/g" ${workspace}/.local/validator${i}/config/genesis.json
sed -i -e "s/\"discontinue_confirm_period\": \"604800\"/\"discontinue_confirm_period\": \"5\"/g" ${workspace}/.local/validator${i}/config/genesis.json
sed -i -e "s/\"discontinue_deletion_max\": \"10000\"/\"discontinue_deletion_max\": \"1\"/g" ${workspace}/.local/validator${i}/config/genesis.json
sed -i -e "s/\"voting_period\": \"30s\"/\"voting_period\": \"10s\"/g" ${workspace}/.local/validator${i}/config/genesis.json
done
Expand Down
1 change: 1 addition & 0 deletions e2e/tests/bridge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
sdkmath "cosmossdk.io/math"
"github.com/cosmos/cosmos-sdk/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
_ "github.com/ghodss/yaml"
"github.com/stretchr/testify/suite"

"github.com/bnb-chain/greenfield/e2e/core"
Expand Down
Loading

0 comments on commit 27b85f2

Please sign in to comment.