edsger 0.21.8 → 0.21.9

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.
@@ -175,8 +175,8 @@ export async function createBranchPullRequest(config, devBranchName, featureName
175
175
  pullRequestNumber: existingPR.number,
176
176
  };
177
177
  }
178
- // Generate PR title and body (truncate to keep under 72 chars)
179
- const truncatedName = truncateText(featureName, MAX_FEATURE_NAME_LENGTH);
178
+ // Generate PR title and body (truncate to keep under 72 chars, lowercase)
179
+ const truncatedName = truncateText(featureName.toLowerCase(), MAX_FEATURE_NAME_LENGTH);
180
180
  const title = `${PR_TITLE_PREFIX}${truncatedName}`;
181
181
  const body = `## Branch Implementation
182
182
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edsger",
3
- "version": "0.21.8",
3
+ "version": "0.21.9",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "edsger": "dist/index.js"