Skip to content

Commit f5ecac7

Browse files
author
v1rtl
committed
bump deps
1 parent c8ee994 commit f5ecac7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export { vary } from 'https://deno.land/x/[email protected]/mod.ts'
77
export { isIP } from 'https://deno.land/x/[email protected]/mod.ts'
88
export { Accepts } from 'https://deno.land/x/[email protected]/mod.ts'
99
export { encodeUrl } from 'https://deno.land/x/[email protected]/mod.ts'
10-
export { charset, contentType, lookup } from 'https://deno.land/x/media_types@v2.8.4/mod.ts'
10+
export { charset, contentType, lookup } from 'https://deno.land/x/media_types@v2.9.0/mod.ts'
1111
export { parse as rg } from 'https://deno.land/x/[email protected]/src/index.js'
1212
export { forwarded } from 'https://deno.land/x/[email protected]/mod.ts'
1313
export * from 'https://deno.land/x/[email protected]/mod.ts'

examples/postgresql/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { App } from '../../mod.ts'
2-
import { Client } from 'https://deno.land/x/[email protected].2/mod.ts'
2+
import { Client } from 'https://deno.land/x/[email protected].3/mod.ts'
33
import { json } from 'https://deno.land/x/parsec/mod.ts'
44

55
const app = new App()

extensions/res/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { format, parse } from 'https://deno.land/x/content_type/mod.ts'
2-
import { etag as eTag } from 'https://deno.land/x/opine@1.4.0/src/utils/etag.ts'
2+
import { etag as eTag } from 'https://deno.land/x/opine@1.5.3/src/utils/etag.ts'
33
import { lookup } from '../../deps.ts'
44

55
export const createETag = (body: Parameters<typeof eTag>[0]) => {

tests/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { getFreePort } from 'https://deno.land/x/[email protected]/mod.ts'
2-
import { superdeno } from 'https://deno.land/x/superdeno@4.2.1/mod.ts'
2+
import { superdeno } from 'https://deno.land/x/superdeno@4.3.0/mod.ts'
33
import { App, Handler, AppConstructor, Request, Response } from '../mod.ts'
44

55
const random = (min: number, max: number): number => Math.round(Math.random() * (max - min)) + min

0 commit comments

Comments
 (0)