fixdiscover 1.2.1 → 1.2.2
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/dist/main.js +4907 -3316
- package/package.json +13 -13
- package/src/cli.ts +2 -2
- package/src/jira.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fixdiscover",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Small CLI tool to search for Jira issues with linked PRs and Issues that are fixed in an upstream projects.",
|
|
5
5
|
"main": "src/main.ts",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
"patch"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@actions/core": "^
|
|
38
|
-
"@octokit/core": "^7.0.
|
|
39
|
-
"@octokit/plugin-throttling": "^11.0.
|
|
40
|
-
"@octokit/types": "^
|
|
37
|
+
"@actions/core": "^2.0.2",
|
|
38
|
+
"@octokit/core": "^7.0.6",
|
|
39
|
+
"@octokit/plugin-throttling": "^11.0.3",
|
|
40
|
+
"@octokit/types": "^16.0.0",
|
|
41
41
|
"@total-typescript/ts-reset": "0.6.1",
|
|
42
|
-
"bugzilla": "^3.1.
|
|
42
|
+
"bugzilla": "^3.1.5",
|
|
43
43
|
"chalk": "5.6.2",
|
|
44
|
-
"commander": "14.0.
|
|
44
|
+
"commander": "14.0.2",
|
|
45
45
|
"dotenv": "17.2.3",
|
|
46
46
|
"jira.js": "5.2.2",
|
|
47
|
-
"zod": "4.
|
|
47
|
+
"zod": "4.3.6"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/node": "
|
|
51
|
-
"@vitest/coverage-v8": "
|
|
52
|
-
"esbuild": "0.
|
|
53
|
-
"prettier": "3.
|
|
50
|
+
"@types/node": "25.0.10",
|
|
51
|
+
"@vitest/coverage-v8": "4.0.18",
|
|
52
|
+
"esbuild": "0.27.2",
|
|
53
|
+
"prettier": "3.8.1",
|
|
54
54
|
"ts-node": "10.9.2",
|
|
55
55
|
"typescript": "5.9.3",
|
|
56
|
-
"vitest": "
|
|
56
|
+
"vitest": "4.0.18"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/src/cli.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Command } from 'commander';
|
|
2
|
-
import { Comment } from 'jira.js/
|
|
2
|
+
import { Comment } from 'jira.js/dist/esm/types/version2/models';
|
|
3
3
|
|
|
4
4
|
import { Bugzilla } from './bugzilla';
|
|
5
5
|
import { Jira } from './jira';
|
|
@@ -18,7 +18,7 @@ export function cli(): Command {
|
|
|
18
18
|
.description(
|
|
19
19
|
'🔍 A small CLI tool is used to search for Jira issues with linked PRs and issues that are fixed in upstream projects'
|
|
20
20
|
)
|
|
21
|
-
.version('1.2.
|
|
21
|
+
.version('1.2.2');
|
|
22
22
|
|
|
23
23
|
program
|
|
24
24
|
.requiredOption(
|