Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare for v6.2.5 release #1147

Merged
merged 1 commit into from
May 3, 2024
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You can see the full [features](#features) and learn more details in the [How-To
Happy testing!

## Releases
- **Current** ([v6.2.4](https:/jest-community/vscode-jest/releases/tag/v6.2.4)): [release note](release-notes/release-note-v6.md#v624)
- **Current** ([v6.2.5](https:/jest-community/vscode-jest/releases/tag/v6.2.5)): [release note](release-notes/release-note-v6.md#v625)
- **Previous** ([v5.2.3](https:/jest-community/vscode-jest/releases/tag/v5.2.3)): [release note](release-notes/release-note-v5.x.md#v523)


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.2.4",
"version": "6.2.5",
"publisher": "Orta",
"engines": {
"vscode": "^1.68.1"
Expand Down
33 changes: 33 additions & 0 deletions release-notes/release-note-v6.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Release Notes <!-- omit in toc -->
---

- [v6.2.5](#v625)
- [v6.2.4](#v624)
- [v6.2.3](#v623)
- [v6.2.2](#v622)
Expand Down Expand Up @@ -37,25 +38,52 @@ Release Notes <!-- omit in toc -->

---

## v6.2.5

**Bug Fixes**

- 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:/jest-community/vscode-jest/pull/1146) - @connectdotz)

**CHANGELOG**

- [v6.2.5](https:/jest-community/vscode-jest/releases/tag/v6.2.5)

---

## v6.2.4

**Enhancements**

- Improved handling of zombie Jest processes during on-demand runs for scenarios like [stencil](https:/jest-community/vscode-jest/issues/1124#issuecomment-2000596099) and [rt-test](https:/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:/jest-community/vscode-jest/pull/1134) - @connectdotz)

**Bug Fixes**

- 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:/jest-community/vscode-jest/pull/1134) - @connectdotz)
- Resolved a problem where the "Jest: Run All Tests" command was obstructed by the watch mode's ongoing execution. ([#1132](https:/jest-community/vscode-jest/pull/1132) - @connectdotz)

**CHANGELOG**

- [v6.2.4](https:/jest-community/vscode-jest/releases/tag/v6.2.4)

---

## v6.2.3

This release is a patch release with the following changes:

**Enhancement**

- 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:/jest-community/vscode-jest#default-output-focus). ([#1128](https:/jest-community/vscode-jest/pull/1128) - @connectdotz)
- docs: update README to fix jest run mode type. ([#1126](https:/jest-community/vscode-jest/pull/1126) - @kota-kamikawa)

**CHANGELOG**

- [v6.2.3](https:/jest-community/vscode-jest/releases/tag/v6.2.3)

---

## v6.2.2

This release is a patch release with the following changes:

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

### CHANGELOG

- [v6.2.2](https:/jest-community/vscode-jest/releases/tag/v6.2.2)

---

## v6.2.1
This release is a patch release with the following bug fix:

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

### CHANGELOG
- [v6.2.1](https:/jest-community/vscode-jest/releases/tag/v6.2.1)

---

## v6.2.0
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.
Expand Down
1 change: 1 addition & 0 deletions src/extension-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ export class ExtensionManager {

const ReleaseNoteBase = 'https:/jest-community/vscode-jest/blob/master/release-notes';
const ReleaseNotes: Record<string, string> = {
'6.2.5': `${ReleaseNoteBase}/release-note-v6.md#v625`,
'6.2.4': `${ReleaseNoteBase}/release-note-v6.md#v624`,
'6.2.3': `${ReleaseNoteBase}/release-note-v6.md#v623`,
'6.2.2': `${ReleaseNoteBase}/release-note-v6.md#v622`,
Expand Down
Loading