-
Notifications
You must be signed in to change notification settings - Fork 8
Release v10.0.0-rc.19 — version bump #1245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@origintrail-official/dkg-random-sampling", | ||
| "version": "10.0.0-rc.18", | ||
| "version": "10.0.0-rc.19", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 Bug: The manifest is bumped to |
||
| "type": "module", | ||
| "main": "dist/index.js", | ||
| "types": "dist/index.d.ts", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ | |
| * registered. | ||
| */ | ||
|
|
||
| export const RANDOM_SAMPLING_PACKAGE_VERSION = '10.0.0-rc.2'; | ||
| export const RANDOM_SAMPLING_PACKAGE_VERSION = '10.0.0-rc.19'; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Issue: |
||
|
|
||
| export { | ||
| extractV10KCFromStore, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,6 @@ import { RANDOM_SAMPLING_PACKAGE_VERSION } from '../src/index.js'; | |
|
|
||
| describe('@origintrail-official/dkg-random-sampling — skeleton', () => { | ||
| it('exposes a version constant matching the rest of the workspace', () => { | ||
| expect(RANDOM_SAMPLING_PACKAGE_VERSION).toBe('10.0.0-rc.2'); | ||
| expect(RANDOM_SAMPLING_PACKAGE_VERSION).toBe('10.0.0-rc.19'); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Issue: This test claims the exported version matches the rest of the workspace, but it only compares the source constant to another hard-coded |
||
| }); | ||
| }); | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Bug: This published adapter package includes
openclaw.plugin.jsonin itsfileslist, but that shipped plugin manifest still says"version": "10.0.0-rc.2". Consumers or OpenClaw registry/update logic reading the plugin manifest will see the adapter as rc.2 even though npm installs rc.19, and there is no validation covering this secondary version field.