Skip to content

Commit 92b7162

Browse files
authored
prepare for v6.4.1 pre-release (#1232)
1 parent bfb4977 commit 92b7162

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

Diff for: README.md

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

2828
## Releases
29+
- **Next** ([v6.4.1-next](https://github.com/jest-community/vscode-jest/releases/tag/v6.4.1-next)): [release note](release-notes/release-note-v6.md#v641-pre-release)
2930
- **Current** ([v6.4.0](https://github.com/jest-community/vscode-jest/releases/tag/v6.4.0)): [release note](release-notes/release-note-v6.md#v640)
3031
- **Previous** ([v6.2.5](https://github.com/jest-community/vscode-jest/releases/tag/v6.2.5)): [release note](release-notes/release-note-v6.md#v625)
3132

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

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

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

6+
- [v6.4.1 (pre-release)](#v641-pre-release)
67
- [v6.4.0](#v640)
78
- [Features](#features)
89
- [Bug Fixes](#bug-fixes)
@@ -50,6 +51,17 @@ Release Notes <!-- omit in toc -->
5051
- [CHANGELOG](#changelog-3)
5152

5253
---
54+
55+
## v6.4.1 (pre-release)
56+
57+
This pre-release mainly fixes bugs, address dependency upgrade and internal issue management. Details see CHANGELOG below.
58+
59+
**CHANGELOG**
60+
61+
- [v6.4.1-next](https://github.com/jest-community/vscode-jest/releases/tag/v6.4.1-next)
62+
63+
---
64+
5365
## v6.4.0
5466

5567
This is a cumulative release that incorporates updates and fixes introduced in the v6.3.0 and v6.3.1 pre-releases. This release brings enhanced debugging capabilities, new features for Jest v30 compatibility, and improved coverage integration with VS Code, along with several bug fixes and dependency updates.

Diff for: src/extension-manager.ts

+1
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ export class ExtensionManager {
524524

525525
const ReleaseNoteBase = 'https://github.com/jest-community/vscode-jest/blob/master/release-notes';
526526
const ReleaseNotes: Record<string, string> = {
527+
'6.4.1': `${ReleaseNoteBase}/release-note-v6.md#v641-pre-release`,
527528
'6.4.0': `${ReleaseNoteBase}/release-note-v6.md#v640`,
528529
'6.3.1': `${ReleaseNoteBase}/release-note-v6.md#v63-pre-release`,
529530
'6.3.0': `${ReleaseNoteBase}/release-note-v6.md#v63-pre-release`,

Diff for: src/output-manager.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ export class OutputManager {
9191
config.revealWithFocus = 'test-results';
9292
break;
9393
default:
94-
console.warn(`Unrecognized "testing.openTesting" setting: ${this.openTesting}`);
94+
console.warn(
95+
`Unrecognized "testing.openTesting" setting: ${JSON.stringify(this.openTesting)}`
96+
);
9597
}
9698

9799
if (autoRevealOutput === 'off') {

0 commit comments

Comments
 (0)