diff --git a/CHANGELOG.md b/CHANGELOG.md index 57cf2b4..f9216a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 2.7.0 +* Feature: Add `slug-prefix` output for link anchors https://github.com/dorny/test-reporter/pull/731 +* Feature: Report `jest-junit` testsuite errors as failures https://github.com/dorny/test-reporter/pull/155 +* Security: Update dependencies to fix reported security vulnerabilities + ## 2.6.0 * Fix: For `workflow_run` events, resolve the commit of the check run from related pull request head commits first (matching `workflow_run.head_branch`, then first PR), and fall back to `workflow_run.head_sha` for non-PR runs https://github.com/dorny/test-reporter/pull/673 * Change: The `test-reporter` action will listed all artifacts associated with the build run https://github.com/dorny/test-reporter/pull/693 diff --git a/package-lock.json b/package-lock.json index bdca712..5915bb7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "test-reporter", - "version": "2.5.0", + "version": "2.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "test-reporter", - "version": "2.5.0", + "version": "2.7.0", "license": "MIT", "dependencies": { "@actions/core": "^3.0.0", diff --git a/package.json b/package.json index 067c0c3..457d114 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "test-reporter", - "version": "2.5.0", + "version": "2.7.0", "private": true, "description": "Presents test results from popular testing frameworks as Github check run", "type": "module",