Skip to content

Commit dd9eb74

Browse files
committed
chore: update dependencies
1 parent a6a4027 commit dd9eb74

27 files changed

+60
-44
lines changed

benchmarks/adonisjs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
import { createServer } from 'node:http'
11-
import Encryption from '@adonisjs/encryption'
11+
import { Encryption } from '@adonisjs/encryption'
1212
import { Application } from '@adonisjs/application'
1313

1414
import { defineConfig } from '../index.js'

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"exports": {
1313
".": "./build/index.js",
14-
"./types": "./build/src/types.js"
14+
"./types": "./build/src/types/main.js"
1515
},
1616
"scripts": {
1717
"pretest": "npm run lint",
@@ -37,12 +37,12 @@
3737
"author": "virk,adonisjs",
3838
"license": "MIT",
3939
"devDependencies": {
40-
"@adonisjs/application": "^6.1.2-0",
40+
"@adonisjs/application": "^6.2.0-0",
4141
"@adonisjs/config": "^4.1.1-0",
42-
"@adonisjs/encryption": "^5.0.1-0",
42+
"@adonisjs/encryption": "^5.0.2-0",
4343
"@adonisjs/env": "^4.0.3-0",
44-
"@adonisjs/fold": "^9.4.1-0",
45-
"@adonisjs/logger": "^5.0.2-0",
44+
"@adonisjs/fold": "^9.5.0-0",
45+
"@adonisjs/logger": "^5.1.0-0",
4646
"@commitlint/cli": "^17.3.0",
4747
"@commitlint/config-conventional": "^17.3.0",
4848
"@fastify/middie": "^8.1.0",
@@ -114,9 +114,9 @@
114114
"vary": "^1.1.2"
115115
},
116116
"peerDependencies": {
117-
"@adonisjs/application": "^6.1.2-0",
118-
"@adonisjs/encryption": "^5.0.1-0",
119-
"@adonisjs/fold": "^9.4.1-0"
117+
"@adonisjs/application": "^6.2.0-0",
118+
"@adonisjs/encryption": "^5.0.2-0",
119+
"@adonisjs/fold": "^9.5.0-0"
120120
},
121121
"repository": {
122122
"type": "git",

src/cookies/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
import type Encryption from '@adonisjs/encryption'
10+
import type { Encryption } from '@adonisjs/encryption'
1111

1212
import * as plainCookiesDriver from './drivers/plain.js'
1313
import * as signedCookiesDriver from './drivers/signed.js'

src/cookies/drivers/encrypted.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
import type Encryption from '@adonisjs/encryption'
10+
import type { Encryption } from '@adonisjs/encryption'
1111

1212
/**
1313
* Encrypt a value to be set as cookie

src/cookies/drivers/signed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* file that was distributed with this source code.
88
*/
99

10-
import type Encryption from '@adonisjs/encryption'
10+
import type { Encryption } from '@adonisjs/encryption'
1111

1212
/**
1313
* Signs a value to be shared as a cookie. The signed output has a

src/cookies/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
import cookie from 'cookie'
11-
import type Encryption from '@adonisjs/encryption'
11+
import type { Encryption } from '@adonisjs/encryption'
1212

1313
import { CookieClient } from './client.js'
1414

src/cookies/serializer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import cookie from 'cookie'
1111
import string from '@poppinss/utils/string'
12-
import type Encryption from '@adonisjs/encryption'
12+
import type { Encryption } from '@adonisjs/encryption'
1313

1414
import { CookieClient } from './client.js'
1515
import type { CookieOptions } from '../types/response.js'

src/request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import proxyaddr from 'proxy-addr'
1616
import { safeEqual } from '@poppinss/utils'
1717
import lodash from '@poppinss/utils/lodash'
1818
import { Macroable } from '@poppinss/macroable'
19-
import type Encryption from '@adonisjs/encryption'
19+
import type { Encryption } from '@adonisjs/encryption'
2020
import { parse, UrlWithStringQuery } from 'node:url'
2121
import { ServerResponse, IncomingMessage, IncomingHttpHeaders } from 'node:http'
2222

src/response.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import json from '@poppinss/utils/json'
1919
import { Macroable } from '@poppinss/macroable'
2020
import { createReadStream, stat } from 'node:fs'
2121
import { RuntimeException } from '@poppinss/utils'
22-
import type Encryption from '@adonisjs/encryption'
2322
import contentDisposition from 'content-disposition'
23+
import type { Encryption } from '@adonisjs/encryption'
2424
import { ServerResponse, IncomingMessage, OutgoingHttpHeaders } from 'node:http'
2525

2626
import type { Qs } from './qs.js'

src/router/brisk.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class BriskRoute<
4141
/**
4242
* Reference to the AdonisJS application
4343
*/
44-
#app: Application
44+
#app: Application<any, any, any>
4545

4646
/**
4747
* Middleware store to resolve middleware
@@ -54,7 +54,7 @@ export class BriskRoute<
5454
route: null | Route<NamedMiddleware> = null
5555

5656
constructor(
57-
app: Application,
57+
app: Application<any, any, any>,
5858
middlewareStore: MiddlewareStore<NamedMiddleware>,
5959
options: {
6060
pattern: string

0 commit comments

Comments
 (0)