@agoric/cosmos 0.35.0-u22.0 → 0.35.0-u22.1

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 CHANGED
@@ -3,6 +3,12 @@
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-u22.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u22.0...@agoric/cosmos@0.35.0-u22.1) (2025-09-09)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **cosmos:** snapshot init error is not fatal ([#11903](https://github.com/Agoric/agoric-sdk/issues/11903)) ([99e9a22](https://github.com/Agoric/agoric-sdk/commit/99e9a22bfee864f23c032819ea59ea9c1e1267e0))
11
+
6
12
  ## [0.35.0-u22.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.34.1...@agoric/cosmos@0.35.0-u22.0) (2025-09-09)
7
13
 
8
14
  ### ⚠ BREAKING CHANGES
package/app/app.go CHANGED
@@ -1187,7 +1187,7 @@ func (app *GaiaApp) Commit() (*abci.ResponseCommit, error) {
1187
1187
 
1188
1188
  if err != nil {
1189
1189
  app.Logger().Error("swing-store export failed to start", "err", err)
1190
- return nil, err
1190
+ // failing to perform a swing-store export is not fatal.
1191
1191
  }
1192
1192
 
1193
1193
  // Frontrun the BaseApp's Commit method
@@ -1208,7 +1208,7 @@ func (app *GaiaApp) Commit() (*abci.ResponseCommit, error) {
1208
1208
 
1209
1209
  if err != nil {
1210
1210
  app.Logger().Error("failed to initiate swingset snapshot", "err", err)
1211
- return nil, err
1211
+ // failing to initiate a snapshot is not fatal. It can happen e.g. if a snapshot is already in progress
1212
1212
  }
1213
1213
  }
1214
1214
 
package/git-revision.txt CHANGED
@@ -1 +1 @@
1
- 83a42d0f34
1
+ 4c65b8ef77
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/cosmos",
3
- "version": "0.35.0-u22.0",
3
+ "version": "0.35.0-u22.1",
4
4
  "description": "Connect JS to the Cosmos blockchain SDK",
5
5
  "parsers": {
6
6
  "js": "mjs"
@@ -41,5 +41,5 @@
41
41
  "typeCoverage": {
42
42
  "atLeast": 0
43
43
  },
44
- "gitHead": "83a42d0f343b01448a918631dce159b5bdb69b7e"
44
+ "gitHead": "4c65b8ef77e246c8ed3ed9ba9286c8a34356ce37"
45
45
  }