Skip to content

Commit c93ec7a

Browse files
authored
prepare for v6.4.3 release (#1240)
1 parent 78af94b commit c93ec7a

File tree

4 files changed

+40
-8
lines changed

4 files changed

+40
-8
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ 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.2-next](https://github.com/jest-community/vscode-jest/releases/tag/v6.4.2-next)): [release note](release-notes/release-note-v6.md#v642-pre-release)
30-
- **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)
31-
- **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)
29+
- **Current** ([v6.4.3](https://github.com/jest-community/vscode-jest/releases/tag/v6.4.3)): [release note](release-notes/release-note-v6.md#v643)
30+
- **Previous** ([v6.4.0](https://github.com/jest-community/vscode-jest/releases/tag/v6.4.0)): [release note](release-notes/release-note-v6.md#v640)
3231

3332

3433
All: [Release Notes](release-notes/release-notes.md)

package.json

Lines changed: 1 addition & 1 deletion
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.2",
5+
"version": "6.4.3",
66
"publisher": "Orta",
77
"engines": {
88
"vscode": "^1.88.1"

release-notes/release-note-v6.md

Lines changed: 36 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,23 @@
33
Release Notes <!-- omit in toc -->
44
---
55

6+
- [v6.4.3](#v643)
7+
- [Bug Fixes](#bug-fixes)
8+
- [Other Changes](#other-changes)
69
- [v6.4.2 (pre-release)](#v642-pre-release)
710
- [v6.4.1 (pre-release)](#v641-pre-release)
811
- [v6.4.0](#v640)
912
- [Features](#features)
10-
- [Bug Fixes](#bug-fixes)
13+
- [Bug Fixes](#bug-fixes-1)
1114
- [Dependency Updates](#dependency-updates)
1215
- [v6.3 (pre-release)](#v63-pre-release)
1316
- [v6.3.1 (pre-release)](#v631-pre-release)
1417
- [Features](#features-1)
15-
- [Bug Fixes](#bug-fixes-1)
18+
- [Bug Fixes](#bug-fixes-2)
1619
- [Dependency Updates](#dependency-updates-1)
1720
- [v6.3.0 (pre-release)](#v630-pre-release)
1821
- [Features](#features-2)
19-
- [Bug Fixes](#bug-fixes-2)
22+
- [Bug Fixes](#bug-fixes-3)
2023
- [v6.2](#v62)
2124
- [v6.2.5](#v625)
2225
- [v6.2.4](#v624)
@@ -40,7 +43,7 @@ Release Notes <!-- omit in toc -->
4043
- [2.1 "TEST RESULTS" Panel Integration](#21-test-results-panel-integration)
4144
- [2.2 Configuration and Examples](#22-configuration-and-examples)
4245
- [2.3 Deprecations and Migration](#23-deprecations-and-migration)
43-
- [Bug Fixes](#bug-fixes-3)
46+
- [Bug Fixes](#bug-fixes-4)
4447
- [Technical Debt](#technical-debt)
4548
- [v6.0 (pre-release)](#v60-pre-release)
4649
- [Main Features](#main-features-1)
@@ -53,6 +56,35 @@ Release Notes <!-- omit in toc -->
5356

5457
---
5558

59+
## v6.4.3
60+
61+
This release is a roll-up of the v6.4.1 and v6.4.2 pre-releases, consolidating several bug fixes.
62+
63+
### Bug Fixes
64+
65+
* **Debugger Stability**: Resolved an issue where quoted command-line arguments could crash the debugger session, especially on Windows. [#1224](https://github.com/jest-community/vscode-jest/pull/1224)
66+
67+
* **Snapshot Update Accuracy**: Fixed a problem where the snapshot context menu appeared in the Test Explorer regardless of controller ownership. [#1227](https://github.com/jest-community/vscode-jest/pull/1227)
68+
69+
* **Multi-line Test Names**: Multi-line test names can now be correctly handled. [#1234](https://github.com/jest-community/vscode-jest/pull/1234)
70+
71+
* **Deep Test Name Pattern Lookup**: Fixed a bug where test hierarchies containing multiple dynamic titles could cause unexpected on-demand test run errors. [#1225](https://github.com/jest-community/vscode-jest/pull/1225)
72+
73+
### Other Changes
74+
75+
* **Settings Migration**: Migrated the `"testing.openTesting"` setting to `"testing.automaticallyOpenTestResults"` to stay in sync with the vscode testing framework changes. [#1235](https://github.com/jest-community/vscode-jest/pull/1235)
76+
77+
* **Dependency Updates**: Upgraded `cross-spawn` from 7.0.3 to 7.0.6 and `@babel/helpers` from 7.24.6 to 7.27.0 to incorporate the latest improvements and fixes. [#1197](https://github.com/jest-community/vscode-jest/pull/1197), [#1226](https://github.com/jest-community/vscode-jest/pull/1226)
78+
79+
* **CI Enhancements**: Updated the stale issue management scripts to improve issue lifecycle handling. [#1228](https://github.com/jest-community/vscode-jest/pull/1228), [#1229](https://github.com/jest-community/vscode-jest/pull/1229)
80+
81+
**CHANGELOG**
82+
83+
* [v6.4.3](https://github.com/jest-community/vscode-jest/releases/tag/v6.4.3)
84+
85+
---
86+
87+
5688
## v6.4.2 (pre-release)
5789

5890
This pre-release mainly fixes bugs and upgrade to reflect vscode testing framework changes. Details see CHANGELOG below.

src/extension-manager.ts

Lines changed: 1 addition & 0 deletions
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.3': `${ReleaseNoteBase}/release-note-v6.md#v643`,
527528
'6.4.2': `${ReleaseNoteBase}/release-note-v6.md#v642-pre-release`,
528529
'6.4.1': `${ReleaseNoteBase}/release-note-v6.md#v641-pre-release`,
529530
'6.4.0': `${ReleaseNoteBase}/release-note-v6.md#v640`,

0 commit comments

Comments
 (0)