Releases: CosmosContracts/juno
v2.3.0-beta.2
If you run this on your mainnet node it will die.
This is the same as v2.3.0-beta.1
except with the addition of a throwaway upgrade handler for uni-2
.
The upgrade handler is called lupercalia-beta
.
v2.3.0-beta.1
If you run this on your mainnet node it will die.
v2.3.0-beta
Integrate mainline wasmd so we can test on uni.
This release contains a fix to the cache issue that caused a uni chain halt.
What's Changed
- Add edge pr tag and CW test harness by @the-frey in #136
- Security Patch by @JakeHartnell in #137
- tooling: spike binary release action by @the-frey in #139
- Remove sleep from CI step by @the-frey in #138
- Add name to upload binary step by @the-frey in #140
- Use mainline wasmd by @the-frey in #146
- moneta patch handler -> lupercalia handler by @the-frey in #148
- Bump to wasmd 0.23.0 by @the-frey in #149
- Add validation to min-commission antehandle by @giansalex in #150
- Remove custom /txs endpoint by @giansalex in #147
- Tidy deps by @the-frey in #152
- 2nd rocks patch by @faddat in #141
- Add forced commission update to lupercalia by @the-frey in #153
- Bump wasmvm to 1.0.0-beta6 by @the-frey in #156
Full Changelog: v2.1.0...v2.3.0-beta
v2.3.0-alpha.2
Integrate mainline wasmd so we can test on uni.
What's Changed
- Add edge pr tag and CW test harness by @the-frey in #136
- Security Patch by @JakeHartnell in #137
- tooling: spike binary release action by @the-frey in #139
- Remove sleep from CI step by @the-frey in #138
- Add name to upload binary step by @the-frey in #140
- Use mainline wasmd by @the-frey in #146
- moneta patch handler -> lupercalia handler by @the-frey in #148
- Bump to wasmd 0.23.0 by @the-frey in #149
- Add validation to min-commission antehandle by @giansalex in #150
- Remove custom /txs endpoint by @giansalex in #147
- Tidy deps by @the-frey in #152
- 2nd rocks patch by @faddat in #141
- Add forced commission update to lupercalia by @the-frey in #153
Full Changelog: v2.1.0...v2.3.0-alpha.2
v2.3.0-alpha.1
Integrate mainline wasmd so we can test on uni.
What's Changed
- Add edge pr tag and CW test harness by @the-frey in #136
- Security Patch by @JakeHartnell in #137
- tooling: spike binary release action by @the-frey in #139
- Remove sleep from CI step by @the-frey in #138
- Add name to upload binary step by @the-frey in #140
- Use mainline wasmd by @the-frey in #146
- moneta patch handler -> lupercalia handler by @the-frey in #148
- Bump to wasmd 0.23.0 by @the-frey in #149
- Add validation to min-commission antehandle by @giansalex in #150
- Remove custom /txs endpoint by @giansalex in #147
Full Changelog: v2.1.0...v2.3.0-alpha.1
v2.3.0-alpha
Integrate mainline wasmd so we can test on uni
.
What's Changed
- Add edge pr tag and CW test harness by @the-frey in #136
- Security Patch by @JakeHartnell in #137
- tooling: spike binary release action by @the-frey in #139
- Remove sleep from CI step by @the-frey in #138
- Add name to upload binary step by @the-frey in #140
- Use mainline wasmd by @the-frey in #146
- moneta patch handler -> lupercalia handler by @the-frey in #148
Full Changelog: v2.1.0...v2.3.0-alpha
v2.1.0
Contains fixes to:
- An issue with juno wasmd fork where submessages in contracts could not be routed
- An issue with juno wasmd fork where contract addresses were 20 bytes rather than 32
What's Changed
- Update wasmvm and development block gas limit by @the-frey in #123
- Security policy by @elsehow in #124
- rocksdb by @faddat in #134
- Use latest Juno wasmd by @JakeHartnell in #133
- Add moneta-patch base upgrade handler by @the-frey in #135
New Contributors
Full Changelog: v2.0.6...v2.1.0
v2.1.0 Patch
Originally we had planned on a straight-up v2.2.0
release, but testing that in the timeslot we had available wasn't possible. As a result, we are distributing this set of instructions for patching your node. Note:
- Until you have patched your node, it is vulnerable
- Until 2/3 of validators have patched their nodes, the network is vulnerable
So you can understand our desire to get the entire validator set patched as soon as possible.
For this update, you should update using the patched binary supplied on the v2.1.0
release. It contains a statically compiled wasmvm that needs to be built on alpine.
This patched junod
binary can be run on a linux box. It was built on alpine and has been tested on various Ubuntu LTSs and Debian bullseye. If you are concerned about your OS, then try patching a sentry first before patching your validator.
Important: you can compile this release yourself, but only on alpine, and you will need to verify using the steps below, or your box will still be vulnerable. As a result, we recommend you use the binary we've built.
Step 1: stop your node
If you are not using cosmovisor, you should stop your node before switching the binary.
If you are using cosmovisor, you can download and verify the binary, then follow the steps underneath.
Step 2: download and verify
# find out where junod is - will likely be /home/<your-user>/go/bin/junod
which junod
# put new binary there i.e. in path/to/juno
wget https://github.com/CosmosContracts/juno/releases/download/v2.1.0/junod -O /home/<your-user>/go/bin/junod
# if you run this, you should see build_tags: netgo muslc,
# if there is a permissions problem use chmod/chown to make sure it is executable
junod version --long
# confirm it is using the static lib - should return "not a dynamic executable"
ldd /home/<your-user>/go/bin/junod
# if you really want to be sure
# this should return:
# ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked,
# Go BuildID=4Ec3fj_EKdvh_u8K3RGJ/JIKOgYFXTJ9LzGROhs8n/uC9gpeaM9MaYurh9DJiN/YcvB8Jc2ivQM2zUSHMhg, stripped
file /home/<your-user>/go/bin/junod
Step 3: restart (if not using cosmovisor)
If you are using a service file that points to this junod
, you can restart the service.
Step 3: install and restart (if using cosmovisor)
If you are using cosmovisor:
- follow the steps above to download and verify the binary
- stop cosmovisor
- copy the binary
cp /home/<your-user>/go/bin/junod $DAEMON_HOME/cosmovisor/upgrades/moneta-patch/bin
- check the binary has the
muslc
flag in the output for$DAEMON_HOME/cosmovisor/upgrades/moneta-patch/bin/junod version --long
- restart cosmovisor
- 🤞
v2.0.6 - Moneta
This is the final candidate for the Juno moneta
release.
Changes over 1.0.0:
- Adds wasmd and cosmwasm
- Fixes a bug with pinning contracts
- Enforces a minimum validator commission
- Ensures that new validators joining the set have to adhere to this
- Includes a wasmvm security patch
- Includes increase to cosmwasm default compile costs
- Enforces a minimum validator commission
- Ensures that new validators joining the set have to adhere to this
- Includes a wasmvm security patch
- Includes increase to cosmwasm default compile costs
- A bump in contract compilation cost (10x to 100)
- Version bump to 44.5 SDK
- Adds IBC proposal handler
- Update to notional wasmd fork ver juno-3
- Add missing wasm AnteHandler
What's Changed
Full Changelog: v1.0.0...v2.0.6
v2.0.5-moneta
This is the final candidate for the Juno moneta
release.
Changes over 1.0.0:
- Adds wasmd and cosmwasm
- Fixes a bug with pinning contracts
- Enforces a minimum validator commission
- Ensures that new validators joining the set have to adhere to this
- Includes a wasmvm security patch
- Includes increase to cosmwasm default compile costs
- Enforces a minimum validator commission
- Ensures that new validators joining the set have to adhere to this
- Includes a wasmvm security patch
- Includes increase to cosmwasm default compile costs
- A bump in contract compilation cost (10x to 100)
- Version bump to 44.5 SDK
- Adds IBC proposal handler
- A futher bump in contract compilation cost (10x to 1000)
- Update to notional wasmd fork ver juno-3
- Add missing wasm AnteHandler
What's Changed
Full Changelog: v1.0.0...v2.0.5
v2.0.4-moneta
This is the final candidate for the Juno moneta
release.
Changes over 1.0.0:
- Adds wasmd and cosmwasm
- Fixes a bug with pinning contracts
- Enforces a minimum validator commission
- Ensures that new validators joining the set have to adhere to this
- Includes a wasmvm security patch
- Includes increase to cosmwasm default compile costs
- Enforces a minimum validator commission
- Ensures that new validators joining the set have to adhere to this
- Includes a wasmvm security patch
- Includes increase to cosmwasm default compile costs
- A bump in contract compilation cost (10x to 100)
- Version bump to 44.5 SDK
- Adds IBC proposal handler
- A futher bump in contract compilation cost (10x to 1000)
- Update to notional wasmd fork ver juno-3
What's Changed
Full Changelog: v1.0.0...v2.0.4