Skip to content

Commit 16a6d65

Browse files
committed
chore: update dependencies
1 parent b0eba6f commit 16a6d65

File tree

8 files changed

+16
-18
lines changed

8 files changed

+16
-18
lines changed

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@
3737
"author": "virk,adonisjs",
3838
"license": "MIT",
3939
"devDependencies": {
40-
"@adonisjs/application": "^6.2.0-0",
41-
"@adonisjs/config": "^4.1.1-0",
40+
"@adonisjs/application": "^6.3.0-0",
41+
"@adonisjs/config": "^4.1.2-0",
4242
"@adonisjs/encryption": "^5.0.2-0",
43-
"@adonisjs/env": "^4.0.3-0",
44-
"@adonisjs/fold": "^9.5.0-0",
43+
"@adonisjs/fold": "^9.6.0-0",
4544
"@adonisjs/logger": "^5.1.0-0",
4645
"@commitlint/cli": "^17.3.0",
4746
"@commitlint/config-conventional": "^17.3.0",
@@ -114,9 +113,8 @@
114113
"vary": "^1.1.2"
115114
},
116115
"peerDependencies": {
117-
"@adonisjs/application": "^6.2.0-0",
118116
"@adonisjs/encryption": "^5.0.2-0",
119-
"@adonisjs/fold": "^9.5.0-0"
117+
"@adonisjs/fold": "^9.6.0-0"
120118
},
121119
"repository": {
122120
"type": "git",

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<any, any, any>
44+
#app: Application<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<any, any, any>,
57+
app: Application<any, any>,
5858
middlewareStore: MiddlewareStore<NamedMiddleware>,
5959
options: {
6060
pattern: string

src/router/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class Router<
5252
/**
5353
* Application is needed to resolve string based controller expressions
5454
*/
55-
#app: Application<any, any, any>
55+
#app: Application<any, any>
5656

5757
/**
5858
* Store with tokenized routes
@@ -98,7 +98,7 @@ export class Router<
9898
matchers = new Matchers()
9999

100100
constructor(
101-
app: Application<any, any, any>,
101+
app: Application<any, any>,
102102
encryption: Encryption,
103103
middlewareStore: MiddlewareStore<NamedMiddleware>,
104104
qsParser: Qs

src/router/resource.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class RouteResource<
4949
/**
5050
* Reference to the AdonisJS application
5151
*/
52-
#app: Application<any, any, any>
52+
#app: Application<any, any>
5353

5454
/**
5555
* Middleware store to resolve middleware
@@ -75,7 +75,7 @@ export class RouteResource<
7575
routes: Route[] = []
7676

7777
constructor(
78-
app: Application<any, any, any>,
78+
app: Application<any, any>,
7979
middlewareStore: MiddlewareStore<NamedMiddleware>,
8080
options: {
8181
resource: string

src/router/route.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class Route<
7171
/**
7272
* Reference to the AdonisJS application
7373
*/
74-
#app: Application<any, any, any>
74+
#app: Application<any, any>
7575

7676
/**
7777
* Middleware store to resolve middleware
@@ -103,7 +103,7 @@ export class Route<
103103
#middleware: StoreRouteMiddleware[][] = []
104104

105105
constructor(
106-
app: Application<any, any, any>,
106+
app: Application<any, any>,
107107
middlewareStore: MiddlewareStore<NamedMiddleware>,
108108
options: {
109109
pattern: string

src/server/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class Server<NamedMiddleware extends Record<string, LazyImport<Middleware
5555
/**
5656
* The application instance to be shared with the router
5757
*/
58-
#app: Application<any, any, any>
58+
#app: Application<any, any>
5959

6060
/**
6161
* The encryption instance to be shared with the router
@@ -94,7 +94,7 @@ export class Server<NamedMiddleware extends Record<string, LazyImport<Middleware
9494
return asyncLocalStorage.isEnabled
9595
}
9696

97-
constructor(app: Application<any, any, any>, encryption: Encryption, config: ServerConfig) {
97+
constructor(app: Application<any, any>, encryption: Encryption, config: ServerConfig) {
9898
this.#app = app
9999
this.#encryption = encryption
100100
this.#config = config

test_factories/router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { MiddlewareStore } from '../src/middleware/store.js'
1919
import type { MiddlewareAsClass } from '../src/types/middleware.js'
2020

2121
type FactoryParameters<NamedMiddleware extends Record<string, LazyImport<MiddlewareAsClass>>> = {
22-
app: Application<any, any, any>
22+
app: Application<any, any>
2323
encryption: Encryption
2424
middlewareStore: MiddlewareStore<NamedMiddleware>
2525
}

test_factories/server_factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type { ServerConfig } from '../src/types/server.js'
2020
import type { MiddlewareAsClass } from '../src/types/middleware.js'
2121

2222
type FactoryParameters = {
23-
app: Application<any, any, any>
23+
app: Application<any, any>
2424
encryption: Encryption
2525
config: Partial<ServerConfig>
2626
}

0 commit comments

Comments
 (0)