Skip to content

Commit

Permalink
Merge branch 'main' into kwtalley/serde-any-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iramiller authored Jun 20, 2024
2 parents 0ef12d2 + ad559d9 commit 8145063
Show file tree
Hide file tree
Showing 4 changed files with 221 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- uses: docker/build-push-action@v5
- uses: docker/build-push-action@v6
with:
context: .
target: run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/proto-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
git commit -S -m "Update buf.lock to latest commit hash"
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6.0.5
uses: peter-evans/create-pull-request@v6.1.0
with:
base: main
branch: provenanceio-bot/patch-buf-lock
Expand Down
79 changes: 78 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,82 @@ Ref: https://keepachangelog.com/en/1.0.0/
* Simplify the module lists (e.g. `SetOrderEndBlockers`) by removing unneeded entries [#2015](https://github.com/provenance-io/provenance/pull/2015).
* Update the `upgrade-test.sh` script to work with v0.50 commands [#2026](https://github.com/provenance-io/provenance/pull/2026).
* Set the new gov params fields during the umber upgrades [#2027](https://github.com/provenance-io/provenance/pull/2027).
* Add a bunch of queries to the stargate whitelist [#2037](https://github.com/provenance-io/provenance/pull/2037).
* /cosmos.auth.v1beta1.Query/Accounts
* /cosmos.auth.v1beta1.Query/AccountAddressByID
* /cosmos.auth.v1beta1.Query/ModuleAccounts
* /cosmos.auth.v1beta1.Query/ModuleAccountByName
* /cosmos.auth.v1beta1.Query/Bech32Prefix
* /cosmos.auth.v1beta1.Query/AddressBytesToString
* /cosmos.auth.v1beta1.Query/AddressStringToBytes
* /cosmos.auth.v1beta1.Query/AccountInfo
* /cosmos.authz.v1beta1.Query/Grants
* /cosmos.authz.v1beta1.Query/GranterGrants
* /cosmos.authz.v1beta1.Query/GranteeGrants
* /cosmos.bank.v1beta1.Query/AllBalances
* /cosmos.bank.v1beta1.Query/SpendableBalances
* /cosmos.bank.v1beta1.Query/SpendableBalanceByDenom
* /cosmos.bank.v1beta1.Query/TotalSupply
* /cosmos.bank.v1beta1.Query/DenomMetadataByQueryString
* /cosmos.bank.v1beta1.Query/DenomsMetadata
* /cosmos.bank.v1beta1.Query/DenomOwners
* /cosmos.bank.v1beta1.Query/DenomOwnersByQuery
* /cosmos.bank.v1beta1.Query/SendEnabled
* /cosmos.circuit.v1.Query/Account
* /cosmos.circuit.v1.Query/Accounts
* /cosmos.circuit.v1.Query/DisabledList
* /cosmos.consensus.v1.Query/Params
* /cosmos.distribution.v1beta1.Query/ValidatorDistributionInfo
* /cosmos.distribution.v1beta1.Query/ValidatorOutstandingRewards
* /cosmos.distribution.v1beta1.Query/ValidatorSlashes
* /cosmos.distribution.v1beta1.Query/DelegationRewards
* /cosmos.distribution.v1beta1.Query/DelegationTotalRewards
* /cosmos.distribution.v1beta1.Query/DelegatorValidators
* /cosmos.distribution.v1beta1.Query/CommunityPool
* /cosmos.evidence.v1beta1.Query/Evidence
* /cosmos.evidence.v1beta1.Query/AllEvidence
* /cosmos.feegrant.v1beta1.Query/Allowance
* /cosmos.feegrant.v1beta1.Query/Allowances
* /cosmos.feegrant.v1beta1.Query/AllowancesByGranter
* /cosmos.gov.v1beta1.Query/Proposal
* /cosmos.gov.v1beta1.Query/Proposals
* /cosmos.gov.v1beta1.Query/Vote
* /cosmos.gov.v1beta1.Query/Votes
* /cosmos.gov.v1beta1.Query/Params
* /cosmos.gov.v1beta1.Query/Deposit
* /cosmos.gov.v1beta1.Query/Deposits
* /cosmos.gov.v1beta1.Query/TallyResult
* /cosmos.gov.v1.Query/Constitution
* /cosmos.group.v1.Query/GroupInfo
* /cosmos.group.v1.Query/GroupPolicyInfo
* /cosmos.group.v1.Query/GroupMembers
* /cosmos.group.v1.Query/GroupsByAdmin
* /cosmos.group.v1.Query/GroupPoliciesByGroup
* /cosmos.group.v1.Query/GroupPoliciesByAdmin
* /cosmos.group.v1.Query/Proposal
* /cosmos.group.v1.Query/ProposalsByGroupPolicy
* /cosmos.group.v1.Query/VoteByProposalVoter
* /cosmos.group.v1.Query/VotesByProposal
* /cosmos.group.v1.Query/VotesByVoter
* /cosmos.group.v1.Query/GroupsByMember
* /cosmos.group.v1.Query/TallyResult
* /cosmos.group.v1.Query/Groups
* /cosmos.mint.v1beta1.Query/Params
* /cosmos.mint.v1beta1.Query/Inflation
* /cosmos.mint.v1beta1.Query/AnnualProvisions
* /cosmos.slashing.v1beta1.Query/SigningInfos
* /cosmos.staking.v1beta1.Query/Validators
* /cosmos.staking.v1beta1.Query/Validator
* /cosmos.staking.v1beta1.Query/ValidatorDelegations
* /cosmos.staking.v1beta1.Query/ValidatorUnbondingDelegations
* /cosmos.staking.v1beta1.Query/DelegatorDelegations
* /cosmos.staking.v1beta1.Query/DelegatorUnbondingDelegations
* /cosmos.staking.v1beta1.Query/Redelegations
* /cosmos.staking.v1beta1.Query/DelegatorValidators
* /cosmos.staking.v1beta1.Query/DelegatorValidator
* /cosmos.staking.v1beta1.Query/HistoricalInfo
* /cosmos.staking.v1beta1.Query/Pool


### Client Breaking

Expand Down Expand Up @@ -136,7 +212,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
- Bump `github.com/cometbft/cometbft` from 0.38.5 to 0.38.7 ([#1912](https://github.com/provenance-io/provenance/pull/1912), [#1959](https://github.com/provenance-io/provenance/pull/1959))
- Bump `cosmossdk.io/x/upgrade` from 0.1.0 to 0.1.3 ([#1913](https://github.com/provenance-io/provenance/pull/1913), [#2026](https://github.com/provenance-io/provenance/pull/2026))
- Bump `github.com/hashicorp/go-metrics` from 0.5.2 to 0.5.3 ([#1914](https://github.com/provenance-io/provenance/pull/1914))
- Bump `peter-evans/create-pull-request` from 6.0.2 to 6.0.5 ([#1929](https://github.com/provenance-io/provenance/pull/1929), [#1940](https://github.com/provenance-io/provenance/pull/1940), [#1955](https://github.com/provenance-io/provenance/pull/1955))
- Bump `peter-evans/create-pull-request` from 6.0.2 to 6.1.0 ([#1929](https://github.com/provenance-io/provenance/pull/1929), [#1940](https://github.com/provenance-io/provenance/pull/1940), [#1955](https://github.com/provenance-io/provenance/pull/1955), [#2040](https://github.com/provenance-io/provenance/pull/2040))
- Bump `cosmossdk.io/x/tx` from 0.13.1 to 0.13.3 ([#1928](https://github.com/provenance-io/provenance/pull/1928), [#1944](https://github.com/provenance-io/provenance/pull/1944))
- Bump `cosmwasm-std` from 1.4.1 to 1.4.4 ([#1950](https://github.com/provenance-io/provenance/pull/1950))
- Bump `golangci/golangci-lint-action` from 4 to 6 ([#1951](https://github.com/provenance-io/provenance/pull/1951), [#1965](https://github.com/provenance-io/provenance/pull/1965))
Expand All @@ -155,6 +231,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
- Bump `cosmossdk.io/x/evidence` from 0.1.0 to 0.1.1 [#2026](https://github.com/provenance-io/provenance/pull/2026)
- Bump `cosmossdk.io/x/circuit` from 0.1.0 to 0.1.1 ([#2035](https://github.com/provenance-io/provenance/pull/2035))
- Bump `github.com/spf13/cobra` from 1.8.0 to 1.8.1 ([#2038](https://github.com/provenance-io/provenance/pull/2038))
- Bump `docker/build-push-action` from 5 to 6 ([#2039](https://github.com/provenance-io/provenance/pull/2039))

---

Expand Down
Loading

0 comments on commit 8145063

Please sign in to comment.