@versu/core 0.6.6 → 0.6.8
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/README.md +59 -15
- package/dist/changelog/index.d.ts +2 -2
- package/dist/changelog/index.d.ts.map +1 -1
- package/dist/changelog/index.js +28 -18
- package/dist/changelog/index.js.map +1 -1
- package/dist/config/index.d.ts +34 -45
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +38 -44
- package/dist/config/index.js.map +1 -1
- package/dist/factories/adapter-identifier-registry.d.ts +0 -4
- package/dist/factories/adapter-identifier-registry.d.ts.map +1 -1
- package/dist/factories/adapter-identifier-registry.js +1 -11
- package/dist/factories/adapter-identifier-registry.js.map +1 -1
- package/dist/git/index.d.ts +15 -1
- package/dist/git/index.d.ts.map +1 -1
- package/dist/git/index.js +65 -18
- package/dist/git/index.js.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/plugins/plugin-loader.d.ts +7 -5
- package/dist/plugins/plugin-loader.d.ts.map +1 -1
- package/dist/plugins/plugin-loader.js +42 -27
- package/dist/plugins/plugin-loader.js.map +1 -1
- package/dist/plugins/plugin-schema.d.ts +96 -0
- package/dist/plugins/plugin-schema.d.ts.map +1 -0
- package/dist/plugins/plugin-schema.js +128 -0
- package/dist/plugins/plugin-schema.js.map +1 -0
- package/dist/semver/index.d.ts +7 -7
- package/dist/semver/index.d.ts.map +1 -1
- package/dist/semver/index.js +18 -8
- package/dist/semver/index.js.map +1 -1
- package/dist/services/adapter-metadata-provider.d.ts.map +1 -1
- package/dist/services/adapter-metadata-provider.js +4 -2
- package/dist/services/adapter-metadata-provider.js.map +1 -1
- package/dist/services/changelog-generator.d.ts.map +1 -1
- package/dist/services/changelog-generator.js +11 -9
- package/dist/services/changelog-generator.js.map +1 -1
- package/dist/services/commit-analyzer.d.ts.map +1 -1
- package/dist/services/commit-analyzer.js +16 -6
- package/dist/services/commit-analyzer.js.map +1 -1
- package/dist/services/configuration-loader.d.ts +1 -1
- package/dist/services/configuration-loader.d.ts.map +1 -1
- package/dist/services/configuration-loader.js +6 -7
- package/dist/services/configuration-loader.js.map +1 -1
- package/dist/services/configuration-validator.d.ts +8 -3
- package/dist/services/configuration-validator.d.ts.map +1 -1
- package/dist/services/configuration-validator.js +10 -2
- package/dist/services/configuration-validator.js.map +1 -1
- package/dist/services/git-operations.d.ts.map +1 -1
- package/dist/services/git-operations.js +19 -15
- package/dist/services/git-operations.js.map +1 -1
- package/dist/services/module-detector.d.ts +5 -5
- package/dist/services/module-detector.d.ts.map +1 -1
- package/dist/services/module-registry.d.ts +14 -2
- package/dist/services/module-registry.d.ts.map +1 -1
- package/dist/services/module-registry.js +1 -1
- package/dist/services/module-registry.js.map +1 -1
- package/dist/services/version-applier.d.ts.map +1 -1
- package/dist/services/version-applier.js +25 -10
- package/dist/services/version-applier.js.map +1 -1
- package/dist/services/version-bumper.d.ts.map +1 -1
- package/dist/services/version-bumper.js +43 -14
- package/dist/services/version-bumper.js.map +1 -1
- package/dist/services/versu-runner.d.ts +7 -0
- package/dist/services/versu-runner.d.ts.map +1 -1
- package/dist/services/versu-runner.js +102 -55
- package/dist/services/versu-runner.js.map +1 -1
- package/dist/utils/banner.js +7 -7
- package/dist/utils/file.d.ts +1 -0
- package/dist/utils/file.d.ts.map +1 -1
- package/dist/utils/file.js +14 -0
- package/dist/utils/file.js.map +1 -1
- package/dist/utils/logger.d.ts +6 -2
- package/dist/utils/logger.d.ts.map +1 -1
- package/dist/utils/logger.js +12 -4
- package/dist/utils/logger.js.map +1 -1
- package/dist/utils/version.d.ts +1 -1
- package/dist/utils/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -82,26 +82,49 @@ VERSU core uses [cosmiconfig](https://github.com/davidtheclark/cosmiconfig) for
|
|
|
82
82
|
|
|
83
83
|
```json
|
|
84
84
|
{
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
"
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
85
|
+
"versionRules": {
|
|
86
|
+
"defaultBump": "patch",
|
|
87
|
+
"commitTypeBumps": {
|
|
88
|
+
"feat": "minor",
|
|
89
|
+
"fix": "patch",
|
|
90
|
+
"perf": "patch",
|
|
91
|
+
"docs": "ignore"
|
|
92
|
+
},
|
|
93
|
+
"dependencyBumps": {
|
|
94
|
+
"major": "major",
|
|
95
|
+
"minor": "minor",
|
|
96
|
+
"patch": "patch"
|
|
97
|
+
}
|
|
91
98
|
},
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
|
|
95
|
-
|
|
99
|
+
"changelog": {
|
|
100
|
+
"root": {
|
|
101
|
+
"context": {
|
|
102
|
+
"prependPlaceholder": "<!-- CHANGELOG -->"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"module": {
|
|
106
|
+
"context": {
|
|
107
|
+
"prependPlaceholder": "<!-- CHANGELOG -->"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
96
110
|
}
|
|
97
111
|
}
|
|
98
112
|
```
|
|
99
113
|
|
|
114
|
+
**Changelog Configuration:**
|
|
115
|
+
|
|
116
|
+
- `changelog.root` - Configuration for root-level CHANGELOG.md generation
|
|
117
|
+
- `changelog.module` - Configuration for per-module CHANGELOG.md generation
|
|
118
|
+
- `context.prependPlaceholder` - Placeholder string in changelog files where new entries are inserted
|
|
119
|
+
- `options` - Advanced changelog generation options (templates, grouping, sorting)
|
|
120
|
+
|
|
121
|
+
VERSU uses [conventional-changelog-writer](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer) for changelog generation. You can pass any options supported by conventional-changelog-writer through the `options` field. For advanced customization with functions (like `transform`, `commitsGroupsSort`), use JavaScript configuration files (`.versurc.js` or `versu.config.js`).
|
|
122
|
+
|
|
100
123
|
## Adapters
|
|
101
124
|
|
|
102
125
|
### Gradle Adapter
|
|
103
126
|
|
|
104
|
-
|
|
127
|
+
Gradle support is provided by the **[@versu/plugin-gradle](../plugin-gradle)** package.
|
|
105
128
|
|
|
106
129
|
**Features:**
|
|
107
130
|
|
|
@@ -123,7 +146,7 @@ api.version=1.5.0
|
|
|
123
146
|
|
|
124
147
|
### Creating Custom Adapters
|
|
125
148
|
|
|
126
|
-
To add support for new project types,
|
|
149
|
+
To add support for new project types, create a plugin package that implements the adapter interfaces:
|
|
127
150
|
|
|
128
151
|
```typescript
|
|
129
152
|
import {
|
|
@@ -190,10 +213,30 @@ class MyModuleSystemFactory implements ModuleSystemFactory {
|
|
|
190
213
|
}
|
|
191
214
|
```
|
|
192
215
|
|
|
193
|
-
Then
|
|
216
|
+
Then create a plugin:
|
|
217
|
+
|
|
218
|
+
```typescript
|
|
219
|
+
import type { PluginContract } from '@versu/core';
|
|
220
|
+
|
|
221
|
+
const myPlugin: PluginContract = {
|
|
222
|
+
id: 'my-adapter',
|
|
223
|
+
name: 'My Adapter',
|
|
224
|
+
description: 'Support for my build system',
|
|
225
|
+
version: '1.0.0',
|
|
226
|
+
author: 'Your Name',
|
|
227
|
+
adapters: [
|
|
228
|
+
{
|
|
229
|
+
id: 'my-adapter',
|
|
230
|
+
adapterIdentifier: () => new MyAdapterIdentifier(),
|
|
231
|
+
moduleSystemFactory: (repoRoot: string) => new MyModuleSystemFactory(repoRoot),
|
|
232
|
+
},
|
|
233
|
+
],
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
export default myPlugin;
|
|
237
|
+
```
|
|
194
238
|
|
|
195
|
-
|
|
196
|
-
2. Add to `src/services/adapter-identifier-registry.ts` in the registry initialization
|
|
239
|
+
See [@versu/plugin-gradle](../plugin-gradle) for a complete implementation example.
|
|
197
240
|
|
|
198
241
|
## Development
|
|
199
242
|
|
|
@@ -230,6 +273,7 @@ npm publish --workspace packages/core --access public
|
|
|
230
273
|
|
|
231
274
|
- **[@versu/cli](../cli)** - Command-line interface
|
|
232
275
|
- **[@versu/action](../action)** - GitHub Actions integration
|
|
276
|
+
- **[@versu/plugin-gradle](../plugin-gradle)** - Gradle adapter plugin
|
|
233
277
|
|
|
234
278
|
## Requirements
|
|
235
279
|
|
|
@@ -7,9 +7,9 @@ export declare function updateChangelogFile(changelogContent: string, changelogP
|
|
|
7
7
|
export declare function generateChangelogsForModules(moduleResults: ModuleChangeResult[], getCommitsForModule: (moduleId: string) => Promise<{
|
|
8
8
|
commits: Commit[];
|
|
9
9
|
lastTag: string | null;
|
|
10
|
-
}>, repoRoot: string, config?: ModuleChangelogConfig): Promise<string[]>;
|
|
10
|
+
}>, repoRoot: string, dryRun: boolean, config?: ModuleChangelogConfig): Promise<string[]>;
|
|
11
11
|
export declare function generateRootChangelog(moduleResults: ModuleChangeResult[], getCommitsForModule: (moduleId: string) => Promise<{
|
|
12
12
|
commits: Commit[];
|
|
13
13
|
lastTag: string | null;
|
|
14
|
-
}>, repoRoot: string, config?: ModuleChangelogConfig): Promise<string | undefined>;
|
|
14
|
+
}>, repoRoot: string, dryRun: boolean, config?: ModuleChangelogConfig): Promise<string | undefined>;
|
|
15
15
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/changelog/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAOpE,OAAO,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAIrD,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAE3E,sDAAsD;AACtD,wBAAsB,mBAAmB,CACvC,gBAAgB,EAAE,MAAM,EACxB,aAAa,EAAE,MAAM,EACrB,kBAAkB,EAAE,MAAM,GACzB,OAAO,CAAC,IAAI,CAAC,CAWf;AAsBD,+CAA+C;AAC/C,wBAAsB,4BAA4B,CAChD,aAAa,EAAE,kBAAkB,EAAE,EACnC,mBAAmB,EAAE,CACnB,QAAQ,EAAE,MAAM,KACb,OAAO,CAAC;IAAE,OAAO,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;CAAE,CAAC,EAC3D,QAAQ,EAAE,MAAM,EAChB,MAAM,CAAC,EAAE,qBAAqB,GAC7B,OAAO,CAAC,MAAM,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/changelog/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAOpE,OAAO,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAIrD,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAE3E,sDAAsD;AACtD,wBAAsB,mBAAmB,CACvC,gBAAgB,EAAE,MAAM,EACxB,aAAa,EAAE,MAAM,EACrB,kBAAkB,EAAE,MAAM,GACzB,OAAO,CAAC,IAAI,CAAC,CAWf;AAsBD,+CAA+C;AAC/C,wBAAsB,4BAA4B,CAChD,aAAa,EAAE,kBAAkB,EAAE,EACnC,mBAAmB,EAAE,CACnB,QAAQ,EAAE,MAAM,KACb,OAAO,CAAC;IAAE,OAAO,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;CAAE,CAAC,EAC3D,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,OAAO,EACf,MAAM,CAAC,EAAE,qBAAqB,GAC7B,OAAO,CAAC,MAAM,EAAE,CAAC,CA6EnB;AAED,wBAAsB,qBAAqB,CACzC,aAAa,EAAE,kBAAkB,EAAE,EACnC,mBAAmB,EAAE,CACnB,QAAQ,EAAE,MAAM,KACb,OAAO,CAAC;IAAE,OAAO,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;CAAE,CAAC,EAC3D,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,OAAO,EACf,MAAM,CAAC,EAAE,qBAAqB,GAC7B,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAyE7B"}
|
package/dist/changelog/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { isReleaseVersion } from "../semver/index.js";
|
|
|
9
9
|
export async function updateChangelogFile(changelogContent, changelogPath, prependPlaceholder) {
|
|
10
10
|
let fileContent = changelogContent;
|
|
11
11
|
if (await exists(changelogPath)) {
|
|
12
|
-
logger.info(
|
|
12
|
+
logger.info("Updating existing changelog", { path: changelogPath });
|
|
13
13
|
// Try to read existing changelog
|
|
14
14
|
const existingContent = await fs.readFile(changelogPath, "utf8");
|
|
15
15
|
const newContent = `${prependPlaceholder}\n\n${changelogContent.trimEnd()}`;
|
|
@@ -28,7 +28,7 @@ async function buildContextRepository(options = {}) {
|
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
/** Generate changelog for multiple modules. */
|
|
31
|
-
export async function generateChangelogsForModules(moduleResults, getCommitsForModule, repoRoot, config) {
|
|
31
|
+
export async function generateChangelogsForModules(moduleResults, getCommitsForModule, repoRoot, dryRun, config) {
|
|
32
32
|
const changelogPaths = [];
|
|
33
33
|
if (!config) {
|
|
34
34
|
throw new Error(`Missing required changelog configuration`);
|
|
@@ -40,12 +40,14 @@ export async function generateChangelogsForModules(moduleResults, getCommitsForM
|
|
|
40
40
|
const contextRepository = await buildContextRepository({ cwd: repoRoot });
|
|
41
41
|
for (const moduleResult of moduleResults) {
|
|
42
42
|
if (!moduleResult.declaredVersion) {
|
|
43
|
-
logger.
|
|
43
|
+
logger.debug("Module has no declared version, skipping changelog generation", { moduleId: moduleResult.id });
|
|
44
44
|
continue;
|
|
45
45
|
}
|
|
46
46
|
const { commits, lastTag } = await getCommitsForModule(moduleResult.id);
|
|
47
47
|
if (commits.length === 0) {
|
|
48
|
-
logger.info(
|
|
48
|
+
logger.info("No commits found, skipping changelog", {
|
|
49
|
+
moduleId: moduleResult.id,
|
|
50
|
+
});
|
|
49
51
|
continue;
|
|
50
52
|
}
|
|
51
53
|
const changelogPath = join(repoRoot, moduleResult.path, "CHANGELOG.md");
|
|
@@ -68,36 +70,38 @@ export async function generateChangelogsForModules(moduleResults, getCommitsForM
|
|
|
68
70
|
...config?.context,
|
|
69
71
|
prepend,
|
|
70
72
|
}, config?.options);
|
|
71
|
-
|
|
72
|
-
|
|
73
|
+
if (dryRun) {
|
|
74
|
+
logger.debug("Dry run enabled, skipping writing changelog to file", {
|
|
75
|
+
moduleId: moduleResult.id,
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
else {
|
|
79
|
+
await updateChangelogFile(changelogContent, changelogPath, prependPlaceholder);
|
|
80
|
+
}
|
|
73
81
|
changelogPaths.push(changelogPath);
|
|
74
82
|
}
|
|
75
83
|
return changelogPaths;
|
|
76
84
|
}
|
|
77
|
-
export async function generateRootChangelog(moduleResults, getCommitsForModule, repoRoot, config) {
|
|
85
|
+
export async function generateRootChangelog(moduleResults, getCommitsForModule, repoRoot, dryRun, config) {
|
|
78
86
|
const moduleResult = moduleResults.find((result) => result.type === "root");
|
|
79
87
|
if (!moduleResult) {
|
|
80
|
-
logger.info("No root module found, skipping root changelog generation
|
|
88
|
+
logger.info("No root module found, skipping root changelog generation");
|
|
81
89
|
return;
|
|
82
90
|
}
|
|
83
91
|
if (!config) {
|
|
84
92
|
throw new Error(`Missing required changelog configuration`);
|
|
85
93
|
}
|
|
86
|
-
logger.info(
|
|
94
|
+
logger.info("Loading root changelog configuration");
|
|
87
95
|
const prependPlaceholder = config?.context.prependPlaceholder;
|
|
88
96
|
if (!prependPlaceholder) {
|
|
89
97
|
throw new Error("Missing required context property 'prependPlaceholder'");
|
|
90
98
|
}
|
|
91
99
|
const contextRepository = await buildContextRepository({ cwd: repoRoot });
|
|
92
|
-
/*if (!moduleResult.declaredVersion) {
|
|
93
|
-
logger.info(
|
|
94
|
-
`Module ${moduleResult.id} has no declared version, skipping changelog generation...`,
|
|
95
|
-
);
|
|
96
|
-
return;
|
|
97
|
-
}*/
|
|
98
100
|
const { commits, lastTag } = await getCommitsForModule(moduleResult.id);
|
|
99
101
|
if (commits.length === 0) {
|
|
100
|
-
logger.info(
|
|
102
|
+
logger.info("No commits found, skipping root changelog", {
|
|
103
|
+
moduleId: moduleResult.id,
|
|
104
|
+
});
|
|
101
105
|
return;
|
|
102
106
|
}
|
|
103
107
|
const changelogPath = join(repoRoot, moduleResult.path, "CHANGELOG.md");
|
|
@@ -121,8 +125,14 @@ export async function generateRootChangelog(moduleResults, getCommitsForModule,
|
|
|
121
125
|
...config?.context,
|
|
122
126
|
prepend,
|
|
123
127
|
}, config?.options);
|
|
124
|
-
|
|
125
|
-
|
|
128
|
+
if (dryRun) {
|
|
129
|
+
logger.info("Dry run enabled, skipping writing root changelog to file", {
|
|
130
|
+
moduleId: moduleResult.id,
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
else {
|
|
134
|
+
await updateChangelogFile(changelogContent, changelogPath, prependPlaceholder);
|
|
135
|
+
}
|
|
126
136
|
return changelogPath;
|
|
127
137
|
}
|
|
128
138
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/changelog/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,IAAI,EAAE,EAAE,MAAM,IAAI,CAAC;AACpC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAE5B,OAAO,EAGL,oBAAoB,GACrB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAE5C,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,iBAAiB,EAAc,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC9E,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD,sDAAsD;AACtD,MAAM,CAAC,KAAK,UAAU,mBAAmB,CACvC,gBAAwB,EACxB,aAAqB,EACrB,kBAA0B;IAE1B,IAAI,WAAW,GAAG,gBAAgB,CAAC;IACnC,IAAI,MAAM,MAAM,CAAC,aAAa,CAAC,EAAE,CAAC;QAChC,MAAM,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/changelog/index.ts"],"names":[],"mappings":"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"}
|
package/dist/config/index.d.ts
CHANGED
|
@@ -6,19 +6,19 @@ import { Commit } from "conventional-commits-parser";
|
|
|
6
6
|
* Validates that dependency cascade rules use valid bump types.
|
|
7
7
|
*/
|
|
8
8
|
declare const dependencyRulesSchema: z.ZodObject<{
|
|
9
|
-
|
|
9
|
+
major: z.ZodEnum<{
|
|
10
10
|
major: "major";
|
|
11
11
|
minor: "minor";
|
|
12
12
|
patch: "patch";
|
|
13
13
|
none: "none";
|
|
14
14
|
}>;
|
|
15
|
-
|
|
15
|
+
minor: z.ZodEnum<{
|
|
16
16
|
major: "major";
|
|
17
17
|
minor: "minor";
|
|
18
18
|
patch: "patch";
|
|
19
19
|
none: "none";
|
|
20
20
|
}>;
|
|
21
|
-
|
|
21
|
+
patch: z.ZodEnum<{
|
|
22
22
|
major: "major";
|
|
23
23
|
minor: "minor";
|
|
24
24
|
patch: "patch";
|
|
@@ -26,13 +26,9 @@ declare const dependencyRulesSchema: z.ZodObject<{
|
|
|
26
26
|
}>;
|
|
27
27
|
}, z.core.$strip>;
|
|
28
28
|
/**
|
|
29
|
-
* Zod schema for
|
|
30
|
-
* Validates
|
|
29
|
+
* Zod schema for Changelog configuration.
|
|
30
|
+
* Validates the structure of changelog options and context.
|
|
31
31
|
*/
|
|
32
|
-
declare const nodeJSConfigSchema: z.ZodObject<{
|
|
33
|
-
versionSource: z.ZodArray<z.ZodLiteral<"package.json">>;
|
|
34
|
-
updatePackageLock: z.ZodBoolean;
|
|
35
|
-
}, z.core.$strip>;
|
|
36
32
|
export declare const changelogSchema: z.ZodOptional<z.ZodObject<{
|
|
37
33
|
context: z.ZodObject<{
|
|
38
34
|
prependPlaceholder: z.ZodString;
|
|
@@ -45,7 +41,7 @@ export declare const changelogSchema: z.ZodOptional<z.ZodObject<{
|
|
|
45
41
|
commitPartial: z.ZodOptional<z.ZodString>;
|
|
46
42
|
headerPartial: z.ZodOptional<z.ZodString>;
|
|
47
43
|
footerPartial: z.ZodOptional<z.ZodString>;
|
|
48
|
-
}, z.core.$
|
|
44
|
+
}, z.core.$loose>>;
|
|
49
45
|
}, z.core.$strip>>;
|
|
50
46
|
/**
|
|
51
47
|
* Zod schema for the main Config object.
|
|
@@ -53,43 +49,40 @@ export declare const changelogSchema: z.ZodOptional<z.ZodObject<{
|
|
|
53
49
|
* configuration with detailed error messages for invalid configurations.
|
|
54
50
|
*/
|
|
55
51
|
export declare const configSchema: z.ZodObject<{
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
minor: "minor";
|
|
59
|
-
patch: "patch";
|
|
60
|
-
none: "none";
|
|
61
|
-
}>;
|
|
62
|
-
commitTypes: z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
63
|
-
major: "major";
|
|
64
|
-
minor: "minor";
|
|
65
|
-
patch: "patch";
|
|
66
|
-
none: "none";
|
|
67
|
-
ignore: "ignore";
|
|
68
|
-
}>>;
|
|
69
|
-
dependencyRules: z.ZodObject<{
|
|
70
|
-
onMajorOfDependency: z.ZodEnum<{
|
|
71
|
-
major: "major";
|
|
72
|
-
minor: "minor";
|
|
73
|
-
patch: "patch";
|
|
74
|
-
none: "none";
|
|
75
|
-
}>;
|
|
76
|
-
onMinorOfDependency: z.ZodEnum<{
|
|
52
|
+
versionRules: z.ZodObject<{
|
|
53
|
+
defaultBump: z.ZodEnum<{
|
|
77
54
|
major: "major";
|
|
78
55
|
minor: "minor";
|
|
79
56
|
patch: "patch";
|
|
80
57
|
none: "none";
|
|
81
58
|
}>;
|
|
82
|
-
|
|
59
|
+
commitTypeBumps: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodEnum<{
|
|
83
60
|
major: "major";
|
|
84
61
|
minor: "minor";
|
|
85
62
|
patch: "patch";
|
|
86
63
|
none: "none";
|
|
87
|
-
}
|
|
64
|
+
}>, z.ZodLiteral<"ignore">]>>;
|
|
65
|
+
dependencyBumps: z.ZodObject<{
|
|
66
|
+
major: z.ZodEnum<{
|
|
67
|
+
major: "major";
|
|
68
|
+
minor: "minor";
|
|
69
|
+
patch: "patch";
|
|
70
|
+
none: "none";
|
|
71
|
+
}>;
|
|
72
|
+
minor: z.ZodEnum<{
|
|
73
|
+
major: "major";
|
|
74
|
+
minor: "minor";
|
|
75
|
+
patch: "patch";
|
|
76
|
+
none: "none";
|
|
77
|
+
}>;
|
|
78
|
+
patch: z.ZodEnum<{
|
|
79
|
+
major: "major";
|
|
80
|
+
minor: "minor";
|
|
81
|
+
patch: "patch";
|
|
82
|
+
none: "none";
|
|
83
|
+
}>;
|
|
84
|
+
}, z.core.$strip>;
|
|
88
85
|
}, z.core.$strip>;
|
|
89
|
-
nodejs: z.ZodOptional<z.ZodObject<{
|
|
90
|
-
versionSource: z.ZodArray<z.ZodLiteral<"package.json">>;
|
|
91
|
-
updatePackageLock: z.ZodBoolean;
|
|
92
|
-
}, z.core.$strip>>;
|
|
93
86
|
plugins: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
94
87
|
changelog: z.ZodOptional<z.ZodObject<{
|
|
95
88
|
root: z.ZodOptional<z.ZodObject<{
|
|
@@ -104,7 +97,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
104
97
|
commitPartial: z.ZodOptional<z.ZodString>;
|
|
105
98
|
headerPartial: z.ZodOptional<z.ZodString>;
|
|
106
99
|
footerPartial: z.ZodOptional<z.ZodString>;
|
|
107
|
-
}, z.core.$
|
|
100
|
+
}, z.core.$loose>>;
|
|
108
101
|
}, z.core.$strip>>;
|
|
109
102
|
module: z.ZodOptional<z.ZodObject<{
|
|
110
103
|
context: z.ZodObject<{
|
|
@@ -118,12 +111,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
118
111
|
commitPartial: z.ZodOptional<z.ZodString>;
|
|
119
112
|
headerPartial: z.ZodOptional<z.ZodString>;
|
|
120
113
|
footerPartial: z.ZodOptional<z.ZodString>;
|
|
121
|
-
}, z.core.$
|
|
114
|
+
}, z.core.$loose>>;
|
|
122
115
|
}, z.core.$strip>>;
|
|
123
116
|
}, z.core.$strip>>;
|
|
124
117
|
}, z.core.$strip>;
|
|
125
118
|
/**
|
|
126
|
-
* Configuration for
|
|
119
|
+
* Configuration for version bumping behavior.
|
|
127
120
|
* Controls commit type handling, dependency cascade rules, and adapter-specific settings.
|
|
128
121
|
*/
|
|
129
122
|
export type Config = z.infer<typeof configSchema>;
|
|
@@ -133,11 +126,7 @@ export type Config = z.infer<typeof configSchema>;
|
|
|
133
126
|
*/
|
|
134
127
|
export type DependencyRules = z.infer<typeof dependencyRulesSchema>;
|
|
135
128
|
/**
|
|
136
|
-
*
|
|
137
|
-
*/
|
|
138
|
-
export type NodeJSConfig = z.infer<typeof nodeJSConfigSchema>;
|
|
139
|
-
/**
|
|
140
|
-
* Default VERSU configuration following Conventional Commits specification.
|
|
129
|
+
* Default configuration following Conventional Commits specification.
|
|
141
130
|
* Maps common commit types to semantic version bumps and defines dependency cascade rules.
|
|
142
131
|
*/
|
|
143
132
|
export declare const DEFAULT_CONFIG: Config;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAC9C,OAAO,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAC9C,OAAO,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAerD;;;GAGG;AACH,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;iBAIzB,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;kBAoBf,CAAC;AAEd;;;;GAIG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAavB,CAAC;AAEH;;;GAGG;AACH,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAElD;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE;;;GAGG;AACH,eAAO,MAAM,cAAc,EAAE,MAsB5B,CAAC;AAEF;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,QAAQ,CAe7E;AAED;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CACnC,kBAAkB,EAAE,QAAQ,EAC5B,MAAM,EAAE,MAAM,GACb,QAAQ,CAaV;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,MAAM,MAAM,EACrD,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,CAAC,GACb,MAAM,CAAC,CAAC,CAAC,CAEX"}
|
package/dist/config/index.js
CHANGED
|
@@ -9,30 +9,20 @@ const bumpTypeSchema = z.enum(["major", "minor", "patch", "none"]);
|
|
|
9
9
|
* Zod schema for BumpType or 'ignore' values.
|
|
10
10
|
* Used for commit type mappings where 'ignore' is allowed.
|
|
11
11
|
*/
|
|
12
|
-
const bumpTypeOrIgnoreSchema = z.
|
|
13
|
-
"major",
|
|
14
|
-
"minor",
|
|
15
|
-
"patch",
|
|
16
|
-
"none",
|
|
17
|
-
"ignore",
|
|
18
|
-
]);
|
|
12
|
+
const bumpTypeOrIgnoreSchema = z.union([bumpTypeSchema, z.literal("ignore")]);
|
|
19
13
|
/**
|
|
20
14
|
* Zod schema for DependencyRules configuration.
|
|
21
15
|
* Validates that dependency cascade rules use valid bump types.
|
|
22
16
|
*/
|
|
23
17
|
const dependencyRulesSchema = z.object({
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
18
|
+
major: bumpTypeSchema,
|
|
19
|
+
minor: bumpTypeSchema,
|
|
20
|
+
patch: bumpTypeSchema,
|
|
27
21
|
});
|
|
28
22
|
/**
|
|
29
|
-
* Zod schema for
|
|
30
|
-
* Validates
|
|
23
|
+
* Zod schema for Changelog configuration.
|
|
24
|
+
* Validates the structure of changelog options and context.
|
|
31
25
|
*/
|
|
32
|
-
const nodeJSConfigSchema = z.object({
|
|
33
|
-
versionSource: z.array(z.literal("package.json")),
|
|
34
|
-
updatePackageLock: z.boolean(),
|
|
35
|
-
});
|
|
36
26
|
export const changelogSchema = z
|
|
37
27
|
.object({
|
|
38
28
|
context: z
|
|
@@ -50,6 +40,7 @@ export const changelogSchema = z
|
|
|
50
40
|
headerPartial: z.string().optional(),
|
|
51
41
|
footerPartial: z.string().optional(),
|
|
52
42
|
})
|
|
43
|
+
.loose()
|
|
53
44
|
.optional(),
|
|
54
45
|
})
|
|
55
46
|
.optional();
|
|
@@ -59,10 +50,11 @@ export const changelogSchema = z
|
|
|
59
50
|
* configuration with detailed error messages for invalid configurations.
|
|
60
51
|
*/
|
|
61
52
|
export const configSchema = z.object({
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
53
|
+
versionRules: z.object({
|
|
54
|
+
defaultBump: bumpTypeSchema,
|
|
55
|
+
commitTypeBumps: z.record(z.string(), bumpTypeOrIgnoreSchema),
|
|
56
|
+
dependencyBumps: dependencyRulesSchema,
|
|
57
|
+
}),
|
|
66
58
|
plugins: z.array(z.string()).optional().default([]),
|
|
67
59
|
changelog: z
|
|
68
60
|
.object({
|
|
@@ -72,28 +64,30 @@ export const configSchema = z.object({
|
|
|
72
64
|
.optional(),
|
|
73
65
|
});
|
|
74
66
|
/**
|
|
75
|
-
* Default
|
|
67
|
+
* Default configuration following Conventional Commits specification.
|
|
76
68
|
* Maps common commit types to semantic version bumps and defines dependency cascade rules.
|
|
77
69
|
*/
|
|
78
70
|
export const DEFAULT_CONFIG = {
|
|
79
|
-
defaultBump: "patch",
|
|
80
|
-
commitTypes: {
|
|
81
|
-
feat: "minor",
|
|
82
|
-
fix: "patch",
|
|
83
|
-
perf: "patch",
|
|
84
|
-
refactor: "patch",
|
|
85
|
-
docs: "ignore",
|
|
86
|
-
test: "ignore",
|
|
87
|
-
chore: "ignore",
|
|
88
|
-
style: "ignore",
|
|
89
|
-
ci: "ignore",
|
|
90
|
-
build: "ignore",
|
|
91
|
-
},
|
|
92
71
|
plugins: [],
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
72
|
+
versionRules: {
|
|
73
|
+
defaultBump: "patch",
|
|
74
|
+
commitTypeBumps: {
|
|
75
|
+
feat: "minor",
|
|
76
|
+
fix: "patch",
|
|
77
|
+
perf: "patch",
|
|
78
|
+
refactor: "patch",
|
|
79
|
+
docs: "ignore",
|
|
80
|
+
test: "ignore",
|
|
81
|
+
chore: "ignore",
|
|
82
|
+
style: "ignore",
|
|
83
|
+
ci: "ignore",
|
|
84
|
+
build: "ignore",
|
|
85
|
+
},
|
|
86
|
+
dependencyBumps: {
|
|
87
|
+
major: "major",
|
|
88
|
+
minor: "minor",
|
|
89
|
+
patch: "patch",
|
|
90
|
+
},
|
|
97
91
|
},
|
|
98
92
|
};
|
|
99
93
|
/**
|
|
@@ -108,11 +102,11 @@ export function getBumpTypeForCommit(commit, config) {
|
|
|
108
102
|
return "major";
|
|
109
103
|
}
|
|
110
104
|
const commitType = commit.type || "unknown";
|
|
111
|
-
const configuredBump = config.
|
|
105
|
+
const configuredBump = config.versionRules.commitTypeBumps[commitType];
|
|
112
106
|
if (configuredBump === "ignore") {
|
|
113
107
|
return "none";
|
|
114
108
|
}
|
|
115
|
-
return configuredBump || config.defaultBump;
|
|
109
|
+
return configuredBump || config.versionRules.defaultBump;
|
|
116
110
|
}
|
|
117
111
|
/**
|
|
118
112
|
* Determines how a module should be bumped when one of its dependencies changes.
|
|
@@ -122,14 +116,14 @@ export function getBumpTypeForCommit(commit, config) {
|
|
|
122
116
|
* @returns The bump type to apply to the dependent module
|
|
123
117
|
*/
|
|
124
118
|
export function getDependencyBumpType(dependencyBumpType, config) {
|
|
125
|
-
const rules = config.
|
|
119
|
+
const rules = config.versionRules.dependencyBumps;
|
|
126
120
|
switch (dependencyBumpType) {
|
|
127
121
|
case "major":
|
|
128
|
-
return rules.
|
|
122
|
+
return rules.major;
|
|
129
123
|
case "minor":
|
|
130
|
-
return rules.
|
|
124
|
+
return rules.minor;
|
|
131
125
|
case "patch":
|
|
132
|
-
return rules.
|
|
126
|
+
return rules.patch;
|
|
133
127
|
default:
|
|
134
128
|
return "none";
|
|
135
129
|
}
|
package/dist/config/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAEnD;;;GAGG;AACH,MAAM,cAAc,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC;AAEnE;;;GAGG;AACH,MAAM,sBAAsB,GAAG,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,10 +4,6 @@ import { PluginContract } from "../plugins/plugin-loader.js";
|
|
|
4
4
|
* Creates and configures the global adapter identifier registry.
|
|
5
5
|
*
|
|
6
6
|
* @returns Configured {@link AdapterIdentifierRegistry} with all available adapters
|
|
7
|
-
*
|
|
8
|
-
* @remarks
|
|
9
|
-
* Central point for registering all supported project adapters.
|
|
10
|
-
* To add a new adapter, implement {@link AdapterIdentifier} and add it to the array.
|
|
11
7
|
*/
|
|
12
8
|
export declare function createAdapterIdentifierRegistry(plugins: PluginContract[]): AdapterIdentifierRegistry;
|
|
13
9
|
//# sourceMappingURL=adapter-identifier-registry.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapter-identifier-registry.d.ts","sourceRoot":"","sources":["../../src/factories/adapter-identifier-registry.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"adapter-identifier-registry.d.ts","sourceRoot":"","sources":["../../src/factories/adapter-identifier-registry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,4CAA4C,CAAC;AACvF,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAE7D;;;;GAIG;AACH,wBAAgB,+BAA+B,CAC7C,OAAO,EAAE,cAAc,EAAE,GACxB,yBAAyB,CAS3B"}
|
|
@@ -3,21 +3,11 @@ import { AdapterIdentifierRegistry } from "../services/adapter-identifier-regist
|
|
|
3
3
|
* Creates and configures the global adapter identifier registry.
|
|
4
4
|
*
|
|
5
5
|
* @returns Configured {@link AdapterIdentifierRegistry} with all available adapters
|
|
6
|
-
*
|
|
7
|
-
* @remarks
|
|
8
|
-
* Central point for registering all supported project adapters.
|
|
9
|
-
* To add a new adapter, implement {@link AdapterIdentifier} and add it to the array.
|
|
10
6
|
*/
|
|
11
7
|
export function createAdapterIdentifierRegistry(plugins) {
|
|
12
8
|
// Array of all registered adapter identifiers
|
|
13
9
|
// Order matters: first matching adapter is selected during auto-detection
|
|
14
|
-
const identifiers =
|
|
15
|
-
// Add future adapter identifiers here as they are implemented:
|
|
16
|
-
// new MavenAdapterIdentifier(),
|
|
17
|
-
// new NodeJSAdapterIdentifier(),
|
|
18
|
-
// new PythonAdapterIdentifier(),
|
|
19
|
-
...plugins.flatMap((plugin) => plugin.adapters.map((adapter) => adapter.adapterIdentifier())),
|
|
20
|
-
];
|
|
10
|
+
const identifiers = plugins.flatMap((plugin) => plugin.adapters.map((adapter) => adapter.adapterIdentifier()));
|
|
21
11
|
// Create and return the registry with all registered identifiers
|
|
22
12
|
return new AdapterIdentifierRegistry(identifiers);
|
|
23
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapter-identifier-registry.js","sourceRoot":"","sources":["../../src/factories/adapter-identifier-registry.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"adapter-identifier-registry.js","sourceRoot":"","sources":["../../src/factories/adapter-identifier-registry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,4CAA4C,CAAC;AAGvF;;;;GAIG;AACH,MAAM,UAAU,+BAA+B,CAC7C,OAAyB;IAEzB,8CAA8C;IAC9C,0EAA0E;IAC1E,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,EAAE,CAC7C,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,iBAAiB,EAAE,CAAC,CAC9D,CAAC;IAEF,iEAAiE;IACjE,OAAO,IAAI,yBAAyB,CAAC,WAAW,CAAC,CAAC;AACpD,CAAC"}
|