git-stack-cli 1.11.0 → 1.11.1
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/cjs/index.cjs
CHANGED
|
@@ -30147,6 +30147,10 @@ function DetectInitialPR(props) {
|
|
|
30147
30147
|
for (const group of commit_range.group_list) {
|
|
30148
30148
|
group.id = branch_name;
|
|
30149
30149
|
group.title = state.pr?.title || "-";
|
|
30150
|
+
for (const commit of commit_range.commit_list) {
|
|
30151
|
+
commit.branch_id = group.id;
|
|
30152
|
+
commit.title = group.title;
|
|
30153
|
+
}
|
|
30150
30154
|
}
|
|
30151
30155
|
// get latest merge_base relative to local master
|
|
30152
30156
|
const rebase_group_index = 0;
|
|
@@ -37381,7 +37385,7 @@ async function command() {
|
|
|
37381
37385
|
.wrap(123)
|
|
37382
37386
|
// disallow unknown options
|
|
37383
37387
|
.strict()
|
|
37384
|
-
.version("1.11.
|
|
37388
|
+
.version("1.11.1" )
|
|
37385
37389
|
.showHidden("show-hidden", "Show hidden options via `git stack help --show-hidden`")
|
|
37386
37390
|
.help("help", "Show usage via `git stack help`")
|
|
37387
37391
|
.argv;
|
package/package.json
CHANGED
|
@@ -157,6 +157,10 @@ export function DetectInitialPR(props: Props) {
|
|
|
157
157
|
for (const group of commit_range.group_list) {
|
|
158
158
|
group.id = branch_name;
|
|
159
159
|
group.title = state.pr?.title || "-";
|
|
160
|
+
for (const commit of commit_range.commit_list) {
|
|
161
|
+
commit.branch_id = group.id;
|
|
162
|
+
commit.title = group.title;
|
|
163
|
+
}
|
|
160
164
|
}
|
|
161
165
|
|
|
162
166
|
// get latest merge_base relative to local master
|