@eldrforge/kodrdriv 1.2.126 → 1.2.128
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/dist/arguments.js +17 -2
- package/dist/arguments.js.map +1 -1
- package/dist/commands/publish.js +8 -1
- package/dist/commands/publish.js.map +1 -1
- package/dist/commands/release.js +40 -0
- package/dist/commands/release.js.map +1 -1
- package/dist/commands/tree.js +16 -1
- package/dist/commands/tree.js.map +1 -1
- package/dist/constants.js +1 -1
- package/package.json +5 -5
package/dist/commands/publish.js
CHANGED
|
@@ -568,7 +568,7 @@ const execute = async (runConfig)=>{
|
|
|
568
568
|
if (pr) {
|
|
569
569
|
logger.info(`PR_FOUND: Existing pull request detected for current branch | URL: ${pr.html_url} | Status: open`);
|
|
570
570
|
} else {
|
|
571
|
-
var _runConfig_publish4, _runConfig_publish5, _runConfig_publish6, _runConfig_publish7, _runConfig_publish8, _runConfig_publish9, _runConfig_publish10, _runConfig_publish11, _runConfig_publish12;
|
|
571
|
+
var _runConfig_publish4, _runConfig_publish5, _runConfig_publish6, _runConfig_publish7, _runConfig_publish8, _runConfig_publish9, _runConfig_publish10, _runConfig_publish11, _runConfig_publish12, _releaseConfig_release, _releaseConfig_release1;
|
|
572
572
|
logger.info('PR_NOT_FOUND: No open pull request exists for current branch | Action: Starting new release publishing process | Next: Prepare dependencies and version');
|
|
573
573
|
// STEP 1: Prepare for release (update dependencies and run prepublish checks) with NO version bump yet
|
|
574
574
|
logger.verbose('RELEASE_PREP_STARTING: Preparing for release | Phase: dependency management | Action: Switch from workspace to remote dependencies | Version Bump: Not yet applied');
|
|
@@ -917,6 +917,13 @@ const execute = async (runConfig)=>{
|
|
|
917
917
|
if ((_runConfig_publish12 = runConfig.publish) === null || _runConfig_publish12 === void 0 ? void 0 : _runConfig_publish12.fromMain) {
|
|
918
918
|
logger.verbose('Forcing comparison against main branch for release notes');
|
|
919
919
|
}
|
|
920
|
+
// Log agentic mode settings for debugging
|
|
921
|
+
if ((_releaseConfig_release = releaseConfig.release) === null || _releaseConfig_release === void 0 ? void 0 : _releaseConfig_release.agentic) {
|
|
922
|
+
logger.verbose('Agentic mode enabled for release notes generation');
|
|
923
|
+
}
|
|
924
|
+
if ((_releaseConfig_release1 = releaseConfig.release) === null || _releaseConfig_release1 === void 0 ? void 0 : _releaseConfig_release1.selfReflection) {
|
|
925
|
+
logger.verbose('Self-reflection enabled for release notes generation');
|
|
926
|
+
}
|
|
920
927
|
const releaseSummary = await execute$1(releaseConfig);
|
|
921
928
|
if (isDryRun) {
|
|
922
929
|
logger.info('Would write release notes to RELEASE_NOTES.md and RELEASE_TITLE.md in output directory');
|