@agoric/cosmos 0.35.0-u18.1 → 0.35.0-u18.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/app/upgrade.go +3 -1
- package/git-revision.txt +1 -1
- package/go.mod +3 -3
- package/go.sum +7 -7
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.35.0-u18.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u18.2...@agoric/cosmos@0.35.0-u18.3) (2024-12-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @agoric/cosmos
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.35.0-u18.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u18.1...@agoric/cosmos@0.35.0-u18.2) (2024-11-21)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @agoric/cosmos
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.35.0-u18.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u18.0...@agoric/cosmos@0.35.0-u18.1) (2024-11-19)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @agoric/cosmos
|
package/app/upgrade.go
CHANGED
|
@@ -19,6 +19,7 @@ var upgradeNamesOfThisVersion = []string{
|
|
|
19
19
|
"agoric-upgrade-18-emerynet",
|
|
20
20
|
"agoric-upgrade-18-basic",
|
|
21
21
|
"agoric-upgrade-18-basic-2",
|
|
22
|
+
"agoric-upgrade-18-emerynet-rc3",
|
|
22
23
|
"agoric-upgrade-18-a3p",
|
|
23
24
|
}
|
|
24
25
|
|
|
@@ -59,7 +60,8 @@ func isPrimaryUpgradeName(name string) bool {
|
|
|
59
60
|
validUpgradeName("agoric-upgrade-18-basic"),
|
|
60
61
|
validUpgradeName("agoric-upgrade-18-a3p"):
|
|
61
62
|
return true
|
|
62
|
-
case validUpgradeName("agoric-upgrade-18-basic-2")
|
|
63
|
+
case validUpgradeName("agoric-upgrade-18-basic-2"),
|
|
64
|
+
validUpgradeName("agoric-upgrade-18-emerynet-rc3"):
|
|
63
65
|
return false
|
|
64
66
|
default:
|
|
65
67
|
panic(fmt.Errorf("unexpected upgrade name %s", validUpgradeName(name)))
|
package/git-revision.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
793783b3b
|
package/go.mod
CHANGED
|
@@ -4,7 +4,7 @@ go 1.20
|
|
|
4
4
|
|
|
5
5
|
require (
|
|
6
6
|
cosmossdk.io/errors v1.0.0-beta.7
|
|
7
|
-
cosmossdk.io/math v1.
|
|
7
|
+
cosmossdk.io/math v1.4.0
|
|
8
8
|
github.com/armon/go-metrics v0.4.1
|
|
9
9
|
github.com/cosmos/cosmos-sdk v0.46.16
|
|
10
10
|
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6 v6.1.2
|
|
@@ -19,7 +19,7 @@ require (
|
|
|
19
19
|
github.com/spf13/cobra v1.7.0
|
|
20
20
|
github.com/spf13/pflag v1.0.5
|
|
21
21
|
github.com/spf13/viper v1.14.0
|
|
22
|
-
github.com/stretchr/testify v1.
|
|
22
|
+
github.com/stretchr/testify v1.9.0
|
|
23
23
|
github.com/tendermint/tendermint v0.34.29
|
|
24
24
|
github.com/tendermint/tm-db v0.6.7
|
|
25
25
|
google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98
|
|
@@ -161,7 +161,7 @@ require (
|
|
|
161
161
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
162
162
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
163
163
|
nhooyr.io/websocket v1.8.6 // indirect
|
|
164
|
-
sigs.k8s.io/yaml v1.
|
|
164
|
+
sigs.k8s.io/yaml v1.4.0 // indirect
|
|
165
165
|
)
|
|
166
166
|
|
|
167
167
|
replace (
|
package/go.sum
CHANGED
|
@@ -193,8 +193,8 @@ cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoIS
|
|
|
193
193
|
collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE=
|
|
194
194
|
cosmossdk.io/errors v1.0.0-beta.7 h1:gypHW76pTQGVnHKo6QBkb4yFOJjC+sUGRc5Al3Odj1w=
|
|
195
195
|
cosmossdk.io/errors v1.0.0-beta.7/go.mod h1:mz6FQMJRku4bY7aqS/Gwfcmr/ue91roMEKAmDUDpBfE=
|
|
196
|
-
cosmossdk.io/math v1.
|
|
197
|
-
cosmossdk.io/math v1.
|
|
196
|
+
cosmossdk.io/math v1.4.0 h1:XbgExXFnXmF/CccPPEto40gOO7FpWu9yWNAZPN3nkNQ=
|
|
197
|
+
cosmossdk.io/math v1.4.0/go.mod h1:O5PkD4apz2jZs4zqFdTr16e1dcaQCc5z6lkEnrrppuk=
|
|
198
198
|
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
|
|
199
199
|
filippo.io/edwards25519 v1.0.0-rc.1 h1:m0VOOB23frXZvAOK44usCgLWvtsxIoMCTBGJZlpmGfU=
|
|
200
200
|
filippo.io/edwards25519 v1.0.0-rc.1/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns=
|
|
@@ -1079,8 +1079,8 @@ github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5J
|
|
|
1079
1079
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
|
1080
1080
|
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
|
1081
1081
|
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
|
1082
|
-
github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c=
|
|
1083
1082
|
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
|
1083
|
+
github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY=
|
|
1084
1084
|
github.com/stretchr/testify v1.2.0/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
|
1085
1085
|
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
|
1086
1086
|
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
|
@@ -1091,8 +1091,8 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
|
|
|
1091
1091
|
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
|
1092
1092
|
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
|
1093
1093
|
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
|
1094
|
-
github.com/stretchr/testify v1.
|
|
1095
|
-
github.com/stretchr/testify v1.
|
|
1094
|
+
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
|
1095
|
+
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
|
1096
1096
|
github.com/subosito/gotenv v1.4.1 h1:jyEFiXpy21Wm81FBN71l9VoMMV8H8jG+qIK3GCpY6Qs=
|
|
1097
1097
|
github.com/subosito/gotenv v1.4.1/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0=
|
|
1098
1098
|
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY=
|
|
@@ -1872,6 +1872,6 @@ rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
|
|
1872
1872
|
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
|
1873
1873
|
rsc.io/tmplfunc v0.0.3/go.mod h1:AG3sTPzElb1Io3Yg4voV9AGZJuleGAwaVRxL9M49PhA=
|
|
1874
1874
|
sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
|
|
1875
|
-
sigs.k8s.io/yaml v1.
|
|
1876
|
-
sigs.k8s.io/yaml v1.
|
|
1875
|
+
sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=
|
|
1876
|
+
sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY=
|
|
1877
1877
|
sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/cosmos",
|
|
3
|
-
"version": "0.35.0-u18.
|
|
3
|
+
"version": "0.35.0-u18.3",
|
|
4
4
|
"description": "Connect JS to the Cosmos blockchain SDK",
|
|
5
5
|
"parsers": {
|
|
6
6
|
"js": "mjs"
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"typeCoverage": {
|
|
40
40
|
"atLeast": 0
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "793783b3b1ff6b47565a959cb7ba60a1835e2486"
|
|
43
43
|
}
|