Skip to content

Commit 13b3c9b

Browse files
authored
prepare for release 0.2.1 (#30)
* prepare for release 0.2.1 * drop nodejs 18 version
1 parent a970a21 commit 13b3c9b

File tree

17 files changed

+5643
-135
lines changed

17 files changed

+5643
-135
lines changed

.changeset/new-bags-kiss.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
"playwright-prometheus-remote-write-reporter": patch
3+
---
4+
5+
This file contains next updates:
6+
7+
fix issue with types output
8+
9+
### 💥 Breaking Changes
10+
11+
### 🚀 Features
12+
13+
add new metrics:
14+
15+
- `test_step_total_duration` - count of `test_step` duration across all time
16+
- `test_annotation_count` - count of `test_step` annotations
17+
- `test_step_duration`- duration for each `test_step`
18+
- `test_step_error_count` - count of `test_step` that finished with status `error`
19+
- `test_step_total_error` - count of `test_step` with any status (`error`, `passed`, `interrupted`, `timedOut`)
20+
- `test_step` - information for each `test_step`
21+
22+
added `description` meta info for such metrics as experiment:
23+
24+
- `test_step_total_count`
25+
- `test_step_total_duration`
26+
- `test_annotation_count`
27+
- `test_step_duration`
28+
- `test_attachment_size`
29+
- `test_step_error_count`
30+
- `test_step_total_error`
31+
- `test_step`
32+
- `pw_stderr`
33+
- `pw_stdout`
34+
- `pw_config`
35+
- `test_attachment_count`
36+
- `test_attachment_size`
37+
38+
### 🐛 Fixes
39+
40+
- fix issue with wrong output file for package
41+
42+
### 🏡 Chore/Infra/Internal/Tests
43+
44+
- update `pnpm` version in github pipelines (`pr.yaml` and `release.yaml`)
45+
- drop nodejs18 support in build stage(`pr.yaml`) due to end of maintenance nodejs official support

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node_version: [18, 20, 22, latest]
17-
pnpm_version: [9.4.0, 9.5.0, 9.6.0, latest]
16+
node_version: [20, 22, latest]
17+
pnpm_version: [9.6.0, 10.11.0, latest]
1818
steps:
1919
- name: Clone repository
2020
uses: actions/checkout@v3

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v3
2525
- uses: pnpm/action-setup@v4
2626
with:
27-
version: 9.6.0
27+
version: 10.11.0
2828
- name: Use Node.js 22
2929
uses: actions/setup-node@v4
3030
with:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 0.2.0
44

5-
### Major Changes
5+
### Minor Changes
66

77
- 0ca42dd: This file contains next updates:
88

0 commit comments

Comments
 (0)