Skip to content

Commit d241cb3

Browse files
authored
prepare for v6.2.5 release (#1147)
1 parent 263dd1b commit d241cb3

File tree

4 files changed

+36
-2
lines changed

4 files changed

+36
-2
lines changed

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.4](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.4)): [release note](release-notes/release-note-v6.md#v624)
29+
- **Current** ([v6.2.5](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.5)): [release note](release-notes/release-note-v6.md#v625)
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

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.4",
5+
"version": "6.2.5",
66
"publisher": "Orta",
77
"engines": {
88
"vscode": "^1.68.1"

release-notes/release-note-v6.md

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

6+
- [v6.2.5](#v625)
67
- [v6.2.4](#v624)
78
- [v6.2.3](#v623)
89
- [v6.2.2](#v622)
@@ -37,25 +38,52 @@ Release Notes <!-- omit in toc -->
3738

3839
---
3940

41+
## v6.2.5
42+
43+
**Bug Fixes**
44+
45+
- Fixed an issue (#1145) where an autoRun (watch, on-save) might not update the test status in Editor and TestExplorer in subsequent runs. ([#1146](https://github.com/jest-community/vscode-jest/pull/1146) - @connectdotz)
46+
47+
**CHANGELOG**
48+
49+
- [v6.2.5](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.5)
50+
51+
---
52+
4053
## v6.2.4
4154

4255
**Enhancements**
56+
4357
- 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)
4458

4559
**Bug Fixes**
60+
4661
- 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)
4762
- 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)
4863

64+
**CHANGELOG**
65+
66+
- [v6.2.4](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.4)
67+
68+
---
4969

5070
## v6.2.3
71+
5172
This release is a patch release with the following changes:
5273

5374
**Enhancement**
5475

5576
- Improve output-focus default behavior for auto runs (e.g., "watch", "on-save"). This will eliminate the issue that the focus auto switching to "TEST RESULTS" panel whenever files are saved in auto-run modes. Now the default behavior is runMode aware and will not auto switch for auto runs unless specifically configured to do so. See [default output focus behavior](https://github.com/jest-community/vscode-jest#default-output-focus). ([#1128](https://github.com/jest-community/vscode-jest/pull/1128) - @connectdotz)
5677
- docs: update README to fix jest run mode type. ([#1126](https://github.com/jest-community/vscode-jest/pull/1126) - @kota-kamikawa)
5778

79+
**CHANGELOG**
80+
81+
- [v6.2.3](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.3)
82+
83+
---
84+
5885
## v6.2.2
86+
5987
This release is a patch release with the following changes:
6088

6189
**Enhancement**
@@ -81,15 +109,20 @@ This release is a patch release with the following changes:
81109
- Minor update for the output config info in README and release notes. ([#1119](https://github.com/jest-community/vscode-jest/pull/1119) - @connectdotz)
82110

83111
### CHANGELOG
112+
84113
- [v6.2.2](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.2)
85114

115+
---
116+
86117
## v6.2.1
87118
This release is a patch release with the following bug fix:
88119

89120
- Fixed test run errors due to incorrect sub folder paths from the test Explorer panel. ([#1114](https://github.com/jest-community/vscode-jest/pull/1114) - @connectdotz)
90121

91122
### CHANGELOG
92123
- [v6.2.1](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.1)
124+
125+
---
93126

94127
## v6.2.0
95128
This version is a rollup of pre-releases [v6.0](#v60-pre-release) through [v6.1](#v61-pre-release), which implemented a few long requested features, such as better monorepo project support, more intuitive ways to defer and resume testing, and showing accurate test results in TEST RESULT panel.

src/extension-manager.ts

+1
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,7 @@ 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.5': `${ReleaseNoteBase}/release-note-v6.md#v625`,
534535
'6.2.4': `${ReleaseNoteBase}/release-note-v6.md#v624`,
535536
'6.2.3': `${ReleaseNoteBase}/release-note-v6.md#v623`,
536537
'6.2.2': `${ReleaseNoteBase}/release-note-v6.md#v622`,

0 commit comments

Comments
 (0)