Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Dec 12, 2024
1 parent 4c682c2 commit 9c365be
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 35 deletions.
50 changes: 23 additions & 27 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export { abortable, deadline, debounce, delay, retry } from 'jsr:@std/async@^1.0.9'
export { walk } from 'jsr:@std/fs@^1.0.6'
export { serveDir, type ServeDirOptions, STATUS_CODE, STATUS_TEXT, type StatusCode } from 'jsr:@std/http@^1.0.11'
export { serveDir, type ServeDirOptions, STATUS_CODE, STATUS_TEXT, type StatusCode } from 'jsr:@std/http@^1.0.12'
export { joinGlobs, toFileUrl } from 'jsr:@std/path@^1.0.8'
export { normalize as posixNormalize } from 'jsr:@std/path@^1.0.8/posix/normalize'
export { escape } from 'jsr:@std/regexp@^1.0.0'
export { watch } from 'npm:chokidar@^3.6.0'
export type { ZodType } from 'npm:zod@^3.23.8'
export type { ZodType } from 'npm:zod@^3.24.1'
6 changes: 3 additions & 3 deletions dev_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export {
export { as, ensure, is } from 'jsr:@core/unknownutil@^4.3.0'
export { createGraph, load as loadGraph } from 'jsr:@deno/graph@^0.86.3'
export type { DependencyJson, ResolvedDependency } from 'jsr:@deno/graph@^0.86.3/types'
export { assertEquals, assertExists } from 'jsr:@std/assert@^1.0.8'
export { parseArgs } from 'jsr:@std/cli@^1.0.7'
export { Spinner } from 'jsr:@std/cli@^1.0.7/unstable-spinner'
export { assertEquals, assertExists } from 'jsr:@std/assert@^1.0.9'
export { parseArgs } from 'jsr:@std/cli@^1.0.8'
export { Spinner } from 'jsr:@std/cli@^1.0.8/unstable-spinner'
export { filterEntries } from 'jsr:@std/collections@^1.0.9'
export { bold, cyan, dim, green, magenta } from 'jsr:@std/fmt@^1.0.3/colors'
export { expandGlob } from 'jsr:@std/fs@^1.0.6'
Expand Down
8 changes: 5 additions & 3 deletions src/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,21 @@

import {
captureException,
type Client,
continueTrace,
defineIntegration,
getSanitizedUrlString,
type IntegrationFn,
parseUrl,
requestDataIntegration,
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
setHttpStatus,
type SpanAttributes,
startSpan,
withIsolationScope,
} from 'https://esm.sh/@sentry/core@^8.41.0'
import * as Sentry from 'https://esm.sh/@sentry/deno@^8.41.0'
import type { Client, IntegrationFn, SpanAttributes } from 'https://esm.sh/@sentry/types@^8.41.0'
} from 'https://esm.sh/@sentry/core@^8.43.0'
import * as Sentry from 'https://esm.sh/@sentry/deno@^8.43.0'

type RawHandler = (request: Request, info: Deno.ServeHandlerInfo) => Response | Promise<Response>

Expand Down

0 comments on commit 9c365be

Please sign in to comment.