@releasekit/notes 0.7.1 → 0.7.3
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.
|
@@ -130,6 +130,7 @@ var GitHubReleaseConfigSchema = z.object({
|
|
|
130
130
|
* Available variables: ${packageName} (original scoped name), ${version} (e.g. "v1.0.0").
|
|
131
131
|
* Version-only tags (e.g. "v1.0.0") always use the tag as-is.
|
|
132
132
|
*/
|
|
133
|
+
/* biome-ignore lint/suspicious/noTemplateCurlyInString: default template value */
|
|
133
134
|
titleTemplate: z.string().default("${packageName}: ${version}")
|
|
134
135
|
});
|
|
135
136
|
var VerifyRegistryConfigSchema = z.object({
|
|
@@ -175,6 +176,7 @@ var PublishConfigSchema = z.object({
|
|
|
175
176
|
perPackage: true,
|
|
176
177
|
prerelease: "auto",
|
|
177
178
|
body: "auto",
|
|
179
|
+
/* biome-ignore lint/suspicious/noTemplateCurlyInString: default template value */
|
|
178
180
|
titleTemplate: "${packageName}: ${version}"
|
|
179
181
|
}),
|
|
180
182
|
verify: VerifyConfigSchema.default({
|
|
@@ -913,7 +915,7 @@ async function categorizeEntries(provider, entries, context) {
|
|
|
913
915
|
const scopeMap = parsed.scopes || {};
|
|
914
916
|
for (const [indexStr, scope] of Object.entries(scopeMap)) {
|
|
915
917
|
const idx = Number.parseInt(indexStr, 10);
|
|
916
|
-
if (entriesCopy[idx] && scope
|
|
918
|
+
if (entriesCopy[idx] && scope?.trim()) {
|
|
917
919
|
entriesCopy[idx] = { ...entriesCopy[idx], scope: scope.trim() };
|
|
918
920
|
}
|
|
919
921
|
}
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@releasekit/notes",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"description": "Release notes and changelog generation with LLM-powered enhancement and flexible templating",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -47,25 +47,25 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@anthropic-ai/sdk": "^0.
|
|
50
|
+
"@anthropic-ai/sdk": "^0.82.0",
|
|
51
51
|
"@octokit/rest": "^22.0.1",
|
|
52
52
|
"chalk": "^5.6.2",
|
|
53
53
|
"commander": "^14.0.3",
|
|
54
54
|
"ejs": "^4.0.1",
|
|
55
55
|
"handlebars": "^4.7.9",
|
|
56
|
-
"liquidjs": "^10.25.
|
|
57
|
-
"openai": "^6.
|
|
56
|
+
"liquidjs": "^10.25.2",
|
|
57
|
+
"openai": "^6.33.0",
|
|
58
58
|
"smol-toml": "^1.6.1",
|
|
59
59
|
"zod": "^4.3.6"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@biomejs/biome": "^2.4.
|
|
62
|
+
"@biomejs/biome": "^2.4.10",
|
|
63
63
|
"@types/ejs": "^3.1.5",
|
|
64
64
|
"@types/node": "^22.19.15",
|
|
65
|
-
"@vitest/coverage-v8": "^4.1.
|
|
65
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
66
66
|
"tsup": "^8.5.1",
|
|
67
67
|
"typescript": "^5.9.3",
|
|
68
|
-
"vitest": "^4.1.
|
|
68
|
+
"vitest": "^4.1.2",
|
|
69
69
|
"@releasekit/config": "0.0.0",
|
|
70
70
|
"@releasekit/core": "0.0.0"
|
|
71
71
|
},
|