@kradle/challenges-sdk 0.8.0 → 0.8.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 +14 -13
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,18 +7,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
7
7
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
8
8
|
|
|
9
9
|
<!--
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
Group them under Added / Changed / Deprecated / Removed / Fixed / Security,
|
|
17
|
-
latest version first.
|
|
10
|
+
This file is published: it ships inside the npm tarball as CHANGELOG.md. Write
|
|
11
|
+
only what a consumer of the published package can see and act on.
|
|
12
|
+
|
|
13
|
+
The entry for each release is drafted by the "Create Release PR" workflow (rules
|
|
14
|
+
in .github/changelog-prompt.md) and reviewed in the PR before merging. You can
|
|
15
|
+
also hand-edit this file or the [Unreleased] section at any time.
|
|
18
16
|
-->
|
|
19
17
|
|
|
20
18
|
## [Unreleased]
|
|
21
19
|
|
|
20
|
+
## [0.8.1] - 2026-07-13
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Internal maintenance release.
|
|
25
|
+
|
|
22
26
|
## [0.8.0] - 2026-07-10
|
|
23
27
|
|
|
24
28
|
### Changed
|
|
@@ -27,10 +31,6 @@ latest version first.
|
|
|
27
31
|
|
|
28
32
|
## [0.7.2] - 2026-07-09
|
|
29
33
|
|
|
30
|
-
### Added
|
|
31
|
-
|
|
32
|
-
- `npm run check-docs` validates that `LLM_README.md` stays in sync with the `Actions` API surface; also runs in PR checks to prevent future drift.
|
|
33
|
-
|
|
34
34
|
### Changed
|
|
35
35
|
|
|
36
36
|
- The datapack output path is now resolved from the `KRADLE_CHALLENGES_PATH` environment variable (falling back to a default for standalone use) instead of from the `kradle_challenge_path` config field. Previously a hardcoded config value could silently redirect the build away from where the CLI packages it, shipping a stale datapack.
|
|
@@ -65,7 +65,8 @@ latest version first.
|
|
|
65
65
|
- Voting primitives (`votedFor`, `promptVote`, `allVotesIn`, `assignDefaultVotes`) for challenges that use discuss-then-vote-then-act phases as an alternative to pad-based voting.
|
|
66
66
|
- Build-time validation of vote IDs and options against `KRADLE_CHALLENGE_VOTING_OPTIONS` (when set), matching the existing `getLocation`/`setEndState` pattern. `promptVote` also validates each announced option against the declared `votingOptions`.
|
|
67
67
|
|
|
68
|
-
[Unreleased]: https://github.com/Kradle-ai/challenges-sdk/compare/v0.8.
|
|
68
|
+
[Unreleased]: https://github.com/Kradle-ai/challenges-sdk/compare/v0.8.1...HEAD
|
|
69
|
+
[0.8.1]: https://github.com/Kradle-ai/challenges-sdk/compare/v0.8.0...v0.8.1
|
|
69
70
|
[0.8.0]: https://github.com/Kradle-ai/challenges-sdk/compare/v0.7.2...v0.8.0
|
|
70
71
|
[0.7.2]: https://github.com/Kradle-ai/challenges-sdk/compare/v0.6.2...v0.7.2
|
|
71
72
|
[0.6.2]: https://github.com/Kradle-ai/challenges-sdk/compare/v0.6.1...v0.6.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kradle/challenges-sdk",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Kradle's challenges SDK - Create Minecraft datapack-based challenges",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"kradle",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"watch": "tsc --watch",
|
|
25
25
|
"lint": "biome lint --fix --unsafe",
|
|
26
26
|
"check-docs": "node scripts/check-docs.mjs",
|
|
27
|
-
"prepack": "npm run build",
|
|
27
|
+
"prepack": "npm run build && node scripts/stage-user-changelog.mjs",
|
|
28
28
|
"prepare": "npm run build"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|