@sleepy-hollow/framework 0.3.5 → 0.3.6
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 +10 -0
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +5 -5
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Sleepy Hollow are documented in this file.
|
|
4
4
|
|
|
5
|
+
## 0.3.6 - 2026-08-21
|
|
6
|
+
|
|
7
|
+
### Changed: skill verification guidance and release surfaces
|
|
8
|
+
|
|
9
|
+
The Sleepy Hollow skill now documents the framework 0.3.6 evidence workflow,
|
|
10
|
+
discovery-safe governed tests, explicit approval criterion IDs, application
|
|
11
|
+
criterion mappings, post-green smoke testing, and the current red-state
|
|
12
|
+
characterization limitation. CLI, generator, scaffold, and package metadata
|
|
13
|
+
all report 0.3.6.
|
|
14
|
+
|
|
5
15
|
## 0.3.5 - 2026-08-21
|
|
6
16
|
|
|
7
17
|
### Fixed: governed test evidence loading
|
package/dist/cli.d.ts
CHANGED
package/dist/cli.js
CHANGED
|
@@ -1008,7 +1008,7 @@ var CreationError = class extends Error {
|
|
|
1008
1008
|
};
|
|
1009
1009
|
|
|
1010
1010
|
// cli/create/create.ts
|
|
1011
|
-
var VERSION = "0.3.
|
|
1011
|
+
var VERSION = "0.3.6";
|
|
1012
1012
|
var NAME = /^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/;
|
|
1013
1013
|
function files(name) {
|
|
1014
1014
|
return {
|
|
@@ -1181,7 +1181,7 @@ async function pathExists(path) {
|
|
|
1181
1181
|
throw error;
|
|
1182
1182
|
}
|
|
1183
1183
|
}
|
|
1184
|
-
var FRAMEWORK_VERSION = "0.3.
|
|
1184
|
+
var FRAMEWORK_VERSION = "0.3.6";
|
|
1185
1185
|
async function createProject(options) {
|
|
1186
1186
|
if (!NAME.test(options.name) || options.name.length > 64) {
|
|
1187
1187
|
throw creationError(
|
|
@@ -2977,7 +2977,7 @@ function renderArtifacts(inventory2) {
|
|
|
2977
2977
|
];
|
|
2978
2978
|
const manifestContent = canonicalJson({
|
|
2979
2979
|
schema: "sleepy-hollow-generated-manifest/v1",
|
|
2980
|
-
generatorVersion: "0.3.
|
|
2980
|
+
generatorVersion: "0.3.6",
|
|
2981
2981
|
serviceId: normalized.serviceId,
|
|
2982
2982
|
inputDigest: digest2(input),
|
|
2983
2983
|
artifacts: Object.fromEntries(
|
|
@@ -3251,7 +3251,7 @@ function inventoryFromRoutes(routes2, options) {
|
|
|
3251
3251
|
return {
|
|
3252
3252
|
serviceId: options.serviceId,
|
|
3253
3253
|
title: options.title ?? options.serviceId,
|
|
3254
|
-
version: options.version ?? "0.3.
|
|
3254
|
+
version: options.version ?? "0.3.6",
|
|
3255
3255
|
...options.description ? { description: options.description } : {},
|
|
3256
3256
|
operations,
|
|
3257
3257
|
securitySchemes: options.securitySchemes ?? {}
|
|
@@ -4156,7 +4156,7 @@ var CLI_COMMANDS = [
|
|
|
4156
4156
|
"generate",
|
|
4157
4157
|
"deploy"
|
|
4158
4158
|
];
|
|
4159
|
-
var CLI_VERSION = "0.3.
|
|
4159
|
+
var CLI_VERSION = "0.3.6";
|
|
4160
4160
|
var commandMetadata = {
|
|
4161
4161
|
create: {
|
|
4162
4162
|
description: "Create one deterministic Sleepy Hollow project.",
|