Skip to content

Commit 0828289

Browse files
authored
prepare for v6.2.4 release (#1138)
1 parent 2ef208d commit 0828289

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can see the full [features](#features) and learn more details in the [How-To
2626
Happy testing!
2727

2828
## Releases
29-
- **Current** ([v6.2.3](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.3)): [release note](release-notes/release-note-v6.md#v623)
29+
- **Current** ([v6.2.4](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.4)): [release note](release-notes/release-note-v6.md#v624)
3030
- **Previous** ([v5.2.3](https://github.com/jest-community/vscode-jest/releases/tag/v5.2.3)): [release note](release-notes/release-note-v5.x.md#v523)
3131

3232

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-jest",
33
"displayName": "Jest",
44
"description": "Use Facebook's Jest With Pleasure.",
5-
"version": "6.2.3",
5+
"version": "6.2.4",
66
"publisher": "Orta",
77
"engines": {
88
"vscode": "^1.68.1"

Diff for: release-notes/release-note-v6.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Release Notes <!-- omit in toc -->
44
---
55

6+
- [v6.2.4](#v624)
67
- [v6.2.3](#v623)
78
- [v6.2.2](#v622)
89
- [CHANGELOG](#changelog)
@@ -36,6 +37,16 @@ Release Notes <!-- omit in toc -->
3637

3738
---
3839

40+
## v6.2.4
41+
42+
**Enhancements**
43+
- Improved handling of zombie Jest processes during on-demand runs for scenarios like [stencil](https://github.com/jest-community/vscode-jest/issues/1124#issuecomment-2000596099) and [rt-test](https://github.com/jest-community/vscode-jest/issues/1137#issuecomment-2048570421), which previously failed to correctly interpret `"watchAll=false"`. We encourage users to report issues to the underlying systems. In the meantime, this extension will automatically terminate such zombie processes during on-demand runs, preventing them from blocking the execution queue. ([#1134](https://github.com/jest-community/vscode-jest/pull/1134) - @connectdotz)
44+
45+
**Bug Fixes**
46+
- Fixed an issue where the Test Explorer's `Stop` button did not terminate the underlying Jest process, potentially blocking the execution queue for subsequent on-demand runs. ([#1134](https://github.com/jest-community/vscode-jest/pull/1134) - @connectdotz)
47+
- Resolved a problem where the "Jest: Run All Tests" command was obstructed by the watch mode's ongoing execution. ([#1132](https://github.com/jest-community/vscode-jest/pull/1132) - @connectdotz)
48+
49+
3950
## v6.2.3
4051
This release is a patch release with the following changes:
4152

Diff for: src/extension-manager.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -531,10 +531,9 @@ export class ExtensionManager {
531531

532532
const ReleaseNoteBase = 'https://github.com/jest-community/vscode-jest/blob/master/release-notes';
533533
const ReleaseNotes: Record<string, string> = {
534+
'6.2.4': `${ReleaseNoteBase}/release-note-v6.md#v624`,
534535
'6.2.3': `${ReleaseNoteBase}/release-note-v6.md#v623`,
535536
'6.2.2': `${ReleaseNoteBase}/release-note-v6.md#v622`,
536537
'6.2.0': `${ReleaseNoteBase}/release-note-v6.md#v620`,
537-
'6.1.0': `${ReleaseNoteBase}/release-note-v6.md#v610-pre-release`,
538-
'6.0.0': `${ReleaseNoteBase}/release-note-v6.md#v600-pre-release`,
539538
'5.2.3': `${ReleaseNoteBase}/release-note-v5.x.md#v523`,
540539
};

0 commit comments

Comments
 (0)