Skip to content

Commit 430cf89

Browse files
committed
fix: bump deps
1 parent 6560515 commit 430cf89

File tree

7 files changed

+14
-47
lines changed

7 files changed

+14
-47
lines changed

bun.lockb

4.31 KB
Binary file not shown.

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@
5959
"watch": "rollup -c --watch"
6060
},
6161
"dependencies": {
62-
"@ai-sdk/openai": "^1.0.7",
62+
"@ai-sdk/openai": "^1.0.8",
6363
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
6464
"@octokit/webhooks-types": "^7.6.1",
65-
"ai": "^4.0.13",
65+
"ai": "^4.0.20",
6666
"express": "^4.21.2",
6767
"express-handlebars": "^8.0.1",
6868
"handlebars": "^4.7.8",
@@ -77,38 +77,38 @@
7777
"pino-pretty": "^13.0.0",
7878
"probot": "^13.4.1",
7979
"tiktoken": "^1.0.17",
80-
"zod": "^3.23.8"
80+
"zod": "^3.24.1"
8181
},
8282
"devDependencies": {
83-
"@commitlint/cli": "^19.6.0",
83+
"@commitlint/cli": "^19.6.1",
8484
"@commitlint/config-conventional": "^19.6.0",
8585
"@octokit/request-error": "^6.1.5",
8686
"@rollup/plugin-alias": "^5.1.1",
87-
"@rollup/plugin-commonjs": "^28.0.1",
88-
"@rollup/plugin-node-resolve": "^15.3.0",
87+
"@rollup/plugin-commonjs": "^28.0.2",
88+
"@rollup/plugin-node-resolve": "^16.0.0",
8989
"@types/express": "^5.0.0",
9090
"@types/js-yaml": "^4.0.9",
91-
"@types/node": "^22.10.1",
91+
"@types/node": "^22.10.2",
9292
"@types/nodemailer": "^6.4.17",
9393
"@types/nodemailer-express-handlebars": "^4.0.5",
94-
"@typescript-eslint/eslint-plugin": "^8.17.0",
95-
"@typescript-eslint/parser": "^8.17.0",
94+
"@typescript-eslint/eslint-plugin": "^8.18.1",
95+
"@typescript-eslint/parser": "^8.18.1",
9696
"@vitest/coverage-v8": "2.1.8",
9797
"concurrently": "^9.1.0",
9898
"ember-template-lint": "^6.0.0",
9999
"ember-template-lint-plugin-prettier": "^5.0.0",
100-
"eslint": "^9.16.0",
101-
"eslint-plugin-jsdoc": "^50.6.0",
100+
"eslint": "^9.17.0",
101+
"eslint-plugin-jsdoc": "^50.6.1",
102102
"eslint-plugin-json": "^4.0.1",
103103
"eslint-plugin-prettier": "^5.2.1",
104104
"eslint-plugin-yaml": "^1.0.3",
105105
"husky": "^9.1.7",
106106
"jsonc-eslint-parser": "^2.4.0",
107-
"lint-staged": "^15.2.10",
107+
"lint-staged": "^15.2.11",
108108
"nock": "^14.0.0-beta.18",
109109
"prettier": "^3.4.2",
110110
"prettier-plugin-jsdoc": "^1.3.0",
111-
"prettier-plugin-multiline-arrays": "^3.0.6",
111+
"prettier-plugin-multiline-arrays": "^4.0.1",
112112
"prettier-plugin-organize-imports": "^4.1.0",
113113
"prettier-plugin-packagejson": "^2.5.6",
114114
"prettier-plugin-sort-json": "^4.0.0",

rollup.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ export default {
5454
gzipSize: true,
5555
brotliSize: true
5656
})
57-
5857
],
5958
external: Object.keys(packageJson.dependencies),
6059
onwarn(warning, warn) {

src/handlers/app.handler.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ export class AppHandler {
152152
'pull_request.opened',
153153
'pull_request.synchronize',
154154
'pull_request.reopened' // FIX This should be removed for production
155-
156155
],
157156
this.handlePullRequestEvents.bind(this)
158157
);
@@ -164,7 +163,6 @@ export class AppHandler {
164163
'discussion_comment.created',
165164
'discussion.created',
166165
'issues.opened'
167-
168166
],
169167
this.handleCommentEvents.bind(this)
170168
);

src/loggers/system.logger.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ export const systemLogger = pino({
3131
}
3232
]
3333
: [])
34-
3534
]
3635
}
3736
});

src/services/error.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export class ErrorService {
1515
},
1616
config,
1717
repositoryUrl
18-
1918
]);
2019
}
2120

tests/helpers/string.helper.test.ts

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, expect, it } from 'vitest';
2-
import { cleanDiffString, decodeBase64ToText, isTextContent } from '../../src/helpers';
2+
import { decodeBase64ToText, isTextContent } from '../../src/helpers';
33

44
describe('Helper Functions', () => {
55
describe('decodeBase64ToText', () => {
@@ -58,32 +58,4 @@ describe('Helper Functions', () => {
5858
expect(result).toBe(true);
5959
});
6060
});
61-
62-
describe('cleanDiffString', () => {
63-
it('should remove leading single quote', () => {
64-
const diffString = "'Hello";
65-
const result = cleanDiffString(diffString);
66-
67-
expect(result).toBe('Hello');
68-
});
69-
70-
it('should remove ending plus sign', () => {
71-
const diffString = 'world+';
72-
const result = cleanDiffString(diffString);
73-
74-
expect(result).toBe('world');
75-
});
76-
77-
it('should return a trimmed version of the string', () => {
78-
const diffString = ' Hello world ';
79-
const result = cleanDiffString(diffString);
80-
81-
expect(result).toBe('Hello world');
82-
});
83-
84-
it('should return an empty string if input only contains symbols to be removed', () => {
85-
expect(cleanDiffString("'")).toBe('');
86-
expect(cleanDiffString('+')).toBe('');
87-
});
88-
});
8961
});

0 commit comments

Comments
 (0)