Skip to content

Commit 26967f0

Browse files
committed
Prepare v1.5.5 release
1 parent 81727fe commit 26967f0

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.5.5]
9+
10+
### Fixed
11+
12+
- Fix false positive in comma-list keyword stuffing heuristic on prose
13+
descriptions with inline enumeration lists ([#71]). The heuristic now
14+
checks prose density (average words per segment) so that sentences with
15+
enough surrounding prose are not flagged as keyword dumps.
16+
- Support `OPENAI_BASE_URL`, `OPENAI_ORG_ID`, and `OPENAI_PROJECT_ID`
17+
environment variables for the OpenAI LLM-as-judge provider ([#70]).
18+
Organization and project headers are only sent when the base URL points
19+
to an OpenAI endpoint.
20+
821
## [1.5.4]
922

1023
### Fixed
@@ -189,6 +202,7 @@ First stable release. Includes the complete CLI and importable library packages.
189202
- `types` — shared data types (`Report`, `Result`, `Level`, etc.)
190203
- `judge.LLMClient` interface for custom LLM providers
191204

205+
[1.5.5]: https://github.com/agent-ecosystem/skill-validator/compare/v1.5.4...v1.5.5
192206
[1.5.4]: https://github.com/agent-ecosystem/skill-validator/compare/v1.5.3...v1.5.4
193207
[1.5.3]: https://github.com/agent-ecosystem/skill-validator/compare/v1.5.2...v1.5.3
194208
[1.5.2]: https://github.com/agent-ecosystem/skill-validator/compare/v1.5.1...v1.5.2
@@ -214,3 +228,5 @@ First stable release. Includes the complete CLI and importable library packages.
214228
[#60]: https://github.com/agent-ecosystem/skill-validator/issues/60
215229
[#62]: https://github.com/agent-ecosystem/skill-validator/pull/62
216230
[#63]: https://github.com/agent-ecosystem/skill-validator/issues/63
231+
[#70]: https://github.com/agent-ecosystem/skill-validator/issues/70
232+
[#71]: https://github.com/agent-ecosystem/skill-validator/issues/71

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/agent-ecosystem/skill-validator/types"
1212
)
1313

14-
const version = "v1.5.4"
14+
const version = "v1.5.5"
1515

1616
var (
1717
outputFormat string

0 commit comments

Comments
 (0)