qase-javascript-commons 2.7.1 → 2.7.3

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.
Files changed (2) hide show
  1. package/changelog.md +18 -0
  2. package/package.json +14 -10
package/changelog.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 2.7.3
2
+
3
+ ### Fixed
4
+
5
+ - Added `repository.directory: "qase-javascript-commons"` so npmjs.com correctly resolves relative links in this package's README (previously rendered as broken `github.com/.../blob/<path>` URLs without a branch).
6
+
7
+ ## 2.7.2
8
+
9
+ ### Security
10
+
11
+ - Bumped `uuid` from `^9.0.1` to `^11.1.1` to close the GHSA-9p95-fxx9-6q3q advisory (Missing buffer bounds check in v3/v5/v6 when `buf` is provided). `v4` is the only uuid function used here, but downstream `cypress-qase-reporter`, `playwright-qase-reporter` and friends transitively exposed the alert through this package's lockfile. v14 was considered but dropped — it publishes an ESM-only `dist-node/index.js` that breaks `require('uuid')` in CJS consumers and in jest.
12
+ - Dropped `@types/uuid` devDependency; uuid 11+ ships its own types.
13
+
14
+ ### Changed
15
+
16
+ - `engines.node` raised from `>=14` to `>=18`. Node 14/16 are EOL and uuid 11+ requires Node ≥18.
17
+ - Bumped pinned ranges of internal API clients: `qase-api-client` `~1.1.1` → `~1.1.8`, `qase-api-v2-client` `~1.0.4` → `~1.0.8`.
18
+
1
19
  ## 2.7.1
2
20
 
3
21
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qase-javascript-commons",
3
- "version": "2.7.1",
3
+ "version": "2.7.3",
4
4
  "description": "Qase JS Reporters",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -21,8 +21,12 @@
21
21
  },
22
22
  "typesVersions": {
23
23
  "*": {
24
- "profilers": ["./dist/profilers/index.d.ts"],
25
- "internal": ["./dist/internal/index.d.ts"]
24
+ "profilers": [
25
+ "./dist/profilers/index.d.ts"
26
+ ],
27
+ "internal": [
28
+ "./dist/internal/index.d.ts"
29
+ ]
26
30
  }
27
31
  },
28
32
  "homepage": "https://github.com/qase-tms/qase-javascript",
@@ -31,10 +35,11 @@
31
35
  },
32
36
  "repository": {
33
37
  "type": "git",
34
- "url": "git+https://github.com/qase-tms/qase-javascript.git"
38
+ "url": "git+https://github.com/qase-tms/qase-javascript.git",
39
+ "directory": "qase-javascript-commons"
35
40
  },
36
41
  "engines": {
37
- "node": ">=14"
42
+ "node": ">=18"
38
43
  },
39
44
  "scripts": {
40
45
  "build": "npm run clean && tsc --project tsconfig.build.json",
@@ -54,10 +59,10 @@
54
59
  "lodash.merge": "^4.6.2",
55
60
  "lodash.mergewith": "^4.6.2",
56
61
  "mime-types": "^2.1.35",
57
- "qase-api-client": "~1.1.1",
58
- "qase-api-v2-client": "~1.0.4",
62
+ "qase-api-client": "~1.1.9",
63
+ "qase-api-v2-client": "~1.0.9",
59
64
  "strip-ansi": "^6.0.1",
60
- "uuid": "^9.0.1"
65
+ "uuid": "11.1.1"
61
66
  },
62
67
  "devDependencies": {
63
68
  "@jest/globals": "^29.7.0",
@@ -67,8 +72,7 @@
67
72
  "@types/lodash.mergewith": "^4.6.9",
68
73
  "@types/mime-types": "^2.1.4",
69
74
  "@types/minimatch": "^6.0.0",
70
- "@types/uuid": "^9.0.8",
71
- "axios": "^1.15.2",
75
+ "axios": "^1.16.0",
72
76
  "jest": "^29.7.0",
73
77
  "ts-jest": "^29.4.5"
74
78
  }