ac-ratelimiter 2.0.4 → 2.0.6
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/CHANGELOG.md +18 -0
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
|
|
2
|
+
## [2.0.6](https://github.com/admiralcloud/ac-ratelimiter/compare/v2.0.5..v2.0.6) (2025-09-19 05:24:50)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fix
|
|
6
|
+
|
|
7
|
+
* **Misc:** Package updates | MP | [bbfa1755288e1e3b93ed53e7a4df28c184a092ac](https://github.com/admiralcloud/ac-ratelimiter/commit/bbfa1755288e1e3b93ed53e7a4df28c184a092ac)
|
|
8
|
+
Package updates
|
|
9
|
+
Related issues:
|
|
10
|
+
|
|
11
|
+
## [2.0.5](https://github.com/admiralcloud/ac-ratelimiter/compare/v2.0.4..v2.0.5) (2025-08-30 07:15:32)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fix
|
|
15
|
+
|
|
16
|
+
* **Limiter:** Package update | MP | [6bc7847c780c2e9b32db9cdc0ec5aa0f111eea1f](https://github.com/admiralcloud/ac-ratelimiter/commit/6bc7847c780c2e9b32db9cdc0ec5aa0f111eea1f)
|
|
17
|
+
Package updates
|
|
18
|
+
Related issues:
|
|
19
|
+
|
|
2
20
|
## [2.0.4](https://github.com/admiralcloud/ac-ratelimiter/compare/v2.0.3..v2.0.4) (2025-03-18 08:58:07)
|
|
3
21
|
|
|
4
22
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ac-ratelimiter",
|
|
3
3
|
"description": "Simple ratelimiter for express",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.6",
|
|
5
5
|
"author": "Mark Poepping (www.admiralcloud.com)",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -9,16 +9,16 @@
|
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://www.admiralcloud.com",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"ac-custom-error": "^1.0.
|
|
13
|
-
"ac-ip": "^4.1.
|
|
12
|
+
"ac-custom-error": "^1.0.5",
|
|
13
|
+
"ac-ip": "^4.1.6",
|
|
14
14
|
"node-cache": "^5.1.2"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"ac-semantic-release": "^0.4.
|
|
17
|
+
"ac-semantic-release": "^0.4.8",
|
|
18
18
|
"chai": "^4.5.0",
|
|
19
|
-
"eslint": "9.
|
|
20
|
-
"ioredis": "^5.
|
|
21
|
-
"mocha": "^11.
|
|
19
|
+
"eslint": "9.35.0",
|
|
20
|
+
"ioredis": "^5.7.0",
|
|
21
|
+
"mocha": "^11.7.2"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"test": "./node_modules/.bin/mocha --slow 1000 --colors --bail ./test/test.js || :",
|
|
@@ -30,5 +30,6 @@
|
|
|
30
30
|
},
|
|
31
31
|
"resolutions": {
|
|
32
32
|
"mocha/chokidar/braces": "^3.0.3"
|
|
33
|
-
}
|
|
33
|
+
},
|
|
34
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
34
35
|
}
|