Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sdk 46 #3

Closed
wants to merge 165 commits into from
Closed

sdk 46 #3

wants to merge 165 commits into from

Conversation

faddat
Copy link

@faddat faddat commented Oct 2, 2022

O- Bump sdk version to v0.45.5

  • Bump github.com/stretchr/testify from 1.7.2 to 1.8.0
  • Remove unnecessary string
  • Prevent migration to a restricted code
  • Restrict code access config modifications
  • Remove outdated proto.md
  • Remove unnecessary error check
  • Create .gitpod.yml
  • Don't pass non-wasm events to reply()
  • Oops
  • Add changelog for fix
  • Fix tests in keeper
  • Add sorting fix from terra devs
  • Fix imports
  • Code cleanup suggested by @peterbourgon
  • put sorting fix next to event filtering
  • Add changelog entry
  • 457
  • upgrade ci
  • go get -> go install
  • change denom to new format
  • Update config.yml
  • Revert "change denom to new format"
  • bump ibc-go to v3.2.x
  • Update config.yml
  • but not done
  • TestInitGenesis fails
  • use gofumpt
  • some minor fix
  • Update config.yml
  • linting
  • Setifexists
  • fix wasm export
  • SetInterfaceRegistry
  • Update dependabot.yml
  • fix gas limit
  • nil srcExp
  • govv1
  • govv1 in TestQueryContractInfo
  • snapshot test
  • fix gas in test, v1beta -> v1
  • govv1 in encoding test
  • fix wasm.go
  • with valset in bench
  • Make app keepers public (Make app keepers public CosmWasm/wasmd#951)
  • Fix keeper test
  • Bump actions/checkout from 2.3.5 to 3.0.2
  • depracte-ioutil (remove io/ioutil CosmWasm/wasmd#934)
  • Bump github/codeql-action from 1 to 2 (Bump github/codeql-action from 1 to 2 CosmWasm/wasmd#954)
  • Bump bufbuild/buf-setup-action from 0.7.0 to 1.7.0
  • close 815: upgrade to go 1.18 (close 815: upgrade to go 1.18 CosmWasm/wasmd#866)
  • Revert changes in protogen script (Revert changes in protogen script CosmWasm/wasmd#956)
  • sdk v0.46.1 and tm v0.34.21
  • Ugrade sdk to v0.45.7 (Ugrade sdk to v0.45.7 CosmWasm/wasmd#959)
  • Bump github.com/prometheus/client_golang from 1.12.2 to 1.13.0
  • Fix codeql analyzer branch config
  • automatic fixes from "golangci-lint run ./... --fix"
  • bump ica
  • fix proposal integration test: line 178 shoud be require.Error
  • sdk v0.45.8
  • Update CHANGELOG.md
  • ibc 5-rc1
  • Charge gas to unzip wasm code (Charge gas to unzip wasm code CosmWasm/wasmd#898)
  • Remove obsolete cli gov params
  • add params query
  • Upgrade thirdparty protos (Upgrade thirdparty protos CosmWasm/wasmd#977)
  • add pin code flag to store code proposal
  • change default behavior to always pin
  • fix tag
  • turbo 46
  • turbo46
  • Bump github.com/spf13/viper from 1.12.0 to 1.13.0
  • Upgrade to wasmvm v1.1.0
  • Update changelog
  • Update README.md
  • Introduce AccessTypeAnyOfAddresses
  • Prevent empty addresses list
  • Formatting only
  • Parse any of address in CLI; more tests
  • More tests
  • Upgrade keyring/ go-keychain dependency
  • ibc-go v3.2.0 (ibc-go v3.2.0 CosmWasm/wasmd#937)
  • Add query for the total supply of a coin (Add query for the total supply of a coin CosmWasm/wasmd#903)
  • fix bug of contract history
  • Test contract history order
  • Revert "Create .gitpod.yml"
  • Better wasmvm 1.1 integration test (Better wasmvm 1.1 integration test CosmWasm/wasmd#988)
  • Rename features to availableCapabilities (Rename features to availableCapabilities CosmWasm/wasmd#993)
  • Link to medium article
  • Make contract addresses predictable
  • Revert "turbo 46"
  • Revert "turbo46"
  • fix flagproposaltype
  • update
  • use keyed fields
  • Add factory contract scenario
  • Fix genesis message tooling
  • Minor cleanup
  • Bump ibc proto to v3.2.0
  • bank keeper
  • fix test genesis with valset
  • gov address
  • gas in test
  • Update changelog
  • Add migration note
  • Fix master -> main in CI config
  • Always run docker-image
  • Add libwasmvm version check
  • Bump wasmvm to 1.1.1
  • Upgrade .a files to 1.1.1
  • Fix path to proofs in protos
  • Bump github.com/cosmos/ibc-go/v3 from 3.2.0 to 3.3.0
  • Prune vesting accounts balances (Prune vesting accounts balances CosmWasm/wasmd#1003)
  • Implement improvements to new address generation (Implement improvements to new address generation CosmWasm/wasmd#1014)
  • Changelog for v0.29.0-rc1 (Changelog for v0.29.0-rc1 CosmWasm/wasmd#1018)
  • ibc-go v5.0.0
  • update gas per suggestion
  • bring branch up to date with ibc-go v5.0.0
  • attempt to fix remaining bug
  • Fix: typos

alpe and others added 30 commits June 13, 2022 10:28
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.7.2 to 1.8.0.
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.7.2...v1.8.0)

---
updated-dependencies:
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…ithub.com/stretchr/testify-1.8.0

Bump github.com/stretchr/testify from 1.7.2 to 1.8.0
Output events are not part of consensus and can be non-deterministic
…asm-events-to-reply

Don't pass non-wasm events to reply()
vuong177 and others added 29 commits September 16, 2022 13:01
Bumps [github.com/cosmos/ibc-go/v3](https://github.com/cosmos/ibc-go) from 3.2.0 to 3.3.0.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v3.3.0/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v3.2.0...v3.3.0)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
…github.com/cosmos/ibc-go/v3-3.3.0

Bump github.com/cosmos/ibc-go/v3 from 3.2.0 to 3.3.0
* Prevent out of gas

* Prune vesting account denoms only

* Fix test state

* Move account exists error  up again

* Review feedback: better naming
* Revert default instance address generation to classic sequence based method

 Please enter the commit message for your changes. Lines starting

* Start re-adding classic address generator

* Extract address generation to file; minor updates

* Review comments

* Set max salt size

* Support predictable address on instantiation

* Switch attribute order for backwards compatiblity

* Fix salt param check in CLI

* Enable tests

* Add more tests

* Minor fix

* Remove migration

* Better cli description

* Fix init message length prefix

* Add sanity checks to address generation and minor updates

* Reduce max length in tests for CI

* CLI and address generation updates

* Add test vectors

* Minor updates

* Fix cli long doc
* Update changelog

* Update CHANGELOG.md

Co-authored-by: Simon Warta <[email protected]>

Co-authored-by: Simon Warta <[email protected]>
Fix: typos
@pr0n00gler pr0n00gler closed this Feb 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.