Skip to content

Commit c226770

Browse files
committed
chore: update dependencies
1 parent 29d6062 commit c226770

File tree

4 files changed

+753
-680
lines changed

4 files changed

+753
-680
lines changed

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -31,32 +31,32 @@
3131
},
3232
"dependencies": {
3333
"@lukeed/ms": "^2.0.2",
34-
"@poppinss/utils": "^6.10.1",
35-
"cron-parser": "^5.4.0"
34+
"@poppinss/utils": "^7.0.1",
35+
"cron-parser": "^5.5.0"
3636
},
3737
"devDependencies": {
38-
"@adonisjs/tsconfig": "^2.0.0-next.3",
39-
"@japa/assert": "^4.1.1",
40-
"@japa/expect-type": "^2.0.3",
41-
"@japa/file-system": "^2.3.2",
42-
"@japa/runner": "^4.4.0",
43-
"@poppinss/ts-exec": "^1.4.1",
38+
"@adonisjs/tsconfig": "^2.0.0",
39+
"@japa/assert": "^4.2.0",
40+
"@japa/expect-type": "^2.0.4",
41+
"@japa/file-system": "^3.0.0",
42+
"@japa/runner": "^5.3.0",
43+
"@poppinss/ts-exec": "^1.4.4",
4444
"@types/better-sqlite3": "^7.6.13",
45-
"@types/node": "^24.3.1",
46-
"@types/pg": "^8",
47-
"better-sqlite3": "^12.5.0",
48-
"bullmq": "^5.65.1",
49-
"c8": "^10.1.3",
45+
"@types/node": "^24.11.0",
46+
"@types/pg": "^8.18.0",
47+
"better-sqlite3": "^12.6.2",
48+
"bullmq": "^5.70.1",
49+
"c8": "^11.0.0",
5050
"del-cli": "^7.0.0",
51-
"ioredis": "^5.7.0",
51+
"ioredis": "^5.10.0",
5252
"knex": "^3.1.0",
53-
"oxfmt": "^0.26.0",
54-
"oxlint": "^1.41.0",
55-
"oxlint-tsgolint": "^0.11.1",
56-
"pg": "^8.16.3",
57-
"release-it": "^19.0.4",
53+
"oxfmt": "^0.36.0",
54+
"oxlint": "^1.51.0",
55+
"oxlint-tsgolint": "^0.15.0",
56+
"pg": "^8.19.0",
57+
"release-it": "^19.2.4",
5858
"tsup": "^8.5.1",
59-
"typescript": "^5.9.2"
59+
"typescript": "^5.9.3"
6060
},
6161
"peerDependencies": {
6262
"ioredis": "^5.0.0",
@@ -95,7 +95,7 @@
9595
"web": true
9696
}
9797
},
98-
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8",
98+
"packageManager": "yarn@4.12.0",
9999
"engines": {
100100
"node": ">=24.0.0"
101101
}

src/exceptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createError } from '@poppinss/utils'
1+
import { createError } from '@poppinss/utils/exception'
22

33
export const E_INVALID_DURATION_EXPRESSION = createError(
44
'Invalid duration expression: "%s"',

src/strategies/backoff_strategy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { BackoffConfig, Duration } from '../types/main.js'
22
import * as errors from '../exceptions.js'
33
import { parse } from '../utils.js'
4-
import { RuntimeException } from '@poppinss/utils'
4+
import { RuntimeException } from '@poppinss/utils/exception'
55
import { assertUnreachable } from '@poppinss/utils/assert'
66

77
/**

0 commit comments

Comments
 (0)