@lmzhen/dsh-evolution-curator 0.3.29 → 0.3.31

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.
Files changed (2) hide show
  1. package/lib/index.js +5 -1
  2. package/package.json +7 -7
package/lib/index.js CHANGED
@@ -185,7 +185,11 @@ var EvolutionCurator = class extends Service {
185
185
  } catch (persistenceError) {
186
186
  this.ctx.logger.warn(`evolution-curator: failed to persist auto-check error report: ${persistenceError instanceof Error ? persistenceError.message : String(persistenceError)}`);
187
187
  }
188
- await this.retainReports();
188
+ try {
189
+ await this.retainReports();
190
+ } catch (retentionError) {
191
+ this.ctx.logger.warn(`evolution-curator: failed to recycle auto-check error reports: ${retentionError instanceof Error ? retentionError.message : String(retentionError)}`);
192
+ }
189
193
  }
190
194
  }
191
195
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-curator",
3
3
  "description": "Deterministic skill lifecycle and recovery (community build)",
4
- "version": "0.3.29",
4
+ "version": "0.3.31",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -31,20 +31,20 @@
31
31
  "license": "MIT",
32
32
  "dependencies": {
33
33
  "@deepseek-ai/schemastery": "^3.18.1",
34
- "@lmzhen/dsh-evolution-core": "^0.3.29"
34
+ "@lmzhen/dsh-evolution-core": "^0.3.31"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@deepseek-ai/cordis": "^4.0.1",
38
38
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
39
39
  "@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
40
- "@lmzhen/dsh-evolution-io": "^0.3.29",
41
- "@lmzhen/dsh-evolution-state": "^0.3.29"
40
+ "@lmzhen/dsh-evolution-io": "^0.3.31",
41
+ "@lmzhen/dsh-evolution-state": "^0.3.31"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
45
45
  "@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
46
- "@lmzhen/dsh-evolution-core": "^0.3.29",
47
- "@lmzhen/dsh-evolution-io": "^0.3.29",
48
- "@lmzhen/dsh-evolution-state": "^0.3.29"
46
+ "@lmzhen/dsh-evolution-core": "^0.3.31",
47
+ "@lmzhen/dsh-evolution-io": "^0.3.31",
48
+ "@lmzhen/dsh-evolution-state": "^0.3.31"
49
49
  }
50
50
  }