@nahisaho/shikigami 1.51.0 → 1.51.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
|
@@ -5,6 +5,14 @@ All notable changes to SHIKIGAMI will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.51.1] - 2026-02-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Multi-Pop: branch-evaluator の型エラー修正**
|
|
13
|
+
- `calculateWeightedScore` の引数型を `Record<string, number>` から `EvaluationWeights` に変更
|
|
14
|
+
- `EvaluationWeights` のimportを追加
|
|
15
|
+
|
|
8
16
|
## [1.51.0] - 2026-02-19
|
|
9
17
|
|
|
10
18
|
### Added
|
|
@@ -12,6 +12,7 @@ import type {
|
|
|
12
12
|
BranchContext,
|
|
13
13
|
BranchEvaluation,
|
|
14
14
|
EvaluationScores,
|
|
15
|
+
EvaluationWeights,
|
|
15
16
|
MultiPopConfig,
|
|
16
17
|
} from './types.js';
|
|
17
18
|
|
|
@@ -209,7 +210,7 @@ function calculatePotential(branch: Branch): number {
|
|
|
209
210
|
*/
|
|
210
211
|
function calculateWeightedScore(
|
|
211
212
|
scores: EvaluationScores,
|
|
212
|
-
weights:
|
|
213
|
+
weights: EvaluationWeights,
|
|
213
214
|
): number {
|
|
214
215
|
return (
|
|
215
216
|
scores.confidence * (weights.confidence ?? 0.3) +
|
package/package.json
CHANGED