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.3.1-next release #1187

Merged
merged 2 commits into from
Oct 17, 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
- **Next** ([v6.3.0-next](https://github.com/jest-community/vscode-jest/releases/tag/v6.3.0-next)): [release note](release-notes/release-note-v6.md#v630-pre-release)
- **Next** ([v6.3.1-next](https://github.com/jest-community/vscode-jest/releases/tag/v6.3.1-next)): [release note](release-notes/release-note-v6.md#v63-pre-release)
- **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)
- **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)

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.3.0",
"version": "6.3.1",
"publisher": "Orta",
"engines": {
"vscode": "^1.88.1"
Expand Down
30 changes: 28 additions & 2 deletions release-notes/release-note-v6.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ Release Notes <!-- omit in toc -->
---

- [v6.3 (pre-release)](#v63-pre-release)
- [v6.3.0 (pre-release)](#v630-pre-release)
- [v6.3.1 (pre-release)](#v631-pre-release)
- [Features](#features)
- [Bug Fixes](#bug-fixes)
- [Dependency Updates](#dependency-updates)
- [v6.3.0 (pre-release)](#v630-pre-release)
- [Features](#features-1)
- [Bug Fixes](#bug-fixes-1)
- [v6.2](#v62)
- [v6.2.5](#v625)
- [v6.2.4](#v624)
Expand All @@ -30,7 +34,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-1)
- [Bug Fixes](#bug-fixes-2)
- [Technical Debt](#technical-debt)
- [v6.0 (pre-release)](#v60-pre-release)
- [Main Features](#main-features-1)
Expand All @@ -45,6 +49,28 @@ Release Notes <!-- omit in toc -->

## v6.3 (pre-release)

### v6.3.1 (pre-release)

#### Features

- **Make all test items debuggable** by @connectdotz in [#1181](https://github.com/jest-community/vscode-jest/pull/1181).
Prior to v6.3.1, only test files and test blocks were debuggable. Now, users can debug from any test item, including the test roots and directories.

#### Bug Fixes

- **Fix documentation link for v6.3.0-next** by @connectdotz in [#1169](https://github.com/jest-community/vscode-jest/pull/1169).
- **Fix empty coverage range issue** by @connectdotz in [#1177](https://github.com/jest-community/vscode-jest/pull/1177).
- **Fix Windows `testNamePattern` not found issue** by @connectdotz in [#1179](https://github.com/jest-community/vscode-jest/pull/1179).

#### Dependency Updates

- **Bump webpack from 5.91.0 to 5.94.0** by @dependabot in [#1173](https://github.com/jest-community/vscode-jest/pull/1173).
- **Bump micromatch from 4.0.7 to 4.0.8** by @dependabot in [#1176](https://github.com/jest-community/vscode-jest/pull/1176).

**CHANGELOG**

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

### v6.3.0 (pre-release)

#### Features
Expand Down
1 change: 1 addition & 0 deletions src/extension-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,7 @@ export class ExtensionManager {
const ReleaseNoteBase = 'https://github.com/jest-community/vscode-jest/blob/master/release-notes';
const ReleaseNotes: Record<string, string> = {
'6.3.0': `${ReleaseNoteBase}/release-note-v6.md#v63-pre-release`,
'6.3.1': `${ReleaseNoteBase}/release-note-v6.md#v63-pre-release`,
'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`,
Expand Down
Loading