Skip to content

Commit d651370

Browse files
committed
Update rete-limiter dependency to fix calculation of reset time for Token Bucket algorithm
1 parent e3aa8d7 commit d651370

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

bun.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rabbit-company/web-monorepo",
3-
"version": "0.18.0",
3+
"version": "0.18.1",
44
"description": "High-performance web framework monorepo",
55
"private": true,
66
"type": "module",
@@ -49,14 +49,14 @@
4949
],
5050
"devDependencies": {
5151
"@types/bun": "latest",
52-
"@types/node": "^25.0.9",
52+
"@types/node": "^25.0.10",
5353
"typescript": "^5.9.3",
5454
"@rabbit-company/logger": "^5.6.0",
5555
"bun-plugin-dts": "^0.3.0",
56-
"hono": "^4.11.4",
56+
"hono": "^4.11.5",
5757
"elysia": "^1.4.22"
5858
},
5959
"dependencies": {
60-
"@rabbit-company/rate-limiter": "^3.0.0"
60+
"@rabbit-company/rate-limiter": "^3.0.1"
6161
}
6262
}

packages/core/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rabbit-company/web",
3-
"version": "0.18.0",
3+
"version": "0.18.1",
44
"license": "MIT",
55
"exports": "./src/index.ts",
66
"publish": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rabbit-company/web",
3-
"version": "0.18.0",
3+
"version": "0.18.1",
44
"description": "High-performance web framework",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/middleware/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rabbit-company/web-middleware",
3-
"version": "0.18.0",
3+
"version": "0.18.1",
44
"license": "MIT",
55
"exports": {
66
"./basic-auth": "./src/basic-auth.ts",

packages/middleware/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rabbit-company/web-middleware",
3-
"version": "0.18.0",
3+
"version": "0.18.1",
44
"description": "Official middleware collection for Rabbit Company Web Framework",
55
"type": "module",
66
"homepage": "https://github.com/Rabbit-Company/Web-JS",
@@ -83,10 +83,10 @@
8383
"rate-limit"
8484
],
8585
"peerDependencies": {
86-
"@rabbit-company/web": "^0.18.0"
86+
"@rabbit-company/web": "^0.18.1"
8787
},
8888
"dependencies": {
89-
"@rabbit-company/rate-limiter": "^3.0.0",
89+
"@rabbit-company/rate-limiter": "^3.0.1",
9090
"@rabbit-company/logger": "^5.6.0"
9191
},
9292
"devDependencies": {

0 commit comments

Comments
 (0)