Skip to content

Commit 161f02d

Browse files
authored
Merge pull request #13250 from microsoft/seanmcm/1_24_0_insiders
Merge for 1.24.0
2 parents e7dff79 + c48729b commit 161f02d

27 files changed

+1401
-839
lines changed

.github/actions/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/bug-debugger.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: bug,debugger
26-
ignoreLabels: "investigate: costing,investigate,external,by design,question,more info needed,language service,internal"
26+
ignoreLabels: "investigate: costing,investigate,external,by design,question,more info needed,Language Service,internal"
2727
createdAfter: "2024-07-22"
2828
addComment: "Thank you for reporting this issue. We’ll let you know if we need more information to investigate it. Additionally, if you're working with GDB/LLDB, please note that the code is open source at https://github.com/microsoft/MIEngine/wiki/Contributing-Code . Your contributions are always welcome and appreciated."
29+
addLabels: help wanted

.github/workflows/by-design-closer-debugger .yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: by design,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
closeDays: 0
2828
closeComment: "This issue has been closed because the described behavior was determined to be by design."

.github/workflows/external-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: external,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
closeDays: 0
2828
closeComment: "This issue has been closed because it is external or not applicable to the extension."

.github/workflows/feature-request-debugger.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
uses: ./.github/actions/AddComment
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
25-
labels: feature request,debugger
26-
ignoreLabels: "investigate: costing,investigate,external,by design,question,more info needed,language service,internal"
25+
labels: Feature Request,debugger
26+
ignoreLabels: "investigate: costing,investigate,external,by design,question,more info needed,Language Service,internal"
2727
createdAfter: "2024-07-22"
2828
addComment: "Thank you for your feature request. While we may not be able to implement it immediately, we will monitor community reactions to see how it fits into our backlog. Additionally, if you're working with GDB/LLDB, please note that the code is open source at https://github.com/microsoft/MIEngine/wiki/Contributing-Code . Your contributions are always welcome and appreciated."
29+
addLabels: help wanted

.github/workflows/investigate-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: investigate,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
closeDays: 180
2828
closeComment: "This issue has been closed as lower priority. We're sorry if this issue still impacts you but unfortunately we're not able to address this. We will accept a pull request from the community if it's applicable for this issue."

.github/workflows/investigate-costing-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: "investigate: costing,debugger"
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
closeDays: 180
2828
closeComment: "This issue has been closed as lower priority. We're sorry if this issue still impacts you but unfortunately we're not able to address this. We will accept a pull request from the community if it's applicable for this issue."

.github/workflows/more-info-needed-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: more info needed,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
involves: wardengnaw,pieandcakes,calgagi
2828
closeDays: 14
2929
closeComment: "This issue has been closed because it needs more information and has not had recent activity."

.github/workflows/question-closer-debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: question,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
involves: wardengnaw,pieandcakes,calgagi
2828
closeDays: 14
2929
closeComment: "This issue has been closed because it is a question and has not had recent activity."

Extension/.scripts/common.ts

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const Git = async (...args: Parameters<Awaited<CommandFunction>>) => (awa
4848
export const GitClean = async (...args: Parameters<Awaited<CommandFunction>>) => (await new Command(await git, 'clean'))(...args);
4949

5050
export async function getModifiedIgnoredFiles() {
51-
const {code, error, stdio } = await GitClean('-Xd', '-n');
51+
const { code, error, stdio } = await GitClean('-Xd', '-n');
5252
if (code) {
5353
throw new Error(`\n${error.all().join('\n')}`);
5454
}
@@ -65,11 +65,11 @@ export async function rimraf(...paths: string[]) {
6565
}
6666
if (await filepath.isFolder(each)) {
6767
verbose(`Removing folder ${red(each)}`);
68-
all.push(rm(each, {recursive: true, force: true}));
68+
all.push(rm(each, { recursive: true, force: true }));
6969
continue;
7070
}
7171
verbose(`Removing file ${red(each)}`);
72-
all.push(rm(each, {force: true}));
72+
all.push(rm(each, { force: true }));
7373
}
7474
await Promise.all(all);
7575
}
@@ -345,3 +345,15 @@ export async function checkBinaries() {
345345
}
346346
return failing;
347347
}
348+
349+
export async function checkProposals() {
350+
let failing = false;
351+
352+
await rm(`${$root}/vscode.proposed.chatParticipantAdditions.d.ts`);
353+
failing = await assertAnyFile('vscode.proposed.chatParticipantAdditions.d.ts') && (quiet || warn(`The VSCode import file '${$root}/vscode.proposed.chatParticipantAdditions.d.ts' should not be present.`)) || failing;
354+
355+
if (!failing) {
356+
verbose('VSCode proposals appear to be in place.');
357+
}
358+
return failing;
359+
}

0 commit comments

Comments
 (0)