@gitbeaker/requester-utils 42.5.0 → 43.0.0
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 +1 -6
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -16,12 +16,6 @@
|
|
|
16
16
|
<br>
|
|
17
17
|
<sup>Special thanks to:</sup>
|
|
18
18
|
<br>
|
|
19
|
-
<br>
|
|
20
|
-
|
|
21
|
-
<a href="https://wearecws.com/">
|
|
22
|
-
<img src="../../.github/ASSETS/cws.svg" width="180">
|
|
23
|
-
</a>
|
|
24
|
-
<br>
|
|
25
19
|
<br>
|
|
26
20
|
<a href="http://coderabbit.ai">
|
|
27
21
|
<img src="../../.github/ASSETS/coderabbit.png" width="180">
|
|
@@ -233,6 +227,7 @@ import { RequesterUtils, BaseResource } from '@gitbeaker/requester-utils';
|
|
|
233
227
|
<td align="center" valign="top" width="0.33%"><a href="https://github.com/enduity"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/19674002?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Endrik Einberg"/></td>
|
|
234
228
|
<td align="center" valign="top" width="0.33%"><a href="https://note.itswhat.me/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/38807139?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Bryan Lee"/></td>
|
|
235
229
|
<td align="center" valign="top" width="0.33%"><a href="https://github.com/zk-kb4"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/42388953?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Zack"/></td>
|
|
230
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/kayw-geek"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/29700073?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Kay W."/></td>
|
|
236
231
|
</tr>
|
|
237
232
|
</p>
|
|
238
233
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/requester-utils",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "43.0.0",
|
|
4
4
|
"description": "Utility functions for requester implementatons used in @gitbeaker",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -42,21 +42,20 @@
|
|
|
42
42
|
"scripts": {
|
|
43
43
|
"build": "tsup src/index.ts --format esm,cjs --dts --treeshake",
|
|
44
44
|
"test:types": "tsc",
|
|
45
|
-
"test:integration": "jest --maxWorkers=50% test/integration",
|
|
46
45
|
"test:unit": "jest --maxWorkers=50% test/unit",
|
|
47
46
|
"lint": "eslint '**/{src,test,scripts}/**/*.ts'",
|
|
48
47
|
"lint:fix": "yarn lint --fix"
|
|
49
48
|
},
|
|
50
49
|
"dependencies": {
|
|
51
50
|
"picomatch-browser": "^2.2.6",
|
|
52
|
-
"qs": "^6.
|
|
51
|
+
"qs": "^6.14.0",
|
|
53
52
|
"rate-limiter-flexible": "^4.0.1",
|
|
54
53
|
"xcase": "^2.0.1"
|
|
55
54
|
},
|
|
56
55
|
"devDependencies": {
|
|
57
|
-
"@types/node": "^
|
|
58
|
-
"tsup": "^8.
|
|
59
|
-
"typescript": "^5.
|
|
56
|
+
"@types/node": "^24.0.13",
|
|
57
|
+
"tsup": "^8.5.0",
|
|
58
|
+
"typescript": "^5.8.3"
|
|
60
59
|
},
|
|
61
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "2ae1422a257c0dfe21da6bbfd0f9fd63ea510e85"
|
|
62
61
|
}
|