Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ You can see the full [features](#features) and learn more details in the [How-To
Happy testing!

## Releases
- **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)
- **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)
- **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)
- **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)
- **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)


All: [Release Notes](release-notes/release-notes.md)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-jest",
"displayName": "Jest",
"description": "Use Facebook's Jest With Pleasure.",
"version": "6.4.2",
"version": "6.4.3",
"publisher": "Orta",
"engines": {
"vscode": "^1.88.1"
Expand Down
40 changes: 36 additions & 4 deletions release-notes/release-note-v6.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,23 @@
Release Notes <!-- omit in toc -->
---

- [v6.4.3](#v643)
- [Bug Fixes](#bug-fixes)
- [Other Changes](#other-changes)
- [v6.4.2 (pre-release)](#v642-pre-release)
- [v6.4.1 (pre-release)](#v641-pre-release)
- [v6.4.0](#v640)
- [Features](#features)
- [Bug Fixes](#bug-fixes)
- [Bug Fixes](#bug-fixes-1)
- [Dependency Updates](#dependency-updates)
- [v6.3 (pre-release)](#v63-pre-release)
- [v6.3.1 (pre-release)](#v631-pre-release)
- [Features](#features-1)
- [Bug Fixes](#bug-fixes-1)
- [Bug Fixes](#bug-fixes-2)
- [Dependency Updates](#dependency-updates-1)
- [v6.3.0 (pre-release)](#v630-pre-release)
- [Features](#features-2)
- [Bug Fixes](#bug-fixes-2)
- [Bug Fixes](#bug-fixes-3)
- [v6.2](#v62)
- [v6.2.5](#v625)
- [v6.2.4](#v624)
Expand All @@ -40,7 +43,7 @@ Release Notes <!-- omit in toc -->
- [2.1 "TEST RESULTS" Panel Integration](#21-test-results-panel-integration)
- [2.2 Configuration and Examples](#22-configuration-and-examples)
- [2.3 Deprecations and Migration](#23-deprecations-and-migration)
- [Bug Fixes](#bug-fixes-3)
- [Bug Fixes](#bug-fixes-4)
- [Technical Debt](#technical-debt)
- [v6.0 (pre-release)](#v60-pre-release)
- [Main Features](#main-features-1)
Expand All @@ -53,6 +56,35 @@ Release Notes <!-- omit in toc -->

---

## v6.4.3

This release is a roll-up of the v6.4.1 and v6.4.2 pre-releases, consolidating several bug fixes.

### Bug Fixes

* **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)

* **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)

* **Multi-line Test Names**: Multi-line test names can now be correctly handled. [#1234](https://github.com/jest-community/vscode-jest/pull/1234)

* **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)

### Other Changes

* **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)

* **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)

* **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)

**CHANGELOG**

* [v6.4.3](https://github.com/jest-community/vscode-jest/releases/tag/v6.4.3)

---


## v6.4.2 (pre-release)

This pre-release mainly fixes bugs and upgrade to reflect vscode testing framework changes. Details see CHANGELOG below.
Expand Down
1 change: 1 addition & 0 deletions src/extension-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,7 @@ export class ExtensionManager {

const ReleaseNoteBase = 'https://github.com/jest-community/vscode-jest/blob/master/release-notes';
const ReleaseNotes: Record<string, string> = {
'6.4.3': `${ReleaseNoteBase}/release-note-v6.md#v643`,
'6.4.2': `${ReleaseNoteBase}/release-note-v6.md#v642-pre-release`,
'6.4.1': `${ReleaseNoteBase}/release-note-v6.md#v641-pre-release`,
'6.4.0': `${ReleaseNoteBase}/release-note-v6.md#v640`,
Expand Down