testbeats 2.7.0 → 2.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  [![Build](https://github.com/test-results-reporter/testbeats/actions/workflows/build.yml/badge.svg)](https://github.com/test-results-reporter/testbeats/actions/workflows/build.yml)
11
11
  [![Downloads](https://img.shields.io/npm/dt/test-results-parser?logo=npm&label=downloads)](https://www.npmjs.com/package/test-results-parser)
12
- [![Size](https://img.shields.io/bundlephobia/minzip/testbeats)](https://bundlephobia.com/result?p=testbeats)
12
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/test-results-reporter/testbeats)
13
13
 
14
14
 
15
15
  [![Stars](https://img.shields.io/github/stars/test-results-reporter/testbeats?style=social)](https://github.com/test-results-reporter/testbeats/stargazers)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testbeats",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "description": "Publish test results to Microsoft Teams, Google Chat, Slack and InfluxDB",
5
5
  "main": "src/index.js",
6
6
  "types": "./src/index.d.ts",
@@ -51,13 +51,13 @@
51
51
  "form-data-lite": "^1.0.3",
52
52
  "influxdb-lite": "1.1.0",
53
53
  "object-hash": "^3.0.0",
54
- "performance-results-parser": "latest",
54
+ "performance-results-parser": "^0.0.10",
55
55
  "phin-retry": "2.0.0",
56
56
  "pretty-ms": "^7.0.1",
57
57
  "prompts": "^2.4.2",
58
58
  "rosters": "0.0.1",
59
59
  "sade": "^1.8.1",
60
- "test-results-parser": "0.4.0"
60
+ "test-results-parser": "^0.4.3"
61
61
  },
62
62
  "devDependencies": {
63
63
  "c8": "^10.1.2",
@@ -11,7 +11,7 @@ const TestAttachment = require('test-results-parser/src/models/TestAttachment');
11
11
 
12
12
  const MAX_ATTACHMENTS_PER_REQUEST = 5;
13
13
  const MAX_ATTACHMENTS_PER_RUN = 50;
14
- const MAX_ATTACHMENT_SIZE = 2 * 1024 * 1024;
14
+ const MAX_ATTACHMENT_SIZE = 10 * 1024 * 1024;
15
15
 
16
16
  class BeatsAttachments {
17
17