Skip to content

Commit

Permalink
chore: migrate to oak commons 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Jan 23, 2024
1 parent ebe6801 commit d5752e6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ export { copy as copyBytes } from "https://deno.land/std@0.211.0/bytes/copy.ts";
export { timingSafeEqual } from "https://deno.land/std@0.211.0/crypto/timing_safe_equal.ts";
export { KeyStack } from "https://deno.land/std@0.211.0/crypto/unstable_keystack.ts";
export { encodeBase64 } from "https://deno.land/std@0.211.0/encoding/base64.ts";
export {
mergeHeaders,
SecureCookieMap,
type SecureCookieMapGetOptions,
type SecureCookieMapSetDeleteOptions,
} from "https://deno.land/std@0.211.0/http/unstable_cookie_map.ts";
export {
calculate,
type ETagOptions,
Expand Down Expand Up @@ -44,29 +38,35 @@ export {

// 3rd party dependencies

export {
mergeHeaders,
SecureCookieMap,
type SecureCookieMapGetOptions,
type SecureCookieMapSetDeleteOptions,
} from "https://deno.land/x/oak_commons@0.5.0/cookie_map.ts";
export {
createHttpError,
errors,
HttpError,
type HttpErrorOptions,
isHttpError,
} from "https://deno.land/x/oak_commons@0.4.0/http_errors.ts";
export { type HttpMethod as HTTPMethods } from "https://deno.land/x/oak_commons@0.4.0/method.ts";
} from "https://deno.land/x/oak_commons@0.5.0/http_errors.ts";
export { type HttpMethod as HTTPMethods } from "https://deno.land/x/oak_commons@0.5.0/method.ts";
export {
ServerSentEvent,
type ServerSentEventInit,
ServerSentEventStreamTarget,
type ServerSentEventTarget,
type ServerSentEventTargetOptions,
} from "https://deno.land/x/oak_commons@0.4.0/server_sent_event.ts";
} from "https://deno.land/x/oak_commons@0.5.0/server_sent_event.ts";
export {
type ErrorStatus,
isErrorStatus,
isRedirectStatus,
type RedirectStatus,
Status,
STATUS_TEXT,
} from "https://deno.land/x/oak_commons@0.4.0/status.ts";
} from "https://deno.land/x/oak_commons@0.5.0/status.ts";

export {
compile,
Expand Down

0 comments on commit d5752e6

Please sign in to comment.