Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit f5ecac7

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

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

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/vary@1.0.0/mod.ts'
77
export { isIP } from 'https://deno.land/x/isIP@1.0.0/mod.ts'
88
export { Accepts } from 'https://deno.land/x/accepts@2.1.0/mod.ts'
99
export { encodeUrl } from 'https://deno.land/x/encodeurl@1.0.0/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/regexparam@v2.0.0/src/index.js'
1212
export { forwarded } from 'https://deno.land/x/forwarded@0.0.7/mod.ts'
1313
export * from 'https://deno.land/x/proxy_addr@0.0.8/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/postgres@v0.11.2/mod.ts'
2+
import { Client } from 'https://deno.land/x/postgres@v0.11.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/free_port@v1.2.0/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)